고정 IP 설정
/etc/network/interfaces
auto eth0 iface eth0 inet static address 210.129.123.138 netmask 255.255.255.0 gateway 210.129.123.1 # network 210.129.123.0 # broadcast 210.129.123.255 |
/etc/resolv.conf
nameserver 168.126.63.1 |
$sudo /etc/init.d/networking restart
$ping 168.126.63.1 [ 여기에서 정상이 아니면 DNS 설정이 잘못 ]
$ping 210.129.123.1 [ 여기에서 정상이 아니면 gateway 설정이 잘못 ]
출처:http://towanouta.tistory.com/110
APM 설치
Apache2
$ sudo apt-get install apache2
Mysql5
$ sudo apt-get install mysql-server mysql-client
설치 과정에서 mysql 비밀번호 설정창이 나타난다.
이때 설정한 비밀번호는 MySQL root 계정의 비밀번호이니, 꼭 기억하도록 한다.
3. PHP5
$ sudo apt-get install php5 php5-common
4. Apache와 PHP 연동
$ sudo apt-get install libapache2-mod-php5
5. PHP와 Mysql 연동
$ sudo apt-get install php5-mysql
* 구축 테스트
6. apache와 mysql을 재시작 해준다.
$ sudo /etc/init.d/apache2 restart
$ sudo /etc/init.d/mysql restart
7. apache 서버와 mysql 서버가 정상적으로 작동하고 있는지 확인한다.
$ sudo netstat -atp | grep apache2
$ sudo netstat -atp | grep mysqld
8. php와 apache의 연동을 확인한다.
위의 가이드대로 따라했다면 웹호스트의 루트 디렉토리는 /var/www 가 된다.
/var/www 에 phpinfo.php 를 만들고, 아래와 같은 내용을 적은 후, 저장해준다.
$ sudo gedit /var/www/phpinfo.php
<? phpinfo(); ?> |
10. 기타 개인 설정
기본 설정을 개인적으로 바꾸고 싶다면 다음 파일들을 수정하면 된다.
apache : /etc/apache2/apache2.conf
mysql : /etc/mysql/my.cnf
출처:http://sarghis.com/blog/680/
'Linux' 카테고리의 다른 글
Keyboard Shortcuts for the GNOME Desktop (0) | 2016.08.04 |
---|---|
[Ubuntu] 터미널 색상 넣기 color_prompt (0) | 2016.06.09 |
[Ubuntu] gedit 한글 깨짐 (0) | 2016.06.09 |
[Ubuntu] 우분투16.04 크롬 설치 (0) | 2016.05.14 |
apt-get 명령어 정리 (패키지 설치,제거) (0) | 2016.05.14 |