Using phpmyadmin for multiple local and remote MySQL Servers_MySQL
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.

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!

热AI工具

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

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

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

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

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

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

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

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

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