用PolarDB 数据库搭建WordPress的Blog

用PolarDB 数据库搭建WordPress的Blog

Background

  • PolarDB : ALi的云数据库,兼容MySQL, PostgreSQL,Oracle

Environment

CentOS 7 x86

PolarDB创建账号

  1. ALi --> 云数据库PolarDB --> 集群列表 --> 配置与管理 --> 账号管理
  2. 账号管理 --> 创建账号 --> 账号(普通),密码
  3. 数据库管理 --> 创建数据库 --> 授权账号:自己的账号
  4. 白名单: 127.0.0.1改为0.0.0.0/0

LAMP环境

  • Linux , Apache , MySQL, PHP
  1. Apache
> yum -y install httpd httpd-manual mod_ssl mod_perl mod_auth_mysql
  1. 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
  1. 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
  1. 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
  1. 数据库配置
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
  1. 开放80端口,重启
systemctl restart httpd
  1. 配置WordPress
上一篇:促进安全数据协作,全国首个共享智能联盟标准发布


下一篇:ECS进阶训练营D3——SLB负载均衡实践