虚拟机中CentOS 7下PHP环境配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了虚拟机中CentOS 7下PHP环境配置相关的知识,希望对你有一定的参考价值。

      为了简单起见,虚拟机网卡设置为桥接模式

       1.yum install  httpd php

       2.yum install mariadb

       3.启动mariadb        

systemctl start mariadb.service #启动MariaDB

systemctl stop mariadb.service #停止MariaDB

systemctl restart mariadb.service #重启MariaDB

systemctl enable mariadb.service #设置开机启动

创建一个新用户用来远程访问

mysql -u root -p    进入数据库
user mysql; #使用mysql系统数据库 insert into user(Host,User,Password) values(‘%‘,‘test‘,PASSWORD(‘123‘)); #插入一个名为test的新用帐号为test,密码为123,可根据自身需要自行修改 Update user set Password=PASSWORD(‘123‘) where User=‘root‘ #将root密码改为123,作为重置root密码之用 select * from user; #查看用户是否加入

grant all privileges on *.* to [email protected]‘%‘ identified by ‘123‘;     test为账号,%为主机地址,目前代表所有 123代表密码

flush privileges; 刷新

select user,host from user; #查看用户是否加入

 

       4.关闭防火墙为是了让主机可以访问虚拟机中网站       

systemctl stop firewalld.service #停止firewall

systemctl disable firewalld.service #禁止firewall开机启动

5.主机打开虚拟机IP即可访问

6.测试PHP

cd /var/www/html

vi index.php #输入下面内容

<?php

phpinfo();

?>

:wq! #保存退出

在客户端浏览器输入服务器IP地址,可以看到如下图所示相关的配置信息!

技术分享

 

 

注意:apache默认的程序目录是/var/www/html

权限设置:chown apache.apache -R /var/www/html

至此,CentOS 7.0安装配置LAMP服务器(Apache+PHP+MariaDB)教程完成!

 
 

 


 
 

 

 

以上是关于虚拟机中CentOS 7下PHP环境配置的主要内容,如果未能解决你的问题,请参考以下文章

2016-11-10:win7下VMware虚拟机中CentOS6.5网络配置

VMware虚拟机中Centos7网络配置及ping不通思路

虚拟机中的centos在nat模式下连不上外网

Vmware虚拟机中centOS7安装图文教程

虚拟机中对centOS7.4配置静态ip

VMware下CentOS7虚拟机中基于Docker的Hadoop的完全分布式环境搭建