ubuntu14 서버에 nginx 를 설치해보겠습니다.
보다 상세한 내용은 nginx의 wiki 사이트를 참고하시길 바랍니다.
https://www.nginx.com/resources/wiki/start/topics/tutorials/install/#official-debian-2fubuntu-packages안정적인 nginx 버젼을 설치하기 위하여 apt-get list를 업데이트 합니다.
현재 시점의 버젼은 1.8이네요
1. apt-get
$ sudo -s
nginx=stable # use nginx=development for latest development version
add-apt-repository ppa:nginx/$nginx
apt-get update
2. nginx install
$ apt-get install nginx
3. nginx 기동/정지
$ sudo service nginx start
$ sudo service nginx stop
4. nginx 경로
$ cd /etc/nginx
$ cd /var/log/nginx
5. 프로세스 확인
$ ps -ef | grep nginx
root 18890 1 0 09:09 00:00:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
www-data 18892 18890 0 09:09 00:00:00 nginx: worker process
root 18906 18360 0 09:11 pts/0 00:00:00 grep --color=auto nginx
'Ubuntu 14' 카테고리의 다른 글
ubuntu 14 - Redis 최신 stable 버젼 설치하기 (0) | 2015.12.13 |
---|---|
vi/vim 명령어 (0) | 2015.12.10 |
ubuntu14 - Jdk, Tomcat 설치하기 (0) | 2015.12.08 |
Ubuntu14 명령어 모음 (0) | 2015.12.04 |
ubuntu14 - Mongodb 설치하기 (0) | 2015.12.04 |
댓글