一键部署LNMP平台脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一键部署LNMP平台脚本相关的知识,希望对你有一定的参考价值。
分享一个一键部署LNMP平台脚本,设置通过systemd管理Nginx服务,好用!
#!/bin/bash
yum -y install gcc openssl-devel pcre-devel
tar xf lnmp_soft.tar.gz
cd lnmp_soft/
tar xf nginx-1.12.2.tar.gz
cd nginx-1.12.2/
./configure --with-http_ssl_module --with-http_stub_status_module
make && make install
yum install -y mariadb-server mariadb-devel php php-fpm php-mysql
systemctl enable mariadb.service --now
ss -tlnp | grep :3306
systemctl enable php-fpm.service --now
ss -tlnp | grep :9000
echo "
[Unit]
Description=The Nginx HTTP Server
After=network.target remote-fs.target nss-lookup.target
[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/bin/kill -s QUIT $MAINPID
[Install]
WantedBy=multi-user.target
" > /usr/lib/systemd/system/nginx.service
systemctl start nginx
ss -tlnp | grep :80
以上是关于一键部署LNMP平台脚本的主要内容,如果未能解决你的问题,请参考以下文章
Lnmp一键部署脚本(包含模块安装,php7,openresty+缓存等)