使用PolarDB和ECS搭建门户网站

使用PolarDB和ECS搭建门户网站

连接ECS服务器

1.打开windows cmd命令行输入窗口
2.输入 ssh root@123.123.123.123
3.输入密码,登录成功

安装LAMP环境

LAMP是指运行在Linux下的Apache、MySQL和PHP的环境。参考以下操作在云服务器上安装开发环境。
1.安装Apache服务及其扩展包

yum -y install httpd httpd-manual mod_ssl mod_perl mod_auth_mysql

2.安装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

3.安装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

搭建门户网站

1.在ECS服务器上安装git

yum -y install git

2.下载PbootCMS源码文件

cd ~ && git clone https://gitee.com/hnaoyun/PbootCMS.git

3.将安装包拷贝到Apache的wwwroot目录下

cp -r PbootCMS/* /var/www/html/

4.修改站点根目录文件权限

chmod -R a+w /var/www/html

5.向数据库中导入CMS的初始数据

sql_file="/var/www/html/static/backup/sql/"$(ls /var/www/html/static/backup/sql/) &&
mysql -hpc-uf67p8qcrgmbdvvo6.rwlb.rds.aliyuncs.com -utest_user -pPassword1213 -Dpbootcms < $sql_file

6.修改CMS系统数据库配置

cat > /var/www/html/config/database.php << EOF
<?php
return array(
    'database' => array(
        'type' => 'mysqli', // 数据库连接驱动类型: mysqli,sqlite,pdo_mysql,pdo_sqlite
        'host' => 'pc-uf67p8qcrgmbdvvo6.rwlb.rds.aliyuncs.com', // PolarDB数据库链接地址
        'user' => 'test_user', // PolarDB数据库的用户名
        'passwd' => 'Password1213', // PolarDB数据库的密码
        'port' => '3306', // 数据库端口
        'dbname' => 'pbootcms' //数据库名称
    )
);
EOF

8.重启Apache服务

systemctl restart httpd
上一篇:我的MYSQL学习心得(九) 索引


下一篇:SLB负载均衡实践