通过XAMPP访问phpmyadmin管理mysql数据库
原文地址:http://blog.****.net/u014800380/article/details/52397166
XAMPP(Apache+MySQL+PHP+PERL)是一个功能强大的建 XAMPP 软件站集成软件包,轻巧,用起来很方便。它提供了强大的phpmyadmin数据库管理工具,让使用者对数据库的使用和管理得心应手。对于不能在本地打开phpmyadmin的问题,我的解决方案如下:
MySQL有一个默认的专用端口:3306,所以,如果你之前独立安装了MySQL,那么3306端口已经被占用。安装XAMPP集成的MySQL时,必须重新设置独立的端口,否则是不能访问phpmyadmin的。
修改方法也很方便,打开XAMPP的控制面板,找到mysql右侧的config,点击,会出现my.ini的选择项,这个就是mysql的配置文件了。也可以在XAMPP的安装路径下找:\xampp\mysql\bin\my.ini
如图中所示,将端口port改成3307;当然只是修改端口,还是访问不了,还要去修改phpmyadmin的配置文件。
打开xampp目录(找到xampp的安装目录),打开phpmyadmin的目录,在该目录下找到config.inc.php,即:\xampp\phpmyadmin\config.inc.php。
- <?php
- /*
- * This is needed for cookie based authentication to encrypt password in
- * cookie
- */
- $cfg['blowfish_secret'] = 'xampp'; /* YOU SHOULD CHANGE THIS FOR A MORE SECURE COOKIE AUTH! */
- /*
- * Servers configuration
- */
- $i = 0;
- /*
- * First server
- */
- $i++;
- /* Authentication type and info */
- $cfg['Servers'][$i]['auth_type'] = 'config';
- $cfg['Servers'][$i]['user'] = 'username'; //mysql用户名
- $cfg['Servers'][$i]['password'] = 'password'; //mysql密码
- $cfg['Servers'][$i]['extension'] = 'mysqli'; //扩展配置,若访问出现没有配置mysqli等错误,加上这个。默认是有的
- $cfg['Servers'][$i]['AllowNoPassword'] = true;
- $cfg['Lang'] = '';
- /* Bind to the localhost ipv4 address and tcp */
- $cfg['Servers'][$i]['host'] = '127.0.0.1';
- $cfg['Servers'][$i]['connect_type'] = 'tcp';
- /* User for advanced features */
- $cfg['Servers'][$i]['controluser'] = 'pma';
- $cfg['Servers'][$i]['controlpass'] = '';
- /* Advanced phpMyAdmin features */
- $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
- $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
- $cfg['Servers'][$i]['relation'] = 'pma_relation';
- $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
- $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
- $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
- $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
- $cfg['Servers'][$i]['history'] = 'pma_history';
- $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
- $cfg['Servers'][$i]['tracking'] = 'pma_tracking';
- $cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
- $cfg['Servers'][$i]['recent'] = 'pma_recent';
- $cfg['Servers'][$i]['table_uiprefs'] = 'pma_table_uiprefs';
- /*
- * End of servers configuration
- */
- ?>
然后在$cfg['Lang'] =" "; 后加入以下代码即可:
- $cfg['Servers'][$i]['port'] = '3307'
保存文件,重启apache,确保mysql打开,在地址栏输入localhost/phpmyadmin,就可以直接进入phpmyadmin的管理界面了,如图所示:
版权声明:本文为博主原创文章,未经博主允许不得转载。
相关推荐
- 应用托管在SAE不登录也能通过 phpmyadmin 管理数据库
- 源码编译LAMP架构,phpMyadmin管理数据库,增加xcache加速功能,通过ab测试效果。...
- 通过Grafana访问Mysql/MariaDB -- Web端数据库管理、分析、可视化工具
- 建立ssh隧道远程访问phpmyadmin来管理mysql数据库
- mysql数据库如何安装phpmyadmin图形管理器
- Ubuntu 安装 PhpMyAdmin 管理 MySQL 数据库
- MAMP PRO 数据库 phpmyadmin 或 终端能访问 使用 Navicat 连接报错 2003 Can connect to MySQL server on
- mysql数据库精简绿色版与windows系统下phpmyadmin管理mysql
- 小白通过JDBC在AndroidStudio一步步来访问MYSQL数据库
- Labview通过Database Connectivity Toolkit工具访问MySQL数据库的方法(从安装MySQL数据库到Labview程序示例)
- VMWare ESX/ESXi 虚拟机硬盘的厚置备(Thick Provision)与精简置备(Thin Provision)的转换
- Windows10上通过VMware14安装macOS 10.12全步骤讲解