在联网环境下,切换到root用户下安装
一、安装Apache(httpd)
1、通过源代码预编译安装
yum install -y httpd
(若安装存在问题,请先关闭防火墙
http://blog.csdn.net/qq_34989708/article/details/73603638)
2、启动/停止/重启服务/查看状态
service httpd start service httpd stop service httpd restart service httpd status
若启动服务时,提示
httpd:httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain for ServerName
编辑httpd.conf的配置文件
Vi /etc/httpd/conf/httpd.conf
找到如下内容:
#ServerName www.example.com:80
更改为
ServerName localhost:80
3、 启动服务,在浏览器中输入localhost:端口号(默认80),如果如下图显示,则安装成功
二、安装mysql数据库
1、安装之前,先查看linux服务器内置的mysql
rpm -qa | grep mysql //查看是否已安装mysql数据库
若有先将其卸载
rpm -e mysql // 普通卸载模式
rpm -e --nodeps mysql //强制卸载模式
MySQL数据库,新版本已经更名为Mariadb(将命令中的mysql替换即可)
2、通过源代码预编译安装
yum install -y mysql
3、启动/停止/重启服务/查看状态
service mysqld start service mysqld stop service mysqld restart service mysqld status
4、若开启服务时提示:mysql: unrecognized service,
是因为没有安装mysql-server
解决:在终端下输入 yum install mysql-server
安装,随后重启mysql服务
5、连接mysql数据库,即可进入mysql,如下图
mysql –uroot –p
默认无密码
三、安装PHP
1、通过源代码预编译安装
yum -y install php
使用下面的命令安装php对mysql的支持:
yum install php-mysql php-gd libjpeg* php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-bcmath php-mhash
2、重启mysqld和httpd服务:
service mysqld restart
service mysqld restart
四、进行环境测试
1、查看httpd配置文件可知默认项目路径如下:
/var/www/html
2、在web目录下新建sex.php文件,并编辑保存
3、在浏览器中输入 localhost:80/sex.php,运行结果证明环境安装成功