#yum install vsftpd
2、安裝後執行:
#service vsftpd restart
shutting downvsftpd: [ ok ]
starting vsftpd forvsftpd: [ ok ]
3、新增加系統使用者ftptest:
#useradd -d /var/www -s /sbin/nologin gd_user1//增加新使用者ftptest不讓在本機登陸
#chown -r gd_user1/var/www//更改新增目錄的許可權,只允許ftptest訪問此目錄;
#chmod 777 -r /var/www
#passwd gd_user1//為使用者設定密碼;
changing password for user gd_user1.
new unix password:
bad password: it does not contain enough differentcharacters
retype new unix password:
passwd: all authentication tokens updated successfully.
5、修改vsftpd.conf 禁止匿名帳號登陸及允許自建帳號登陸:
#vi /etc/vsftpd/vsftpd.conf
anonymous_enable=no
local_enable=yes
write_enable=yes
local_umask=022
dirmessage_enable=yes
xferlog_enable=yes
connect_from_port_20=yes
xferlog_std_format=yes
chroot_list_enable=yes
chroot_list_file=/etc/vsftpd/chroot_list
listen=yes
pam_service_name=vsftpd
userlist_enable=yes
4、修改/etc/vsftpd/chroot_list 新增gd_user1帳號允許該帳號登陸ftp伺服器
vi /etc/vsftpd/chroot_list
輸入gd_user1
5、在linux shell 命令模式下
#setsebool ftpd_disable_trans 1// 關閉掉selinux 對ftp服務的保護;
#vi /etc/selinux/config
selinux=disabled//將此處設定為disable
# selinuxtype= type of policy in use. possible valuesare:
# targeted – only targeted network daemons are protected.
# strict – full selinux protection.
selinuxtype=targeted
重啟服務
#service vsftpd restart
shutting downvsftpd: [ ok ]
starting vsftpd forvsftpd: [ ok ]
記得關閉火牆
安裝ftp伺服器
linux安裝ftp元件 安裝完後,有 etc vsftpd vsftpd.conf檔案,是vsftp的配置檔案。root bogon yum y install vsftpd 此使用者就是用來登入ftp伺服器用的。root bogon useradd ftpuser 這樣乙個使用者建完,可以用這個...
zabbix伺服器yum安裝
首先要安裝lamp環境 安裝zabbix3.4.2版本 伺服器 192.168.160.2 客戶端 192.168.160.3 1 安裝zabbix源 rpm ivh 2 安裝zabbix server and agent 配置自己監控自己,所以安裝了zabbix agent yum install...
ubuntu安裝ftp伺服器
1 安裝 vsftpd sudo apt get install vsftpd ubuntu10.10自己裝了,這步省略。2 配置 vsftpd 2.1 修改 vsftpd 的配置檔案。此類配置檔案通常位於 etc 目錄下。sudo gedit etc vsftpd.conf 原檔案中不少指令被注釋...