I solved this problem.
I always lock /etc/passwd after install Linux .
But I forget to install vsftpd this time .
vsftpd package has to modify /etc/passwd /etc/shadow during installation.
But it cannot do it when I lock /etc/passwd.
So, you have to change /etc/passwd /etc/shadow by yourself.
Add ftp.... line to /etc/passwd /etc/shadow
/etc/passwd
:
:
gopher:x:13:30:gopher:/var/gopher:/sbin/nologin
ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin
nobody:x:99:99:Nobody:/:/sbin/nologin
:
:
/etc/shadow
:
:
gopher:*:12326:0:99999:7:::
ftp:*:12326:0:99999:7:::
nobody:*:12326:0:99999:7:::
:
:
Then the vsftpd response correctly.