热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

配置ProFTPd服务开机自动运行

#若需要将proftpd设置为系统启动时自动启动则通过如下命令拷贝启动文件:[root@proftpd-1.3.0rc3]#cp./contrib/dist/rpm/proftpd.init.d/etc/rc.d/init.d/proftpd#修改该脚本的可执行属性:[root@localhost/]#chmod+x/

# 若需要将proftpd设置为系统启动时自动启动则通过如下命令拷贝启动文件:

[root@proftpd-1.3.0rc3]# cp ./contrib/dist/rpm/proftpd.init.d /etc/rc.d/init.d/proftpd

# 修改该脚本的可执行属性:

[root@localhost /]# chmod +x /etc/rc.d/init.d/proftpd

**********看网上有的文章为以下内容,大家可以参考****************************
然后编辑/etc/rc.d/init.d/functions:
修改
export PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin"

export PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin"

注:若将在运行./cofigure命令时通过--prefix选项指定将proftpd安装在/usr/sbin目录下则不需要修改fuctions文件。
***************************************************************************

====这段内容是我根据自己的实际情况修改的内容,与上面一段二者选一,大家试一下吧===
编辑/etc/rc.d/init.d/proftpd
修改
PATH="$PATH:/usr/local/sbin"

PATH="$PATH:/usr/local/proftpd/sbin"
======================================================================================
# 然后运行命令:

[root@localhost /]# chkconfig --level 35 proftpd on

# 则下次系统启动以后,proftpd将自动启动。
# 通过如下命令启动proftpd:

[root@ftpd /]# /etc/rc.d/init.d/proftpd start

这时候可以通过如下命令来测试proftpd是否正常运行:

[root@homeserver usr]# ftp 192.168.1.20
Connected to 192.168.1.20.
220 192.168.1.20 FTP server ready
500 AUTH not understood
500 AUTH not understood
KERBEROS_V4 rejected as an authentication type
Name (192.168.1.20:phoebus): softsoul
331 Password required for softsoul.
Password:
230 User softsoul logged in.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp>


推荐阅读
author-avatar
万源佳威5
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有