在linux编写脚本相关问题(更新)

来源:互联网 发布:翼龙贷 招聘网络 编辑:程序博客网 时间:2024/06/05 11:52

×××××××××××××××××××××××××更新于 2017-9-25×××××××××××××××××××××××××

问题1:python模块中,遇到ftp.connect连接失败

 如果对21端口进行通信,出现连接失败的问

首先查看21端口是否存在调用:netstat -an | grep 21

其次就是,查看是否安装vsftpd

最后就是添加21端口到路由表中

修改/etc/sysconfig/iptables文件,增加如下一行:  

 -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 21 -j ACCEPT

重启 iptables

service iptables restart


问题2:Linux启动ftp服务器530 Permission denied解决方法

原因是/etc/vsftpd/ftpusers  和  /etc/vsftpd/user_list  禁掉了root这个用户。这时我们需要修改这两个文件

(1)/etc/vsftpd.user_list的默认文件(则是表示具体用户)

# vsftpd userlist
# If userlist_deny=NO, only allow users in this file
# If userlist_deny=YES (default), never allow users in this file, and
# do not even prompt for a password.
# Note that the default vsftpd pam config also checks /etc/vsftpd.ftpusers
# for users that are denied.
root
bin
daemon
adm
lp
sync
shutdown
halt
mail
news
uucp
operator
games
nobody

这时我们要在 root 前加上 # 。

(2)/etc/vsftpd.ftpusers  的默认文件(所有可以登录该FTP的用户属性)

# Users that are not allowed to login via ftp
root
bin
daemon
adm
lp
sync
shutdown
halt
mail
news
uucp
operator
games
nobody

这时我们要在 root 前加上 # 

××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××


原创粉丝点击