Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- LiveTemplate
- Spring Framework
- tomcat
- 외장톰캣
- 디자인패턴 #싱글톤
- autocomplete
- Mockito #Reflection #Sigleton #Test #JUnit
- spring
- 톰캣
Archives
- Today
- Total
자라선
[Centos7] FTP Server Install & config & Client 본문
Server Install
# FTP 서버 설치
yum install vsftpd -y
# FTP 버전 확인
vsftpd -v
# 사용중인 포트 확인(default : 21)
netstat -tlpn
# FTP 서버 시작
systemctl start vsftpd
Configuration
# FTP 서버 환경설정 파일 경로
vim /etc/vsftpd/vsftpd.conf
# FTP 접근 유저 관리
# 해당 리스트 유저들은 비번을 묻고 거부
vim /etc/vsftpd/ftpusers
# 해당 리스트 유저들은 가차없이 거부
vim /etc/vsftpd/user_list
# 만약 디렉토리만 나오고 파일이 안나온다면 selinux를 끄면 됨
setenforce 0
# selinux를 영구적으로 종료를 원하면, disabled 로 변환
vim /etc/sysconfig/selinux
FTP Client Install
# 클라이언트 설치
yum install ftp -y
# 접속
ftp <ip>
'Infra > Server' 카테고리의 다른 글
[SSH][Centos7] 포트 변경 (0) | 2020.07.31 |
---|---|
[Centos7] User & Permission (0) | 2020.07.28 |
[Centos7][Tomcat] Tomcat Install & Tomcat-manager Enable (0) | 2020.07.28 |
[Centos7] Jenkins Install (0) | 2020.07.28 |
[Centos7] Apache Install (Compile) and Tomcat Connector for mod_jk (0) | 2020.07.28 |
Comments