当前位置 博文首页 > init.d下面没有vsftpd,suse下init.d中的vsftpd启动脚本

    init.d下面没有vsftpd,suse下init.d中的vsftpd启动脚本

    作者:xiaoyingying 时间:2021-08-12 15:17

        IIS7批量FTP管理功能说明:
        1、可批量导入,导出FTP信息
        2、其他ftp工具有的功能,我们也有
        3、特色功能:可以定时上传下载
        4、数据信息列表化、一眼就能知道那个是那个
        5、批量连接标签页式切换方便快捷
        6、7大连接模式更多好的兼容
        7、内嵌编辑器有效解决普通txt记事本乱码
        8、锁屏功能当程序有规定时间内没人操作,则自动锁程序。输入密码才可以正常操作
        本产品适用于:懒得记录FTP信息和有批量定时备份,上传下载的运维或站长。
        下载地址:http://ftp.iis7.com/
        图片:
        suse下init.d中的vsftpd启动脚本
        #!/bin/sh
        ###BEGININITINFO
        #Provides:proxy
        #Required-Start:$remote_fs
        #Required-Stop:$remote_fs
        #Default-Start:2345
        #Default-Stop:016
        #Short-Description:StartorstoptheHTTPProxy.
        ###ENDINITINFO
        ./etc/rc.status
        case"$1"in
        start)
        echo-n"startVSFTPDservice..."
        echo-n""
        start-stop-daemon--start-p$VSFTPD_PIDFILE--exec/usr/local/sbin/vsftpd/etc/vsftpd.conf
        rc_status-v
        ;;
        stop)
        echo-n"stopVSFTPDservice..."
        echo-n""
        start-stop-daemon--stop--userroot--name/usr/local/sbin/vsftpd
        rc_status-v
        ;;
        restart)
        ##Stoptheserviceandregardlessofwhetheritwas
        ##runningornot,startitagain.
        $0stop
        $0start
        #Rememberstatusandbequiet
        rc_status
        esac
        原文链接:http://blog.sina.com.cn/s/blog_8c6d62690101dqlr.html