CentOs7 安装Tengine 并设置成系统服务,开机自动启动。
本文使用Tengine-2.1.2.tar.gz 官方下载地址:http://tengine.taobao.org/download_cn.html。
http://tengine.taobao.org/nginx_docs/cn/docs/ 文档
1、安装Tenqine
1.1安装 pcre-8.38
1:下载地址: https://sourceforge.net/projects/pcre/files/pcre/
2:解压缩pcre-xx.tar.gz包, tar -zxvf pcre-xx.tar.gz
3:进入解压缩目录,执行./configure。
4:make & make install
1.2安装zlib 1.2.8
1:获取编译安装包http://www.zlib.net/
2:解压缩zlib-1.2.8.tar.gz tar -zxvf zlib-1.2.8.tar.gz
3:进入解压缩目录,执行./configure。
4:make & make install
1.3安装openssl
1.获取openssl编译安装包,在http://www.openssl.org/source/上可以获取当前最新的版本。
2.解压缩openssl-xx.tar.gz包。
3.进入解压缩目录,执行./config
4.make & make install
1.4安装tengine
企业标准安装 ./configure --prefix=/usr --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx/nginx.pid --lock-path=/var/lock/nginx.lock --user=nginx --group=nginx --with-http_ssl_module --with-http_flv_module --with-http_stub_status_module --with-http_gzip_static_module --http-client-body-temp-path=/var/tmp/nginx/client/ --http-proxy-temp-path=/var/tmp/nginx/proxy/ --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi --http-scgi-temp-path=/var/tmp/nginx/scgi --with-pcre
5:make & make install 完成安装
6:进入cd /usr/local/nginx/ 然后查看安装后的目录 ls -l
7:手动启动Nginx /usr/local/nginx/sbin/nginx
ln -s /usr/local/nginx/sbin/nginx /etc/init.d/
2、设置为系统服务
2:如需要开机没有登陆情况下就能运行的程序在系统目录内
/lib/systemd/system
3:我希望系统开机就启动目录,所以我把文件放在系统目录内。
vim /lib/systemd/system/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
4、修改文件权限
chmod 745 nginx.service
5、设置为开机启动
systemctl enable nginx.service
3、其它命令
启动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
参考资料:
http://www.cnblogs.com/skynet/p/4146083.html
http://www.centoscn.com/CentOS/config/2015/0507/5374.html
http://down.chinaz.com/server/201112/1476_1.htm
http://www.cnblogs.com/jianxie/p/3990377.html