링크 ux nginx 설치 과정 (ubuntu)
3836 단어 링크 ux 시스템 서비스웹 백 스테이지 기술
다음 단계 실행: 1) sudo apt - get update (소프트웨어 원본 업데이트) 설치 작업 을 수행 합 니 다. 성공 하지 못 하면 2) sudo apt - get upgrade (소프트웨어 원본 계속 업데이트) 설치 작업 을 수행 합 니 다. 3) sudo apt - get install - y openssh - server
nginx 를 설치 하고 Ubuntu 에 Nginx 를 설치 하 는 방법 은 다음 과 같 지만 최신 버 전 을 설치 하려 면 원본 패 키 지 를 다운로드 하여 컴 파일 하여 설치 해 야 합 니 다.1. sudo apt - get install nginx 2. 원본 패키지 컴 파일 을 통 해 설치 합 니 다. 원본 코드 를 통 해 설치 하면 버 전 을 지정 할 수 있 습 니 다.관련 라 이브 러 리 를 먼저 설치 하고 문제 가 있 으 면 gcc g + 를 설치 한 의존 라 이브 러 리 sudo apt - get install build - essential sudo apt - get install libtool 설치 pcre 의존 라 이브 러 리 (http://www.pcre.org/)
sudo apt - get update sudo apt - get install libpcre 3 libpcre 3 - dev 설치 zlib 의존 라 이브 러 리 (http://www.zlib.net)
sudo apt - get install zlib1g - dev SSL 의존 라 이브 러 리 설치 (16.04 기본 값 설치)
sudo apt - get install openssl 이 끝 난 후 설치 nginx \ # 최신 버 전 다운로드: wgethttp://nginx.org/download/nginx-1.13.6.tar.gz \ # 압축 해제: tar - zxvf nginx - 1.13.6. tar. gz \ # 압축 해제 디 렉 터 리 에 들 어 갑 니 다: cd nginx - 1.13.6 \ # 설정:. / configure -- prefix = / usr / local / nginx #컴 파일: make \ # 설치: sudo make install \ # 시작: sudo / usr / local / nginx / sbin / nginx - c / usr / local / nginx / conf / nginx. conf 주의: - c 설정 파일 의 경 로 를 지정 합 니 다. 추가 하지 않 으 면 nginx 는 기본 경로 의 설정 파일 을 자동 으로 불 러 옵 니 다. - h 를 통 해 도움말 명령 을 볼 수 있 습 니 다. \ #프로 세 스 보기: ps - ef | grep nginx 4. 567914 도 가능 합 니 다.
부팅 서비스 설정
/ etc / init. d / 에서 nginx 파일 을 만 듭 니 다. sudo vim / etc / init. d / nginx 는 다음 과 같 습 니 다.
#!/bin/sh # nginx - this script starts and stops the nginx daemin # # chkconfig: - 85 15
# description: Nginx is an HTTP(S) server, HTTP(S) reverse \ # proxy and IMAP/POP3 proxy server # processname: nginx # config: /usr/local/nginx/conf/nginx.conf # pidfile: /usr/local/nginx/logs/nginx.pid # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ "$NETWORKING" = "no" ] && exit 0 nginx="/usr/local/nginx/sbin/nginx" prog=$(basename$nginx) NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf" lockfile=/var/lock/subsys/nginx start() { [ -x $nginx ] || exit 5 [ -f $NGINX_CONF_FILE ] || exit 6 echo -n $"Starting $prog: " daemon $nginx -c $NGINX_CONF_FILE retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " killproc $prog -QUIT retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval }
restart() { configtest || return $? stop start } reload() { configtest || return $? echo -n $"Reloading $prog: " killproc $nginx -HUP RETVAL=$? echo }
force_reload() { restart }
configtest() { $nginx -t -c $NGINX_CONF_FILE }
rh_status() { status $prog }
rh_status_q() { rh_status >/dev/null 2>&1 }
case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart|configtest) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}" exit 2 esac
이 제 는 서비스 nginx start / stop 등의 명령 을 사용 할 수도 있 고, 자동 시작 을 설정 할 수도 있 습 니 다.