怎么在linux系统中安装配置phpmyadmin
时间:2019-12-09 10:18
一、安装phpMyAdmin图形化管理工具 在Linux 操作系统下安装phpMyAdmin,将下载的软件包“ 命令模式下的操作如下: 通过上述3 个命令将下载的软件包解压缩到 二、配置phpMyAdmin图形化管理工具 配置在phpMyAdmin 目录下的 参数设置完成后保存该文件,重新启动Apache 服务器。 在浏览器的地址栏中输入“ 相关文章教程推荐:phpmyadmin教程 以上就是怎么在linux系统中安装配置phpmyadmin的详细内容,更多请关注gxlsystem.com其它相关文章!phpMyAdmin-2.11.5-all -languages.rar
”解压缩到配置环境的根目录下,为了便于使用,可以将解压缩后的文件夹重新命名为phpMyAdmin。mv phpMyAdmin-2.11.5-all-languages.rar/var/ww/html
tar zvxf phpMyAdmin-2.11.5-all-languages.rar
mv phpMyAdmin-2.11.5-all-languages phpMyAdmin
/var/www/html/
目录下,从而完成phpMyAdmin图形化管理工具的安装。config.inc.php
文件下进行,更改如下参数的配置。//将参数PmaAbsoluteUri 的值设定为phpMyAdmin 所处的位置:
$cfg['PmaAbsoluteUri'] = 'http://localhost/phpMyAdmin';
$cfg['blowfish_secret']='cookie'; //设定访问方式为Cookie
$cfg['Servers'][$i]['host'] = 'localhost'; //设定MySQL 所在的主机名或IP 地址
$cfg['Servers'][$i]['auth_type'] = 'http'; //设定进入phpMyAdmin 管理MySQL 的方式
$cfg['Servers'][$i]['user'] = 'root'; //设定管理MySQL 的账号
$cfg['Servers'][$i]['password'] = 'root'; //设定管理MySQL 的密码
http://localhost/phpMyAdmin/
”即可打开phpMyAdmin 图形化管理主页面进行数据库操作。