[root@LAMP ~]# systemctl stop firewalld
[root@LAMP ~]# systemctl disable firewalld
[root@LAMP ~]# vim /etc/selinux/config
.....
SELINUX=disabled
.....
[root@LAMP ~]# setenforce 0 //执行这个生效配置
注:因为centos 7源里面没有mysql的软件包,所以我们用mariadb数据库来代替mysql数据库
如果实在想要用mysql数据库,那么还需要另行下mysql对应的rpm包
[root@LAMP ~]# wget http://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm
[root@LAMP ~]# rpm -ivh mysql57-community-release-el7-11.noarch.rpm
##下载包含mysql数据库的yum源仓库,然后在进行下载即可,如果系统存在一些mariadb包,那么请使用yum remove -y mariadb* 来进行删除即可
2.安装LAMP环境所需的软件`
[root@LAMP ~]# yum install -y httpd mariadb mariadb-server php php-mysql
#执行以上这个命令来进行安装即可
3.然后我们启动Apache服务器
[root@LAMP ~]# systemctl start httpd
[root@LAMP ~]# ss -tan | grep 80
LISTEN 0 128 [::]:80 [::]:*
4.启动完成以后,我们编写一个PHP脚本来看看httpd能否解析
[root@LAMP ~]# echo "" > /var/www/html/index.php
#编写一个如上的PHP脚本
浏览器访问测试
5.开启mariadb数据库然后进行初始化操作
[root@LAMP ~]# systemctl start mariadb
[root@LAMP ~]# ss -tan | grep 3306
LISTEN 0 50 *:3306 *:*
[root@LAMP ~]# mysql_secure_installation
#初始化数据库
6.我们登录测试一下能否登录上去
[root@LAMP ~]# mysql -uroot -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 10
Server version: 5.5.65-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
7.接下来我们上传WordPress博客系统到Linux服务器上进行解压操作
[root@LAMP /]# ls
wordpress-4.9.4-zh_CN.tar.gz
[root@LAMP /]# tar -xf wordpress-4.9.4-zh_CN.tar.gz -C /var/www/html/
#然后我们进行解压操作解压到我们创建的目录下
8.然后我们就可以去浏览器上访问WordPress然后进行安装操作了
输入:IP地址/wordpress 即可访问
#注:如果不想要输入wordpress 向直接输入 IP地址就可以访问那么就需要修改httpd的配置文件了,如下:
[root@LAMP ~]# vim /etc/httpd/conf/httpd.conf
119 DocumentRoot "/var/www/html/WordPress"
124 <Directory "/var/www/html/WordPress">
125 AllowOverride None
126 # Allow open access:
127 Require all granted
128 </Directory>
#修改以上指定的行即可
9.然后我们进入WordPress的安装界面
然后点击现在就开始
如果红箭头指的地方在mariadb数据库里面没有这个数据库,我们需要执行以下命令去进行创建 MariaDB [(none)]> create database wordpress;
到了以下这一步就会要求你去指定的目录下创建一个文件并且把页面给出的内容复制进入我们直接操作即可
接下来我们就可以进行设置站点的各种信息了
最后的登录界面如下
**至此整个环境就搭建完成了,还是有很多不足的地方,待改进,还是一位正在努力的小白网工**