一、安装 phpMyAdmin
[root@hexingxing /]# yum install -y phpMyAdmin
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
Resolving Dependencies
...
Installed:
phpMyAdmin.noarch 0:4.0.10.19-1.el6
Dependency Installed:
dejavu-fonts-common.noarch 0:2.33-1.el6 dejavu-sans-fonts.noarch 0:2.33-1.el6
fontpackages-filesystem.noarch 0:1.41-1.1.el6 libtidy.x86_64 0:0.99.0-19.20070615.1.el6
php-fedora-autoloader.noarch 0:1.0.0-0.1.rc1.el6 php-php-gettext.noarch 0:1.0.12-1.el6
php-process.x86_64 0:5.3.3-49.el6 php-tcpdf.noarch 0:6.2.13-1.el6
php-tcpdf-dejavu-sans-fonts.noarch 0:6.2.13-1.el6 php-tidy.x86_64 0:5.3.3-49.el6
Complete!
# 以上已成功安装 phpMyAdmin
[root@hexingxing /]# cd /usr/share/
# 进入到 phpMyAdmin 的默认位置
[root@hexingxing share]# ll
...
drwxr-xr-x 9 root root 4096 May 13 18:57 phpMyAdmin
...
# 确认 phpMyAdmin 存在这个目录
[root@hexingxing share]# cp -r phpMyAdmin/ /usr/share/nginx/html
# 将 phpMyAdmin 整个目录复制到我们目前的网页目录,这个目录可能不是默认的以上位置
二、配置 phpMyAdmin
1、打开通过 http://your.domain.com/phpMyAmin/ 测试访问,将显示 phpMyAdmin 登录页面,键入用户和密码登录;
2、点击 “数据库” 项目,新建数据库,命名数据库名称(mytest),以及 排序规则(utf8_general_ci);
3、创建后,点击 mytest 数据库,即可查看该数据库里的内容,当然,此时应该是空的。
三、可能遇到的问题
1、Wordpress 安装主题和插件出现权限问题时,
① 在 wp-config.php 文件中配置以下字段(放在最后一个配置字段之前):
define('WP_TEMP_DIR', ABSPATH.'wp-content/tmp');/* WordPress 的临时目录。*/
define("FS_METHOD", "direct");
define("FS_CHMOD_DIR", 0777);
define("FS_CHMOD_FILE", 0777);
② 在 wp-content 目录下创建 tmp 和 upgrade 子目录,并为 wp-content 目录下的 languages、plugins、themes、tmp、upgrade、uploads 目录配置权限为 777
[root@hexingxing wp-content]# chmod 777 languages plugins themes tmp upgrade uploads
友情提示:本站所有文章,如无特殊说明或标注,均为何星星原创发布。与此同时,趋于近年来本站的文章内容频繁被他站盗用与机器采集,现已全局禁用网站文字内容操作,了解详情或转载文章请 点此 继续!
0 条评论