ก่อนอื่นให้ติดตั้งโปรแกรม FileZilla ก่อนหากยังไม่มีให้ดาวน์โหลดได้จากลิ้งค์นี้ https://filezilla-project.org/download.php
www
group to your EC2 instance with the following command:
1 |
sudo groupadd www |
ubuntu
user to the www
group:
1 |
sudo usermod -a -G www ubuntu |
www
group, log out:
1 |
exit |
www
group exists with the groups
command:
1 |
groups |
/var/www
directory and its contents to the www
group:
1 |
sudo chown -R root:www /var/www |
/var/www
and its subdirectories to add group write permissions and set the group ID on subdirectories created in the future:
1 2 |
sudo chmod 2775 /var/www find /var/www -type d -exec sudo chmod 2775 {} + |
/var/www
directory and its subdirectories to add group write permissions:
1 |
find /var/www -type f -exec sudo chmod 0664 {} + |
หลังจากนั้นลอง FTP ไฟล์ขึ้นไปใน /var/www/html จะเห็นว่า FTP ขึ้นไปได้ครับ
http://www.select2web.com/webservice/amazon-elastic-computer-cloud-ec2-part-10-ftp.html