Last active
October 16, 2015 08:41
-
-
Save firstval/e34531d0a952f397e337 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://hackerme.ph/drupal7/?q=user/ | |
| http://wiki.vpslink.com/Configuring_vsftpd_for_secure_connections_%28TLS/SSL/SFTP%29 | |
| http://www.itzgeek.com/how-tos/linux/centos-how-tos/install-and-configure-vsftpd-on-centos-7-rhel-7.html | |
| http://www.tecmint.com/install-proftpd-in-centos-7/ | |
| [HOWTO] Setting FTP Server | |
| Non Anonymous / Secure FTP | |
| 1. yum install vsftpd #after that type | |
| service vsftpd restart | |
| 2.#configure vsftpd.conf | |
| vi /etc/vsftpd/vsftpd.conf | |
| 3.#set the following accordingly | |
| anonymous_enable=NO userlist_enable=NO | |
| 4.#add ftp users | |
| useradd user1 | |
| 5.#set password for the user passwd user1 | |
| #then type desired password | |
| 6.#add created user in user_list | |
| vi /etc/vsftpd/user_list | |
| #delete all other entries except root, then add created user | |
| 7.#change boolean settings | |
| cd /selinux/booleans | |
| #then type the following commands | |
| setsebool -P allow_ftpd_full_access=1 | |
| setsebool -P ftp_home_dir=1 | |
| #if its not working type: | |
| service vsftpd restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment