[Raspberry Pi] 6. 라즈베리파이3 나스만들기 - Monsta FTP(Web Based FTP Client) 설치
Storage Software
Monsta FTP (Web Based FTP Client)설치
Monsta FTP는 Web-base FTP이다. 브라우저를 FTP Client 로 사용한다고 생각하면 된다.
Apache와 PHP 가 설치 되어 있어야 한다.
Apache + PHP 설치
$ sudo apt-get install apache2 $ sudo systemctl apache2.service |
Monsta FTP 다운로드
다운로드 사이트: https://www.monstaftp.com/download
해당 다운로드 사이트에서 free 버전을 다운받거나
wget 을 이용하여 다운받는다.
$ wget -O mftp.zip https://www.monstaftp.com/downloads/mftp.php |
압축풀기
$ unzip mftp.zip |
웹서비스를 위해 파일 옮기고 소유자 변경하기
$ sudo cp -ar mftp/ /var/www/ |
Apache에 monsta ftp 사이트 설정하기
$ sudo vi /etc/apache2/sites-available/mftp.conf |
Alias /mftp "/var/www/mftp/" |
Apache site enable 시키기
$ sudo a2ensite mftp.conf |
Apache Reload
$ sudo systemctl reload apache2.service |
Monsta FTP 접속하기
web 경로 : http://{address}/mftp
위의 경로를 이용하면 web-based FTP Client 인 Monsta FTP를 이용할 수 있다.