用PolarDB 数据库搭建WordPress的Blog
Background
- PolarDB : ALi的云数据库,兼容MySQL, PostgreSQL,Oracle
Environment
CentOS 7 x86
PolarDB创建账号
- ALi --> 云数据库PolarDB --> 集群列表 --> 配置与管理 --> 账号管理
- 账号管理 --> 创建账号 --> 账号(普通),密码
- 数据库管理 --> 创建数据库 --> 授权账号:自己的账号
- 白名单: 127.0.0.1改为0.0.0.0/0
LAMP环境
- Linux , Apache , MySQL, PHP
- Apache
> yum -y install httpd httpd-manual mod_ssl mod_perl mod_auth_mysql
- PHP
> yum -y install php php-mysql gd php-gd gd-devel php-xml php-common php-mbstring php-ldap php-pear php-xmlrpc php-imap
- MySQL
> wget http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm
> yum -y install mysql57-community-release-el7-10.noarch.rpm
> yum -y install mysql-community-server
# 启动MySQL
> systemctl start mysqld
- Git
> yum -y install git
> cd ~ && git clone https://gitee.com/hnaoyun/PbootCMS.git # PbootCMS源码文件
> cp -r PbootCMS/* /var/www/html/
> chmod -R a+w /var/www/html
- 数据库配置
cat > /var/www/html/config/database.php << EOF
<?php
return array(
'database' => array(
'type' => 'mysqli', // 数据库连接驱动类型: mysqli,sqlite,pdo_mysql,pdo_sqlite
'host' => '数据库连接地址', // PolarDB数据库链接地址
'user' => 'dmy', // PolarDB数据库的用户名
'passwd' => 'adsf1234', // PolarDB数据库的密码
'port' => '3306', // 数据库端口
'dbname' => 'user_db' //数据库名称
)
);
EOF
- 开放80端口,重启
systemctl restart httpd
- 配置WordPress