[size=large][b]1. 安装[/b][/size]
系统光盘上自带有安装包。
rpm -ivh vsftpd*
[size=large][b]2. 自启动[/b][/size]
chkconfig vsftpd on
也可以查看启动方式:
chkconfig --list |grep vsftpd
只要在第2--5为on就能随机启动。
[size=large][b]3. 启动FTP[/b][/size]
service vsftpd start
[size=large][b]4. 连接测试[/b][/size]
vsftp默认安装目录是:/etc/vsftpd
默认有一个ftp目录:var/ftp
vsftp默认是用允许匿名用户【anonymous】登陆,允许下载,但是不允许上传
如果连不上,可能是linux 防火墙的原因
停止防火墙:service iptables stop
开启防火墙:service iptables start
系统光盘上自带有安装包。
rpm -ivh vsftpd*
[size=large][b]2. 自启动[/b][/size]
chkconfig vsftpd on
也可以查看启动方式:
chkconfig --list |grep vsftpd
只要在第2--5为on就能随机启动。
[size=large][b]3. 启动FTP[/b][/size]
service vsftpd start
[size=large][b]4. 连接测试[/b][/size]
vsftp默认安装目录是:/etc/vsftpd
默认有一个ftp目录:var/ftp
vsftp默认是用允许匿名用户【anonymous】登陆,允许下载,但是不允许上传
如果连不上,可能是linux 防火墙的原因
停止防火墙:service iptables stop
开启防火墙:service iptables start