如何在CentOS/RHEL 7/6和Fedora 23中安装phpMyAdmin 4.6

phpMyAdmin 4.6发布。它是用PHP编写的管理MySQL和MariaDB的数据库,基于Web的客户端。它提供了一个用户友好的Web界面来访问和管理您的数据库。为了简化使用范围广的人,phpMyAdmin是被翻译成72种语言,并支持LTR和RTL语言。

phpMyAdmin的特点:

    • 友好的Web界面
    • 支持大部分的MySQL的功能:
      • 浏览和删除数据库,表,视图,字段和索引。
      • 创建,复制,删除,重命名和更改数据库,表,字段和索引
      • 管理MySQL用户有权限
    • 从CSV和SQL导入数据
    • 将数据导出到各种格式:CSV,SQL,XML,PDF,ISO / IEC 26300 - OpenDocument文本和电子表格,Word中,LATEX和其他
    • 管理多台数据库服务器
本文将帮助你在CentOS / RedHat的安装系统的phpMyAdmin。它要求要在服务器上安装了Apache,PHP和MySQL。如果你没有让他们阅读我们的教程如何安装它们。
第1步:启用Remi库
phpMyAdmin的最新包下Remi仓库中。使用以下命令将系统安装它。
CentOS/RHEL 7:
# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm

CentOS/RHEL 6:
# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

CentOS/RHEL 5:
# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm

Fedora 20:
# rpm -Uvh http://rpms.famillecollet.com/remi-release-20.rpm

Fedora 19:
# rpm -Uvh http://rpms.famillecollet.com/remi-release-19.rpm

Fedora 18:
# rpm -Uvh http://rpms.famillecollet.com/remi-release-18.rpm

第2步:安装phpMyAdmin
加入Remi库后,使用phpMyAdmin yum包管理器安装。所有的依赖关系将自动安装。
# yum --enablerepo=remi,remi-test  install phpMyAdmin
第3步:配置的phpMyAdmin
phpMyAdmin的默认允许从本地主机只能访问。如果你想从远程计算机访问编辑 /etc/httpd/conf.d/phpMyAdmin.conf并更新与网络的所有127.0.0.1像下面或启用phpMyAdmin的为大家服务。
Alias /phpMyAdmin /usr/share/phpMyAdmin
Alias /phpmyadmin /usr/share/phpMyAdmin

## Comment below section to allow everyone
<Directory /usr/share/phpMyAdmin/>
    <IfModule !mod_authz_core.c>
     Order Deny,Allow
     Deny from All
     Allow from 192.168.1.0/24
     Allow from ::1
   </IfModule>
</Directory>

<Directory /usr/share/phpMyAdmin/libraries/>
    Order Deny,Allow
    Deny from All
    Allow from None
</Directory>

<Directory /usr/share/phpMyAdmin/setup/lib/>
    Order Deny,Allow
    Deny from All
    Allow from None
</Directory>

<Directory /usr/share/phpMyAdmin/setup/frames/>
    Order Deny,Allow
    Deny from All
    Allow from None
</Directory>
更新phpMyAdmin的Apache配置文件后,重新启动Apache服务重新加载新的设置。
# service httpd restart
第4步:在浏览器中访问phpMyAdmin
现在你可以在浏览器中使用以下网址访问phpMyAdmin。更改 svr1.youcl.com与您的服务器IP/FQDN。
http://svr1.youcl.com/phpMyAdmin/

Login Details: Use MySQL username and password.
祝贺您,您已成功安装phpMyAdmin。单个服务器phpMyAdmin管理,我们可以通过添加多台远程MySQL服务器管理多个MySQL服务器。使用 本文中的phpMyAdmin添加多个MySQL主机。
赞(52) 打赏
未经允许不得转载:优客志 » 系统运维
分享到:

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏