Tengine官網上有個很是簡單的教程,中間並未涉及到一些經常使用的設置,因此僅供參考。一下午爲本人的安裝步驟及過程。php
配置firewalld,iptables,關閉SELINUXhtml
一、安裝必要的編譯環境好nginx
因爲Tengine安裝須要使用源代碼自行編譯,因此在安裝前須要安裝必要的編譯工具:c++
二、安裝須要的組件git
A、PCREgithub
PCRE(Perl Compatible Regular Expressions)是一個Perl庫,包括 perl 兼容的正則表達式庫。nginx rewrite依賴於PCRE庫,因此在安裝Tengine前必定要先安裝PCRE正則表達式
B、Zlib算法
Zlib是提供資料壓縮之用的函式庫,當Tengine想啓用GZIP壓縮的時候就須要使用到Zlib(http://www.zlib.net/)。緩存
C、jemalloc安全
jemalloc(https://github.com/jemalloc/jemalloc/releases/)是一個更好的內存管理工具,使用jemalloc能夠更好的優化Tengine的內存管理。
D、OpenSSL
OpenSSL 是一個強大的安全套接字層密碼庫,囊括主要的密碼算法、經常使用的密鑰和證書封裝管理功能及SSL協議,並提供豐富的應用程序供測試或其它目的使用。,安裝OpenSSL(http://www.openssl.org/source/)主要是爲了讓tengine支持Https的訪問請求。
cd /usr/local/src && wget https://www.openssl.org/source/openssl-1.1.1.tar.gz && tar zxvf openssl-1.1.1.tar.gz && cd openssl-1.1.1三、安裝Tengine
在主要核心的組件安裝完畢之後就能夠安裝Tegine了,最新版本的Tegine可從官網(http://tengine.taobao.org/)獲取。
在編譯安裝前還須要作的一件事是添加一個專門的用戶來執行Tengine。固然你也能夠用root(不建議)。
接下來纔是進行安裝:
注意配置的時候 –with-pcre 、–with-openssl、–with-jemalloc、–with-zlib的路徑爲源文件的路徑。
四、配置Tengine,設置tengine自動啓動
我但願系統開機就啓動目錄,因此我把文件放在系統目錄內。
cd /lib/systemd/system
vi nginx.service
[Unit] Description=The nginx HTTP and reverse proxy server After=syslog.target network.target remote-fs.target nss-lookup.target [Service] Type=forking PIDFile=/usr/local/nginx/logs/nginx.pid ExecStartPre=/usr/local/nginx/sbin/nginx -t ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf ExecReload=/bin/kill -s HUP $MAINPID ExecStop=/bin/kill -s QUIT $MAINPID PrivateTmp=true [Install] WantedBy=multi-user.target
修改文件權限 chmod 745 nginx.service
設置爲開機啓動 systemctl enable nginx.service
啓動nginx服務 systemctl start nginx.service
設置開機自啓動 systemctl enable nginx.service
中止開機自啓動 systemctl disable nginx.service
查看服務當前狀態 systemctl status nginx.service
從新啓動服務 systemctl restart nginx.service
查看全部已啓動的服務 systemctl list-units --type=service
打開nscd服務,緩存dns,提升RDS響應
systemctl start nscd.service
systemctl enable nscd.service
vi /etc/hosts //註釋掉下面一行 #::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
姊妹篇:
編譯安裝PHP7: http://www.javashuo.com/article/p-cwujonsk-e.html
日誌:
Tengine-Nginx: /usr/local/nginx/logs/error.log notice;
PHP-fpm: /var/log/php-fpm/error.log
PHP: /var/log/php/php-error.log