CentOS 搭建LAMP

1.使用yum命令安装 : yum -y install mysql httpd mysql-server php-mysql php mbstring

启动服务 service php start  service mysqld start

关闭防火墙 service iptables stop 令外网可以访问

关闭seleniux

验证mysql:输入命令mysql   进入mysql之后,输入show databases;

出现如下内容:


CentOS 搭建LAMP_第1张图片
mysql 成功安装并且可以运行

然后使用 quit 命令 退出mysql

验证php: 进入html文件夹 cd /var/www/html 下面vi一个phpinfo的php文件

然后使用浏览器访问虚拟服务器地址和路径



CentOS 搭建LAMP_第2张图片
phpinfo

大功告成

你可能感兴趣的:(CentOS 搭建LAMP)