shell脚本一键部署lnmp
时间: 2023-08-27 20:22:45 浏览: 183
LNMP平台一键部署脚本
对于一键部署LNMP(Linux + Nginx + MySQL + PHP)环境的shell脚本,你可以尝试使用以下示例作为参考:
```shell
#!/bin/bash
# 安装Nginx
apt-get update
apt-get install -y nginx
# 安装MySQL
apt-get install -y mysql-server mysql-client
# 安装PHP
apt-get install -y php-fpm php-mysql
# 配置Nginx
cat > /etc/nginx/sites-available/default << EOF
server {
listen 80;
server_name localhost;
root /var/www/html;
index index.php index.html;
location / {
try_files \$uri \$uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
}
}
EOF
# 重启Nginx和PHP-FPM
service nginx restart
service php7.2-fpm restart
# 创建测试文件
echo "<?php phpinfo(); ?>" > /var/www/html/info.php
```
这个脚本会在Linux系统上安装Nginx、MySQL和PHP,并配置Nginx以支持PHP文件。最后,它会在/var/www/html目录下创建一个简单的phpinfo测试文件。
请注意,这只是一个简单的示例,实际使用中可能需要根据系统和需求进行适当的修改。另外,为了确保脚本能够正确执行,可能需要以root权限运行或者使用sudo命令。
希望这个示例能对你有所帮助!如果还有其他问题,请随时提问。
阅读全文