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
推荐使用 YUM 安装 y um install openssl 和 yum install openssl-devel。
其它安装方式:
1.获取 openssl 编译安装包,在 http://www.openssl.org/source/上可以获取当前最新的版本。
2.解压缩 openssl-xx.tar.gz 包。
3.进入解压缩目录,执行./config
4.make & make install
1.4 安装 tengine
1:下载稳定版本的软件包 官方网址:http://tengine.taobao.org/download_cn.html
2:解压缩软件包 tengine-2.1.2.tar.gz tar -zxvf tengine-2.1.2.tar.gz
3:进入解压缩目录 cd zxvf tengine-2.1.2
4:然后执行 ./configure --prefix=/usr/local/nginx (说明:--prefix=/usr/local/nginx 是安装路径,不默认就是这个,可以自定义位置)
5:make & make install 完成安装
6:进入 cd /usr/local/nginx/ 然后查看安装后的目录 ls -l
7:手动启动 Nginx /usr/local/nginx/sbin/nginx
2、设置为系统服务
1:系统用户登录系统后启动的服务 的目录
/usr/lib/systemd/system
2:如需要开机没有登陆情况下就能运行的程序在系统目录内
/lib/systemd/system
3:我希望系统开机就启动目录,所以我把文件放在系统目录内。
vim /lib/systemd/system/nginx.service 创建文件
[java] view plain copy
- [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、修改文件权限
[java] view plain copy
- chmod 745 nginx.service
5、设置为开机启动
[java] view plain copy
- 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
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于