美文网首页
CentOS 搭建LAMP

CentOS 搭建LAMP

作者: Radical | 来源:发表于2016-12-16 14:49 被阅读0次

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;

出现如下内容:

mysql 成功安装并且可以运行

然后使用 quit 命令 退出mysql

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

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

phpinfo

大功告成

相关文章

网友评论

      本文标题:CentOS 搭建LAMP

      本文链接:https://www.haomeiwen.com/subject/kmmnmttx.html