MysqL服务器中MysqL与information_schema数据库是系统数据库了,这个对于我们来讲几乎没什么多大的用处,但我们是不能删除他们的他们是关键的,那么要如何隐藏MysqL与information_schema数据库呢,下面我们一起来看看隐藏它们的方法。
本文收集内容:
PHPMyAdmin隐藏多个数据库(information_schema|MysqL|test)
PHPMyAdmin隐藏多个数据库 information_schema|MysqL|test
编辑/libraries/config.default.PHP
$cfg['Servers'][$i]['hide_db'] = 'information_schema'
$cfg['Servers'][$i]['hide_db'] = '(information_schema|MysqL|test)'
#如果想要隐藏全部以hf开头的数据库,可以使用'^hf',如果想隐藏一个列表,可以使用'(database|database|...)'的形式
#补充:3.3.3以上版本
$cfg['ShowChgPassword'] = false;