일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 집계 함수
- 테이블
- word wrap
- visual studio code
- DB접속
- java
- Linux
- 줄바꿈
- select
- 입력
- foreignkey
- 3306
- pytthon
- EQUI
- primarykey
- 데이터타입
- cmd
- date_add
- 삭제
- 생성
- 조인
- 데이터베이스
- MySQL
- 서브쿼리
- groupby
- DISTINCT
- now()
- live server
- substring
- 리눅스 명령어
Archives
- Today
- Total
재유's
[Filezilla] CentOS - vsftpd 로그인 장애 본문
상태: 192.168.100.128:9902에 연결...
상태: 연결 수립, 환영 메시지를 기다림...
상태: 보안되지 않은 서버입니다. TLS를 통한 FTP를 지원하지 않습니다.
명령: USER testuser
응답: 331 Please specify the password.
명령: PASS ********
응답: 500 OOPS: chroot
오류: 치명적 오류: 서버에 연결하지 못함
VSFTP 설정은 이상이 없는데 FTP 접속시 위와 같은 메시지가 출력 될때, 원인은 Selinux 라고 한다.
Selinux를 사용안함으로 변경하고 재부팅 하면 해결이 된다.
$ vi /etc/selinux/config |
SELINUX=enforcing을 disabled로 고쳐준다.
1 2 3 4 5 6 7 8 9 10 11 12 | # This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing - SELinux security policy is enforced. # permissive - SELinux prints warnings instead of enforcing. # disabled - No SELinux policy is loaded. #SELINUX=enforcing SELINUX=disabled # SELINUXTYPE= can take one of three values: # targeted - Targeted processes are protected, # minimum - Modification of targeted policy. Only selected processes are protected. # mls - Multi Level Security protection. SELINUXTYPE=targeted |
저장후 재부팅!
'IT Story > Other' 카테고리의 다른 글
[Linux] Tomcal SSL 설정 (CRT) (0) | 2023.06.26 |
---|---|
[Linux] Tomcat 설치 (0) | 2023.06.26 |
[필기] 20190422 - GROUP (0) | 2019.04.22 |
[Tomcat] Tomcat Spec (0) | 2019.04.17 |
[Eclipse] 아이피 IPv6에서 IPv4로 출력하는 서버셋팅 (0) | 2019.03.27 |
Comments