一:创建PolarDB数据库账号
登录进入阿里云管理控制台
在阿里云控制台首页左侧导航栏找到产品与服务->云数据库PolarDB
单击左侧集群列表,单击集群ID,进入集群详情界面
点击配置与管理->账号管理->创建账号
完成后单击左侧导航栏的数据库管理->创建数据库
单击集群白名单->配置,地址改为0.0.0.0/0,单击确定
二:连接ECS服务器
通过电脑终端的ssh连接
三:安装LAMP环境
//安装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
//下载PbootCMS源码文件
cd ~ && git clone https://gitee.com/hnaoyun/PbootCMS.git
//将安装包拷贝到Apache的wwwroot目录下
cp -r PbootCMS/* /var/www/html/
//修改站点根目录文件权限
chmod -R a+w /var/www/html
//初始化数据库pbootcms的表结构和数据
//test_user为步骤二中创建的数据库账号。
//Password1213步骤二中创建的数据库密码。
sql_file="/var/www/html/static/backup/sql/"$(ls /var/www/html/static/backup/sql/) &&
mysql -h数据库连接地址 -utest_user -pPassword1213 -Dpbootcms < $sql_file
//修改CMS系统数据库配置
cat > /var/www/html/config/database.php << EOF
<?php
return array(
'database' => array(
'type' => 'mysqli', // 数据库连接驱动类型: mysqli,sqlite,pdo_mysql,pdo_sqlite
'host' => '数据库连接地址', // PolarDB数据库链接地址
'user' => 'test_user', // PolarDB数据库的用户名
'passwd' => 'Password1213', // PolarDB数据库的密码
'port' => '3306', // 数据库端口
'dbname' => 'pbootcms' //数据库名称
)
);
EOF
开启安全组的80端口开放
重启Apache
systemctl restart httpd
输入公网IP即可进入