shell 脚本安装lnmp

  • 编写脚本:
[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显示页面即可成功!

猜你喜欢

转载自www.cnblogs.com/wendyluo/p/13173540.html