天天看點

centos 通過源碼編譯安裝openresty

 簡易步驟 :

# 下載下傳 openresty
[[email protected] test]# wget https://openresty.org/download/openresty-1.15.8.1.tar.gz  
# 檢視
[[email protected] openresty-1.15.8.1]# ls 
#解壓縮

[[email protected] test]# tar zxf openresty-1.15.8.1.tar.gz  
# 檢視解壓縮的檔案
[[email protected] test]# ls    
# 進入解壓縮
[[email protected] openresty-1.15.8.1]# cd openresty-1.15.8.1/    
# 檢視是否有config 檔案
[[email protected] openresty-1.15.8.1]# ls -l configure  
# 建立openresty 指定安裝目錄
[[email protected] openresty-1.15.8.1]# mkdir /usr/local/openstry 
# 安裝gcc 依賴
[[email protected] openresty-1.15.8.1]# yum install gcc gcc-c++  

# 安裝依賴
[[email protected] openresty-1.15.8.1]# yum install pcre-devel -y  
# 安裝openssl 依賴
[[email protected] openresty-1.15.8.1]# yum install -y openssl-devel 

# 指定程式安裝位置
[[email protected] openresty-1.15.8.1]# ./configure  --prefix=/usr/local/openresty  

# 編譯
[[email protected] openresty-1.15.8.1]# gmake -j2 
# 安裝
[[email protected] openresty-1.15.8.1]# make install  
# 檢視安裝的目錄
[[email protected] openresty]# ls -lh /usr/local/openresty/
total 252K
drwxr-xr-x.  2 root root  123 Jan 21 15:13 bin
-rw-r--r--.  1 root root  23K Jan 21 15:13 COPYRIGHT
drwxr-xr-x.  6 root root   56 Jan 21 15:13 luajit
drwxr-xr-x.  6 root root  116 Jan 21 15:13 lualib
drwxr-xr-x.  6 root root   54 Jan 21 15:13 nginx
drwxr-xr-x. 47 root root 4.0K Jan 21 15:13 pod
-rw-r--r--.  1 root root 222K Jan 21 15:13 resty.index
drwxr-xr-x.  5 root root   47 Jan 21 15:13 site
           

繼續閱讀