개발 환경/우분투
[우분투 64bit] Bitnami LAMP 설치
oyeahhh
2016. 7. 27. 16:39
비트나미 Linux LAMP 다운 페이지에 접속한다.
https://bitnami.com/stack/lamp/installer
다운 받을 파일의 버튼을 오른쪽 클릭한 다음 링크 주소 복사를 한다.
터미널 창으로 들어가 wget 명령어를 사용하여 다운받는다.
wget 복사한 링크 주소 붙여넣기
wget https://bitnami.com/redirect/to/115313/bitnami-lampstack-5.6.24-0-linux-x64-installer.run
chmod 명령어를 사용하여 권한을 변경해 준다.
sudo chmod 700 bitnami-lampstack-5.6.24-0-linux-x64-installer.run
lamp를 설치 한다.
sudo ./bitnami-lampstack-5.6.24-0-linux-x64-installer.run
설치할 때 PhpMyAdmin을 제외한 나머지는 설치 하지 않는다. 전부 n 를 해준다.
Bitnami의 설치 위치를 변경하지 않는다면 엔터 해준다. ( 기본은 /opt/lampstack-버전 )
MySQL의 root 사용자의 비밀번호를 설정해 준다.
설치 완료하면 실행 시켜 준다~
출처
https://opentutorials.org/module/445/3813