CentOs6.3 简单的搭建ftp

1.下载vsftpd

yum install vsftpd ftp

2.打开服务

service vsftpd start

3.修改配置文件

 vi /etc/vsftpd/vsftpd.conf

这里写图片描述
4.尝试本地登录

[root@localhost ~]# ftp 192.168.50.30
Connected to 192.168.50.30 (192.168.50.30).
220 (vsFTPd 2.2.2)
Name (192.168.50.30:root): root
331 Please specify the password.
Password:
230 Login successful.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> 

CentOs6.3 简单的搭建ftp_第1张图片

登录成功!(远程登录也可以)
添加用户

[root@localhost ~]# adduser zhang
[root@localhost ~]# passwd zhang
更改用户 zhang 的密码 。
新的 密码:
无效的密码: 它基于字典单词
重新输入新的 密码:
passwd: 所有的身份验证令牌已经成功更新。

你可能感兴趣的:(linux)