centos 7 오프라인 구축 nginx 관련 배치 설명
[root@wizesb-test-mng01 java]# cd /data/zlib
[root@wizesb-test-mng01 zlib]# tar -zxvf zlib-1.2.11.tar.gz
[root@wizesb-test-mng01 zlib]# ./configure
압축 해제 설치 gccdependences.zip
[root@wizesb-test-mng01 gcc]# cd /data/gcc/
[root@wizesb-test-mng01 gcc]# rpm -Uvh *.rpm --nodeps --force
압축 해제 설치 nginx - 1.15.7. tar. gz
[root@wizesb-test-mng01 gcc]# cd nginx/
[root@wizesb-test-mng01 nginx]# tar zxvf nginx-1.15.7.tar.gz
[root@wizesb-test-mng01 nginx]# cd nginx-1.15.7
[root@wizesb-test-mng01 nginx]# ./configure
[root@wizesb-test-mng01 nginx]# make
[root@wizesb-test-mng01 nginx]# make install
//
cd /usr/local/nginx
./sbin/nginx -t
//
[root@192 nginx]# ./sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
// nginx
cd /usr/local/nginx/sbin
./nginx
// nginx
netstat -ntlp | grep 80
1、 firewall:
systemctl stop firewalld.service # firewall
systemctl disable firewalld.service # firewall
firewall-cmd --state # ( notrunning, running)
nginx
vim /etc/rc.d/rc.local
/usr/local/nginx/sbin/nginx
nginx systemctl
vi /usr/lib/systemd/system/nginx.service
[Unit]
Description=The nginx HTTP and reverse proxy server
After=network.target remote-fs.target nss-lookup.target
[Service]
Type=forking
### find / -name 'nginx.pid' pid
PIDFile=/usr/local/nginx/logs/nginx.pid
# Nginx will fail to start if /run/nginx.pid already exists but has the wrong
# SELinux context. This might happen when running `nginx -t` from the cmdline.
# https://bugzilla.redhat.com/show_bug.cgi?id=1268621
ExecStartPre=/usr/bin/rm -f /usr/local/nginx/logs/nginx.pid
ExecStartPre=/usr/local/nginx/sbin/nginx -t
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/bin/kill -s HUP $MAINPID
KillSignal=SIGQUIT
TimeoutStopSec=5
KillMode=process
PrivateTmp=true
[Install]
WantedBy=multi-user.target
:wq
systemctl enable nginx.service
systemctl restart nginx
pkill -9 nginx
systemctl start nginx.service
ss -lntp | egrep ':80\s'
vue
cd /usr/local/nginx/conf/
vi nginx.conf
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Laradock으로 Laravel 환경 구축〇Mac 〇docker-compose 사용 가능 〇git 사용 가능 1) Laradock 설치 2) Laradock .env 파일 만들기 3) Docker로 개발 환경 시작 4) Laravel 설치 5) 브라우저에 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.