Centors7環境下安裝nginx步驟

2021-09-03 01:41:20 字數 1146 閱讀 8389

yum -y install gcc automake autoconf libtool make

cd /usr/local/src

wget

tar -zxvf pcre-8.39.tar.gz

cd pcre-8.39

./configure

make

make install

cd /usr/local/src

wget

tar -zxvf zlib-1.2.11.tar.gz cd zlib-1.2.11

./configure

make

make install

/usr/local/src

wget

tar -zxvf openssl-1.0.2q.tar.gz

./configure

make

make installcd

7、安裝nginx

cd /usr/local/src

wget

tar -zxvf nginx-1.4.1.tar.gz

cd nginx-1.4.1

./configure

make

make install

8、啟動nginx

檢視埠是否被占用

netstat -ano|grep 80

如果被占用了

/usr/local/nginx/conf/nginx.conf

修改埠或者把占用的程序殺死

啟動:/usr/local/nginx/sbin/nginx

9、重啟、關閉、啟動

檢視程序:ps -ef|grep nginx

殺死程序:kill -9 nginx

或者 kill -qcit 23456   

或者 kill -term 23456

或者 kill -int 23456 (23456是nginx的程序號)

重啟:cd /usr/local/nginx/sbin/nginx/sbin

./nginx -s reload

10、專案存放路徑

/usr/local/nginx/html

11、瀏覽器訪問

ip 位址直接訪問    (埠號為80的)

WIN7環境下安裝Redis

redis x64 zip 壓縮包到 c 盤,解壓後,將資料夾重新命名為 開啟乙個 cmd 視窗 使用cd命令切換目錄到 c redis 執行redis server.exe redis.windows.conf 如果想方便的話,可以把 redis 的路徑加到系統的環境變數裡,這樣就省得再輸路徑了,...

centos7環境下安裝MySQL

安裝mysql官方的yum repository wget i cyum y install mysql57 community release el7 10.noarch.rpm安裝mysql服務 yum y install mysql community server啟動mysql服務 syst...

Centos7環境下安裝gitlab

1.安裝依賴 yum install curl openssh server openssh clients postfix cronie y 2.開啟postfix systemctl start postfix 3.設定postfix開機自啟動 systemctl enable postfix....