I need to build nginx server and ftp service recently
nginx server
Online installation $sudo apt-get install nginx
Install nginx dependency package and run command:
sudo apt-get install libssl-dev
sudo apt-get install libpcre3 libpcre3-dev
Start Nginx $sudo /etc/init.d/nginx start
ubuntu 14.04 Install vsftpd prompt 530 Login incorrect
ftp localhost
The default user name is ftp, and the password is set when you install it. Ubuntu 14.04 installs vsftpd and prompts 530 Login incorrect. Many methods searched online are unreliable. The final solution is as follows: This is because Ubuntu has enabled PAM, which is used. When going to vsftp, you need to use the file /etc/pam.d/vsftpd (the default source code installation does not have this file), so local users cannot log in except anonymous users. So just delete it.
Solution: sudo touch /etc/vsftpd.chroot_list
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i
').text(i));
};
$numbering.fadeIn(1700);
});
});
The above has introduced the prompt 530 Login incorrect when installing vsftpd on ubuntu 1404, including the incorrect content. I hope it will be helpful to friends who are interested in PHP tutorials.