首页 数据库 mysql教程 Using phpmyadmin for multiple local and remote MySQL Servers_MySQL

Using phpmyadmin for multiple local and remote MySQL Servers_MySQL

Jun 01, 2016 pm 01:12 PM

phpmyadmin

Normally we need a client software to access MySQL server whether it is remote server or local. Most of the developers who use MySQL as back end database use phpmyadmin which is a web application. But when it comes to access the remote database, we use different client applications. MySQL Workbench is the official MySQL Client application/software which does pretty much good job for most of the cases. That’s why I think most of the developers choose this. In Windows I used to use SQLYog which is not yet free.

When I come to Ubuntu, which is my day to day development operating system, MySQL Workbench really sucks. It crashes everytime when I try to execute even any simple select queries. Several times I have felt it crashes without any notification, warning specially when I am in the middle of execution of UPDATE/INESRT statements. Becuase of this, I have faced problems qutie a lot since long time. Now its time to search for the alternative of it and I found phpmyadmin as a quite better solution for the moment.

Configuring phpmyadmin to manage multiple local and remote MySQL Servers

I assume that web server (Apache), PHP and phpmyadmin are already installed in the machine. phpmyadmin contains a configuration file named config.inc.php in the phpmyadmin’s main folder. Intially if you don’t find this file then you need to copy/rename config.sample.inc.php.

First of all lets see the main configurations in this file. The array named$cfgholds all the phpmyadmin’s setting values and$cfg['Servers']contains the different server’s configurations in another numerical index $i:
Initialize the$iindex variable for the array, you don’t have to do this but just make sure it exists almost on the top of the server configurations.

$i = 0;
登录后复制

The array for phpmyadmin in this case only works with non-zero numeric index, so lets increment index variable$iand start adding first server information. This first block normally exists there, uncomment if it is commented.

$i++;/* Authentication type */$cfg['Servers'][$i]['auth_type'] = 'config';$cfg['Servers'][$i]['user'] = 'your_db_user';$cfg['Servers'][$i]['password'] = 'your_db_password';/* Server parameters */$cfg['Servers'][$i]['host'] = 'your_db_host';
登录后复制

Note:Here theauth_typeis for whether you want to enter the username and password or you want directly logged into server without asking to give username and password every time you want to access. So if you want to enter the username and password then make it‘cookie’or‘config’if you want automatically logged into phpmyadmin without promoting to enter username and password.
Now repeat the above configurations to add other servers:

$i++;/* Authentication type */$cfg['Servers'][$i]['auth_type'] = 'config';$cfg['Servers'][$i]['user'] = 'your_another_db_user';$cfg['Servers'][$i]['password'] = 'your_another_db_password';/* Server parameters */$cfg['Servers'][$i]['host'] = 'your_another_db_host';
登录后复制

You can repeat this as many times as you want. Depending upon theauth_typethat you set, you will be prompted to select server on the login screen. If not, you will see a drop down on the left frame of the phpmyadmin’s screen to switch the server.

Using phpmyadmin for multiple local and remote MySQL Servers_MySQLRaju Gautam

Zend Certified Engineer – PHP5, Solution Architect, Senior Web Development Professional

I started my career as very basic IT professional for a year, then as per my interest I swiftly moved my career in S/W development as VB/ASP programmer and went through RoR, Perl and PHP and have continued with PHP.

From the 10 years of total professional experiences, I have led few groups of different numbers of technical members in them. So I have mostly dealt with the technical teams and acted as a mediator between the team and the management team as well as the clients. I worked as Team Leader for 3.5 years, as Head Of Department for 3 years and Solution Architect (Technical Leader) for 1 year and handled from 3 to 20 members in a team. So managing as a leader (not as a manager), assigning them proper tasks as per their skill sets so that they become happy while working on the task and help them whenever needed were my major responsibilities during my leadership experiences.

Specialties: PHP, Zend, YII, CodeIgniter, Joomla, Magento, Weh Services, API, XML, JavaScript (jQuery, Mootools), MySQL, PgSQL, HTML, CSS, RoR, Perl, ASP!

本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳图形设置
2 周前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您听不到任何人,如何修复音频
2 周前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

如何使用Alter Table语句在MySQL中更改表? 如何使用Alter Table语句在MySQL中更改表? Mar 19, 2025 pm 03:51 PM

本文讨论了使用MySQL的Alter Table语句修改表,包括添加/删除列,重命名表/列以及更改列数据类型。

如何为MySQL连接配置SSL/TLS加密? 如何为MySQL连接配置SSL/TLS加密? Mar 18, 2025 pm 12:01 PM

文章讨论了为MySQL配置SSL/TLS加密,包括证书生成和验证。主要问题是使用自签名证书的安全含义。[角色计数:159]

您如何处理MySQL中的大型数据集? 您如何处理MySQL中的大型数据集? Mar 21, 2025 pm 12:15 PM

文章讨论了处理MySQL中大型数据集的策略,包括分区,碎片,索引和查询优化。

哪些流行的MySQL GUI工具(例如MySQL Workbench,PhpMyAdmin)是什么? 哪些流行的MySQL GUI工具(例如MySQL Workbench,PhpMyAdmin)是什么? Mar 21, 2025 pm 06:28 PM

文章讨论了流行的MySQL GUI工具,例如MySQL Workbench和PhpMyAdmin,比较了它们对初学者和高级用户的功能和适合性。[159个字符]

如何使用Drop Table语句将表放入MySQL中? 如何使用Drop Table语句将表放入MySQL中? Mar 19, 2025 pm 03:52 PM

本文讨论了使用Drop Table语句在MySQL中放下表,并强调了预防措施和风险。它强调,没有备份,该动作是不可逆转的,详细介绍了恢复方法和潜在的生产环境危害。

您如何用外国钥匙代表关系? 您如何用外国钥匙代表关系? Mar 19, 2025 pm 03:48 PM

文章讨论了使用外国密钥来代表数据库中的关系,重点是最佳实践,数据完整性和避免的常见陷阱。

如何在JSON列上创建索引? 如何在JSON列上创建索引? Mar 21, 2025 pm 12:13 PM

本文讨论了在PostgreSQL,MySQL和MongoDB等各个数据库中的JSON列上创建索引,以增强查询性能。它解释了索引特定的JSON路径的语法和好处,并列出了支持的数据库系统。

如何保护MySQL免受常见漏洞(SQL注入,蛮力攻击)? 如何保护MySQL免受常见漏洞(SQL注入,蛮力攻击)? Mar 18, 2025 pm 12:00 PM

文章讨论了使用准备好的语句,输入验证和强密码策略确保针对SQL注入和蛮力攻击的MySQL。(159个字符)

See all articles