4.依賴庫安裝確認:
yum install perl
yum install gcc
yum install gcc-c++
yum -y install net-tools
1.安裝openssl-1.0.2o.tar.gz
cd /home/nginx_install2.安裝zlib-1.2.8.tar.gztar -zxvf openssl-1.0.2o.tar.gz
cd openssl-1.0.2o
#prefix配置安裝路徑
./config --prefix=/opt/ldkjdata/nginx/openssl-1.0.2o
make
make install
cd /home/nginx_install3.安裝pcre-8.38.tar.gztar -zxvf zlib-1.2.11.tar.gz
cd zlib-1.2.11
./configure --prefix=/opt/ldkjdata/nginx/zlib-1.2.11
make
make install
cd /home/nginx_install4.安裝nginxtar -zxvf pcre-8.38.tar.gz
cd pcre-8.38
./configure --prefix=/opt/ldkjdata/nginx/pcre-8.38
make
make install
5.檢測是否安裝成功
cd /opt/ldkjdata/nginx/nginx-1.14.0/sbin6.nginx啟動和埠檢視./nginx -t
#看到如下提示,表示安裝成功。
nginx: the configuration file /opt/ldkjdata/nginx/nginx-1.14.0/conf/nginx.conf syntax is ok
nginx: configuration file /opt/ldkjdata/nginx/nginx-1.14.0/conf/nginx.conf test is successful
配置檔案:/opt/ldkjdata/nginx/nginx-1.14.0/conf/nginx.conf
1.需求
簡訊伺服器列表三颱,提供服務的位址如下:
彩信伺服器列表三颱,提供服務的位址如下:
http://public_ip:8090/smsserver/services/sendsms?wsdl 簡訊傳送服務
http://public_ip:8090/mmsserver/services/sendmms?wsdl 彩信傳送服務
2.對於以上需求,配置/opt/nginx-1.8.0/conf/nginx.conf如下:
#彩信傳送伺服器
upstream mmsserver
#設定提供服務的伺服器,end
#gzip on;
server
#規則二
location /smsserver
#規則三
location /mmsserver
#設定請求**規則, end
error_page 500 502 503 504 /50x.html;
location = /50x.html
} server
#設定請求**規則, end
error_page 500 502 503 504 /50x.html;
location = /50x.html
} }
上面例子有個問題是,直接將我整個web根目錄smsserver和mmsserver暴露到公網了,其實我的目的只是想暴露兩個介面位址,所以6有待優化,舉個例子如下:
1.需求
介面伺服器列表兩台臺,提供服務的位址如下:
介面一:
介面二:
http://public_ip:8081/myweb/inte***ce/getdata 介面一
http://public_ip:8081/myweb/inte***ce/senddata 介面二
2.對於以上需求,配置/opt/nginx-1.8.0/conf/nginx.conf如下:
#設定提供服務的伺服器,end
#gzip on;
server
#設定請求**規則, end
error_page 500 502 503 504 /50x.html;
location = /50x.html
} server
#規則二,查詢介面一
location /myweb/inte***ce/getdata
#規則三,查詢介面二
location /myweb/inte***ce/senddata
#設定請求**規則, end
error_page 500 502 503 504 /50x.html;
location = /50x.html
} }
/conf/nginx.conf中第一行的執行使用者改為
user root;
location /uploadfile
當訪問http://ip:port/uploadfile/aa/bb/cc.jpg
相當於訪問 /opt/staticdata/uploadfile/aa/bb/cc.jpg
中標麒麟 使用U盤安裝中標麒麟桌面作業系統
今天的主角來自中標軟體 中標麒麟是正統的linux作業系統,是fedora的衍生版本。寫此篇的緣由 題主厭倦了官方 中標軟體 提供的光碟來安裝系統,由於讀寫速度的原因使用光碟安裝中標麒麟系統時間過長。所以準備將光碟生成iso,然後使用ultraiso 9.6 至於這裡為什麼要強調版本,後面再說 製作...
中標麒麟作業系統了解的指令
lsb release acat etc release getconf long bit ls bin sh l lrwxrwxrwx 1 root root 4 jan 2920 23 bin sh dash 當然系統預設的 bin sh指向dash。sudo dpkg reconfigure ...
國產作業系統優麒麟安裝步驟
作為我國自主研發的作業系統 優麒麟,是我們的驕傲!雖然她正在成長過程中,有很多不足,與主流作業系統還有差距,但我們相信他會越來越成熟,越來越完善。接下來,我們重啟電腦,選擇u盤啟動。不同電腦品牌所使用的快捷會有所不同,一般是f12.我們選擇u盤啟動。選擇u盤啟動後,會出現以下介面。提示沒有發映像的提...