-1

I am trying to connect on ftp localhost but the login/password always fail. I have installed vsFTPd. I guess i have to modify passwd.conf. But how must I process? I have this line :

paul:x:1000:1000:paul,,,:/home/paul:/bin/false

Thank you!

  • 1
    Please move your question to [su] or [sf] (delete here, re-post there). It's [off-topic here](//stackoverflow.com/help/on-topic). – Martin Prikryl Nov 11 '17 at 20:14

2 Answers2

0

You can set new password with passwd (enter). or login with root privileges and type (sudo) passwd [username], and change password then.

And maybe need change config ftp server and set local_enable=YES and chroot_local_user=YES in the /etc/vsftpd/vsftpd.conf file config, for allow users in /etc/passwd to login.

Nabi K.A.Z.
  • 9,887
  • 6
  • 59
  • 81
0

You should add system user in chroot file like.

chroot_local_user=YES
chroot_list_file=/etc/vsftpd.chroot_list

after need to restart vsftpd service.

Visit here for more detail.

Val
  • 6,585
  • 5
  • 22
  • 52
Inderpal Singh
  • 101
  • 1
  • 2