setup FTP server on CentOS 7
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了setup FTP server on CentOS 7相关的知识,希望对你有一定的参考价值。
https://www.unixmen.com/install-configure-ftp-server-centos-7/
vsftpd (Very Secure File Transport Protocol Daemon) is a secure, fast FTP server for Unix/Linux systems.
# install vsftp yum install vsftpd -y #edit config file and ## disable anonymous login : change YES to NO ## uncomment ascii_upload_enable=YES and ascii_download_enable=YES ## Uncomment - Enter your Welcome message - This is optional ## # ftpd_banner=Welcome to UNIXMEN FTP service. vi /etc/vsftpd/vsftpd.conf ## Add at the end of this file ## use_localtime=YES #Enable and start the vsftpd service: systemctl enable vsftpd systemctl start vsftpd
By default, root user is not allowed to login to ftp server for security purpose. So, let us create a normal testing user called “sk” with password “centos”.
useradd sk passwd sk
> ftp 192.168.1.101
以上是关于setup FTP server on CentOS 7的主要内容,如果未能解决你的问题,请参考以下文章
Install Jetty web server on CentOS 7 / RHEL 7
ruby on rails environment setup
405 Method Not Allowed error with PUT or DELETE Request on IIS Server