Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 mysql 服务器中,我有一个名为“joomla”的数据库。但http://localhost/joomla给出“错误显示错误页面:应用程序实例化错误”。我想检查我是否在 configuration.php 文件中提供了正确的用户名和密码。为此,我需要找出哪些用户对 joomla 数据库具有权限。那么我怎样才能知道呢?
http://localhost/joomla
谢谢
使用具有足够权限的帐户登录 mysql 服务器,并用于show grants for <name>获取允许的数据库列表。
show grants for <name>
但是,您将无法通过这种方式找到 MySQL 密码。