centos 7 소스 패키지 설치, 마 운 트 해제 nginx

1224 단어
1. 원본 패키지 설치 전, 첫 페이지 설치 의존 패키지
yum -y install gcc gcc-c++ make libtool zlib zlib-devel openssl openssl-devel pcre pcre-devel

2. nginx 홈 페이지 에 가서 안정 판 설치 패 키 지 를 다운로드 합 니 다.
wget http://nginx.org/download/nginx-1.14.2.tar.gz

3. 압축 풀기
tar -zxvf nginx-1.14.2.tar.gz

3. 컴 파일 설치
cd nginx-1.14.2

./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre

make && make install

4. nginx 관련 명령
/usr/local/nginx/sbin/nginx #   

/usr/local/nginx/sbin/nginx -s stop #  

/usr/local/nginx/sbin/nginx -s reload #      

5. nginx 를 환경 변수 에 추가
vim /etc/profile

export NGINX_HOME=/usr/local/nginx

export PATH=$PATH:$NGINX_HOME/sbin

6. nginx 설치 검사
nginx -v #     

http://   ip #     

방화벽 때문에 웹 검색 에 실패 할 수 있 습 니 다.
7. 방화벽 닫 기
systemctl start firewalld #  

systemctl stop firewalld #  

systemctl status firewalld  #    

systemctl disable firewalld #      

systemctl enable firewalld #    

다음으로 전송:https://www.cnblogs.com/fengchi/p/10585467.html

좋은 웹페이지 즐겨찾기