tencentyun / wafer-php-server-sdk

Wafer - 企业级微信小程序全栈方案
https://github.com/tencentyun/wafer
Other
251 stars 62 forks source link

PHP 业务环境支持 MySQL 扩展 #1

Closed techird closed 7 years ago

techird commented 7 years ago

背景

腾讯云默认的一站式解决方案购买的 PHP 业务服务器,默认并没有安装 MySQL 扩展。

解决方法

对于现有的业务服务器,执行下面 4 行代码即可安装 MySQL 扩展。

wget 'https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/remi.repo' -O /etc/yum.repos.d/remi.repo
yum --enablerepo=remi-php56 -y update php
yum --enablerepo=remi-php56 -y install php-mysql
service php-fpm restart

新购买一站式解决方案的用户,镜像已经包含 MySQL 扩展,无需安装。