Whether to install ftp on linux

(*-*)浩
Release: 2019-12-28 14:33:28
Original
4038 people have browsed it

Whether to install ftp on linux

1. Check whether ftp is installed: , Installation instructions: (Find a -y command)

rpm -qa|grep vsftpd
Copy after login

3. After the installation is completed, perform step 1 to see the ftp version information

4. After the installation is completed, start the FTP service:

yum install -y vsftpd
Copy after login

5. After starting, you can see that the system has listened to port 21:

service vsftpd start
Copy after login

6. Disable anonymous users

netstat -nltp | grep 21
Copy after login

7. Save and restart

vi /etc/vsftpd/vsftpd.conf  (anonymous_enable=NO-----yes改为no)
Copy after login

The above is the detailed content of Whether to install ftp on linux. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!