|
|
我已经用xinetd服务启动我的FTP,设置如下
# default: on
# description:
# The vsftpd FTP server serves FTP connections. It uses
# normal, unencrypted usernames and passwords for authentication.
# vsftpd is designed to be secure.
service ftp
{
socket_type = stream
wait = no
user = root
server = /usr/local/sbin/vsftpd
# server_args =
# log_on_success += DURATION USERID
# log_on_failure += USERID
nice = 10
disable = no
}
但我登陆服务器的时候就会上不去
[root@localhost vsftpd-1.2.2]# ftp localhost
Connected to localhost (127.0.0.1).
421 Service not available, remote server has closed connection
怎么样才能打开服务器的连接? |
|