免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1119 | 回复: 0
打印 上一主题 下一主题

求助:我的proftpd不能连接 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-10-13 10:52 |只看该作者 |倒序浏览
请各位DX帮帮忙,我的ftp连不上,报错如下:
421 Service not available, remote server has closed connection。

我在网上搜了很多贴子,还是没有解决。环境是:Solaris 8 for SPARC, proftpd 1.2.10, mysql 3.23.53, php 5.0.2。其中,proftpd.conf的配置如下:
ServerName "my ftp server"
ServerType standalone
DefaultServer on

Port 21
Umask 022

<Global>;
SQLConnectInfo ftpuser@localhost:3306 ftpuser
SQLAuthtypes Backend Plaintext
SQLUserInfo users userid password uid gid NULL NULL
SQLDefaultHomedir "/tmp"
RequireValidShell off
SQLGroupInfo groups groupname gid members
SQLAuthenticate users groups usersetfast groupserfast
</Global>;

MaxInstances 30

User nobody
Group nobody

<Directory />;
AllowOverwirte on
</Direcrtory>;

在系统中建有nobody,ftpuser的用户和组,/etc/init.d/proftpd文件的内容如下:
FTPD_BIN=/sur/local/proftpd/sbin/proftpd
FTPD_CONF=/usr/local/proftpd/etc/proftpd.conf
PIDFILE=/usr/local/proftpd/var/proftpd.pid

if [ -f $PIDFILE ]; then
   pid='cat $PIDFILE'
fi

if [! -x $FTPD_BIN ]; then
   echo "$0: $FTPD_BIN: cannot execute"
   exit 1
fi

case $1 in
   start)
   if [ -n "$pid" ]; then
      echo "$0: proftpd [PID $pid] already running"
      exit
   fi

   if [ -r $FTP_CONF ]; then
      echo "Starting proftpd..."
      $FTP_BIN -c $FTPD_CONF
   else
      echo "$0: cannot start proftpd -- $FTPD_CONF missing"
   fi
   ;;

   stop)
   if [ -n "$pid" ]; then
      echo "Stopping proftpd..."
      kill -TERM $pid
   else
      echo "$0: proftpd not running"
      exit 1
   fi
   ;;

   restart)
   ....
   ;;

esac

exit 0
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP