1)使用原始碼安裝依賴包2)nginx 的命令用法
[root@145 ~]# /usr/local/nginx/sbin/nginx //啟動服務[root@145 ~]# /usr/local/nginx/sbin/nginx -s stop //關閉服務[root@145 ~]# /usr/local/nginx/sbin/nginx -s reload //重啟服務[root@145 ~]# /usr/local/nginx/sbin/nginx -v //檢視版本[root@145 ~]# ln -s /usr/local/nginx/sbin/nginx /sbin/ //方便後期使用
netstat 常用選項
[root@145 ~]# netstat -plunt | grep nginx
tcp listen 0 128 *:80 *:* users:(("nginx",pid=3410,fd=6),("nginx",pid=3409,fd=6))
3)設定防火牆於與selinux
[root@145 ~]# firewall-cmd --set-default-zone=trusted
[root@145 ~]# setenforce 0
4)測試首頁檔案
nginx web 服務預設的首頁文件目錄為 /usr/local/nginx/html/ 在此目錄下預設有乙個名為index.html的檔案
[root@144 ~]# curl
Nginx搭建靜態資源服務配置詳解
第一種 單個server,root配置根目錄 nginx配置檔案中,server模組預設配置了location,如下 server 上述location的配置是 當我們訪問192.168.121.140 8088 或 192.168.121.140 8088,nginx會去html root 配置項...
MyBatis 框架的搭建和配置
mybatis是支援定製化sql 儲存過程以及高階對映的優秀持久層框架。mybatis 避免了幾乎所有的jdbc 和手動設定引數以及獲取結果集。mybatis可以對配置和原生map使用簡單的xml或註解,將介面和j a的pojos plain old j a objects,普通的j a物件 對映成...
ActiveRecord環境搭建和配置
activereocrd是castle中一orm框架,它對nhibernate做了進一步的封裝。1.環境搭建 a.程式集引用 注意各程式集間版本相容性 castle.activerecord.dll castle.dynamicproxy2.dll iesi.connections.dll nhib...