centos下一键安装 lamp
时间: 2023-09-30 11:09:04 浏览: 122
centos下安裝lamp
在 CentOS 上一键安装 LAMP 环境,可以使用以下脚本:
```shell
#!/bin/bash
# 安装 Apache
yum install httpd -y
# 开机启动 Apache
systemctl enable httpd.service
# 启动 Apache
systemctl start httpd.service
# 安装 MySQL
yum install mariadb mariadb-server -y
# 开机启动 MySQL
systemctl enable mariadb.service
# 启动 MySQL
systemctl start mariadb.service
# 设置 MySQL root 密码
mysql_secure_installation
# 安装 PHP 和相应的扩展
yum install php php-mysql php-gd php-xml php-mbstring -y
# 重启 Apache
systemctl restart httpd.service
```
将以上代码保存为一个 sh 脚本文件,例如 `lamp.sh`,然后在终端中执行 `sh lamp.sh` 即可。在执行过程中,可能会需要输入 MySQL root 密码,按照提示进行即可。
阅读全文