1、接下来需要配置数据库,为使用wordpress做准备

修改认证方式:

vim .../phpMyAdmin/config.inc.php

[...]
$cfg['Servers'][$i]['auth_type']     = 'http';    // Authentication method (config, http or cookie based)?
[...]
 vim  /etc/httpd/conf.d/phpMyAdmin.conf       #配置phpmyadmin

将<Directory /usr/share/phpMyAdmin/>这一段注释掉,换成以下配置

<Directory /usr/share/phpMyAdmin/>
    Options none
    AllowOverride Limit
    Require all granted
</Directory>

进入phpmyadmin,点击数据库,填写数据库名,点击创建

centos7使用wordpress布署网站(2)-LMLPHP

接下来新增用户

centos7使用wordpress布署网站(2)-LMLPHP

centos7使用wordpress布署网站(2)-LMLPHP

centos7使用wordpress布署网站(2)-LMLPHP

都做完后点执行,新用户就创建完成了,接下来打开网站,开始配置wordpress

另外,配置数据库也可以用命令行来完成,在linux上操作

mysql -u root -p        #登录数据库,root是用户名 
create database test;          #创建test数据库
CREATE USER test1@localhost IDENTIFIED BY '123456';        #创建用户,密码为123456
GRANT ALL PRIVILEGES ON test.* TO test1@localhost;          #更改test1权限
FLUSH PRIVILEGES;
exit        #退出

完成后重启httpd与mariadb服务

2、配置wordpress

centos7使用wordpress布署网站(2)-LMLPHP

接来下出现了问题,

centos7使用wordpress布署网站(2)-LMLPHP

1、chown -R apache:apache /var/www/html/*
2、chmod -R 755 /var/www/html/*

这是因为目录没有写入权限的问题,可以将html目录设置为777的权限

 html/

不过这不是很安全。可以根据错误复制后可以直接修改wp-config.php文件,就不需要再填写一些信息,而是直接进入wordprss登录界面了

mv wp-config-sample wp-config.php
 /** MySQL数据库名 */
 define('DB_NAME', '数据库名');

 /** MySQL数据库用户名 */
 define('DB_USER', '用户名');

 /** MySQL数据库密码 */
 define('DB_PASSWORD', '密码');

 /** MySQL主机 */
 define('DB_HOST', 'localhost');

 /** 创建数据表时默认的文字编码 */
 define('DB_CHARSET', 'utf8');

3、接下来继续安装

centos7使用wordpress布署网站(2)-LMLPHP

这一步就没什么问题了,就是自己设置管理员账号和密码了,设置完成后就可以进入登录界面了

centos7使用wordpress布署网站(2)-LMLPHP

04-26 01:11