电话
13363039260
首先去官网下载压缩包:https://www.phpmyadmin.net/
下载好之后,上传压缩包到服务器上,解压phpMyAdmin-4.8.3-all-languages.zip到网站的根目录(/xxx/xxx/html)中
unzip -d /xxx/xxx/html/ phpMyAdmin-4.8.3-all-languages.zip
复制phpmyadmin的简单配置文件config.sample.inc.php,重名config.inc.php为作为默认配置文件
cp -a /xxx/xxx/html/phpMyAdmin-4.8.3-all-languages/config.sample.inc.php /xxx/xxx/html/phpMyAdmin-4.8.3-all-languages/config.inc.php
编辑配置文件config.inc.php
vim /xxx/xxx/html/phpMyAdmin-4.8.3-all-languages/config.inc.php
在=''中随便添加些内容,防止报错
创建软链接
ln -s /xxx/xxx/html/phpMyAdmin-4.8.3-all-languages/ /xxx/xxx/html/pma
在浏览器输入http://xxx.xxx.xxx/pma/ 貌似不能访问,在同一个域名下共用一个80端口不加目录名,进行跳转在网上找了一圈,没有找到解决方法,多数都是通过两个域名来实现,一个跳wordpress,一个跳phpmyadmin,所以这我还是通过客户端的方式来连接数据库。
到此基本环境就搭建好了。