2016. 11. 21. 09:12ㆍOS/리눅스
nginx 설치
root@ #> service nginx stop
root@ #> mv nginx nginx_bak <--------- 기존에 있던 1.9 버전 nginx 디렉토리를 백업으로 변경
root@ #> wget http://nginx.org/download/nginx-1.10.2.zip
root@ #> tar xvzf nginx-1.10.2.tar.gz
root@ #> cd nginx-1.10.2/src/core
root@xxx /core/ #> cd /nginx-1.10.2/
root@xxx /nginx-1.10.2/ #> ./configure --prefix=/nginx --conf-path=/nginx/conf/nginx.conf --error-log-path=/logs/error.log --http-log-path=/nginx/logs/access.log --with-http_ssl_module --with-http_stub_status_module --with-http_flv_module --with-http_gzip_static_module --with-http_mp4_module --with-http_secure_link_module --with-http_random_index_module
------------------------------------------------------------------------------------------
--prefix=*** : 컴파일후 관련된 파일들이 설치되는 디렉토리를 지정.
--conf-path=*** : config 파일이 저장되는 디렉토리를 지정
--error-log-path=*** : 에러 로그가 저장되는 디렉토리를 지정
--http-log-path=*** : http 로그가 저장되는 디렉토리를 지정
--with-*** : 해당 모듈을 함께 컴파일 하여 모듈 사용
------------------------------------------------------------------------------------------
root@ #> make
root@ #> make install
root@ #> cd /nginx.bak/conf/
root@ #> cp nginx.conf /nginx/conf/. <--------- 기존의 config 파일 덮어쓰기
root@ #> service nginx start
root@ #> cd /path
root@ #> 해당 디렉토리에 짧은 영상을 넣고 스트리밍 테스트
웹주소에 IP 주소/경로/파일이름 으로 테스트
Ex ) http://xxx.xxx.xxx.xxx/path/filename.mp4
'OS > 리눅스' 카테고리의 다른 글
간단한 ssh포트 접속하는 거 (0) | 2016.12.16 |
---|---|
htpasswd 사용시 command not found 라고 뜰때 (0) | 2016.11.22 |
원하는 것만 출력하는 옵션 feat. ps -ef (0) | 2016.11.10 |
파일 복사 TAR, SCP (secure copy) (0) | 2016.11.08 |
gluster 구축 (vm 6대) 간략한 매뉴얼 (0) | 2016.10.31 |