码迷,mamicode.com
首页 > 系统相关 > 详细

shell 脚本安装lnmp

时间:2020-06-21 20:02:38      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:dev   clu   ash   class   doc   shel   dex   star   cat   

  • 编写脚本:
[root@localhost ~]# vim /shell/lnmp.sh

#!/bin/bash
yum -y install epel-release &> /dev/null
yum -y clean all &> /dev/null
yum -y install nginx php php-fpm mariadb-server &> /dev/null

sed -i "45c index index.php  index.html index.htm;" /etc/nginx/nginx.conf.default
sed -i "65c location ~ \\\.php$ {"  /etc/nginx/nginx.conf.default
sed -i "66c root           html;"  /etc/nginx/nginx.conf.default
sed -i "67c fastcgi_pass   127.0.0.1:9000;"  /etc/nginx/nginx.conf.default
sed -i "68c fastcgi_index  index.php;"  /etc/nginx/nginx.conf.default
sed -i "69c fastcgi_param  SCRIPT_FILENAME \$document_root\$fastcgi_script_name;"  /etc/nginx/nginx.conf.default
sed -i "70c include        fastcgi_params;"  /etc/nginx/nginx.conf.default
sed -i "71c }"  /etc/nginx/nginx.conf.default

cp -rf /etc/nginx/nginx.conf.default /etc/nginx/nginx.conf
echo -e "<?php\nphpinfo();\n?>" > /usr/share/nginx/html/index.php
systemctl restart php-fpm
systemctl restart nginx
systemctl stop firewalld
setenforce 0
  •  执行脚本:
[root@localhost ~]# cd /shell/
[root@localhost shell]# sh lnmp.sh
  •  在网页里登入ip显示页面即可成功!

shell 脚本安装lnmp

标签:dev   clu   ash   class   doc   shel   dex   star   cat   

原文地址:https://www.cnblogs.com/wendyluo/p/13173540.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!