shell 脚本安装lnmp
Posted luowendy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 phpinfo(); ?>" > /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的主要内容,如果未能解决你的问题,请参考以下文章