你可以使用正規表達式來隱藏多個資料庫。打開 phpMyAdmin 的設定檔。通常這個檔案位於/etc/phpmyadmin/config.inc.php
。設定 $cfg['Servers'][$i]['hide_db']
的值為正規表達式字符串,如下:
$cfg['Servers'][$i]['hide_db'] = '^(information_schema|performance_schema)$';
這將使用正規表達式來匹配需要隱藏的資料庫。在這個例子中,它將隱藏 information_schema
和 performance_schema
資料庫。
保存設定檔後,重新啟動你的 web 伺服器:
sudo service apache2 restart # 或
sudo service nginx restart
然後重新登入 phpMyAdmin,你應該能夠看到已經隱藏的資料庫。確保你有足夠的權限修改設定檔和重新啟動伺服器。