当前位置: 首页 > 图文教程 > 操作系统 > Unix/Linux > RHEL AS3U3 "vsftpd dead but subsys locked" problem

Unix/Linux
简析Linux中如何改变文件或目录的访问权限
初次安装Linux系统手记
Linux上搭建C/C++IDE开发环境
独辟蹊径:实现Linux下的局域网远程接入
不同发行版Linux操作系统如何实现共存
将Linux代码移植到Windows的简单方法
Linux系统中如何实现远程控制
linux系统如何访问NTFS磁盘
简单高效:用Swatch做Linux日志分析
全球顶尖超级计算机60%用Linux系统
Linux操作系统12则经典应用技巧
RedHat Linux操作系统配置技巧
Linux的防火墙配置—基础篇
浅谈Linux文件系统反删除方法
浅谈Linux优化及安全配置
解读Linux文件权限的设置方法
保护Linux下的Apache网站
如何在Linux下压缩文件
Linux爱好者入门教程
RedHat源码升级-(OpenSSL + OpenSSH)

Unix/Linux 中的 RHEL AS3U3 "vsftpd dead but subsys locked" problem


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-01   浏览: 79 ::
收藏到网摘: n/a


In RHEL AS3Update3, after started the vsftp ftp server and connected to it from another computer, it prompted the user neaded an authorization and stopped there. Then when you use the server configure tools to restart the vsftp service , it says "vsftpd dead but subsys locked".
In RHEL AS3Update3, after started the vsftp ftp server and connected to it from another computer, it prompted the user neaded an authorization and stopped there. Then when you use the server configure tools to restart the vsftp service , it says "vsftpd dead but subsys locked". I used the followed method to figure it out.
Method 1). Open the /etc/xinit.d/gssftp file. change the line "Server_args= -l -a " to "Server_args=-l "
this will resolve the authorization problem and can connect the ftp server successfully. but the password verify process is time consumer.

Method 2). Open the /etc/xinit.d/gssftp file, change the line "disable=no" to "disable=yes"
this will make the vsftp server working as a stand alone demon and the connection is fluent.
After this operation, you must use service vsftpd restart to restart the vsftp server.