如何从 phpmyadmin 查找 mySQL 服务器 IP 地址

发布于 2024-11-17 05:41:19 字数 109 浏览 0 评论 0原文

我可以访问我的服务器的 phpmyadmin。但是我怎样才能从phpmyadmin找到mysql的IP地址呢?我的网络服务器和 mysql 使用不同的 IP。

有什么办法可以查出这一点吗?

I have access to my server's phpmyadmin. But how can I find that mysql's Ip address from phpmyadmin. My webserver and mysql is using different IPs.

Is there any way to find this out?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

萤火眠眠 2024-11-24 05:41:19

SQL 查询SHOW VARIABLES WHERE Variable_name = 'hostname' 将显示 MySQL 服务器的主机名,您可以轻松解析为它的 IP 地址。

SHOW VARIABLES WHERE Variable_name = 'port' 将为您提供端口号。

您可以在 MySQL 手册中找到有关此内容的详细信息:12.4.5.41。 SHOW VARIABLES 语法与 5.1.4 相同。服务器系统变量

The SQL query SHOW VARIABLES WHERE Variable_name = 'hostname' will show you the hostname of the MySQL server which you can easily resolve to its IP address.

SHOW VARIABLES WHERE Variable_name = 'port' Will give you the port number.

You can find details about this in MySQL's manual: 12.4.5.41. SHOW VARIABLES Syntax and 5.1.4. Server System Variables

佼人 2024-11-24 05:41:19

MySQL 并不关心它的 IP 地址。您可以获得的最接近的是主机名:

select * from GLOBAL_variables where variable_name like 'hostname';

MySQL doesn't care what IP its on. Closest you could get would be hostname:

select * from GLOBAL_variables where variable_name like 'hostname';
我不咬妳我踢妳 2024-11-24 05:41:19
select * from SHOW VARIABLES WHERE Variable_name = 'hostname';
select * from SHOW VARIABLES WHERE Variable_name = 'hostname';
↘紸啶 2024-11-24 05:41:19

服务器的地址存储在 config.php

The server's address is stored in config.php

围归者 2024-11-24 05:41:19

作为替代方案,由于您知道主机名,因此可以通过 Web 服务器的主机名解析数据库服务器 IP。

http://php.net/manual/en/function.gethostbyname.php

As an alternative, since you know the hostname, resolve the database server IP via hostname from the web server.

http://php.net/manual/en/function.gethostbyname.php

你的他你的她 2024-11-24 05:41:19

您可以利用 phpmyadmin 界面并导航到变量,然后搜索主机名并将其转换为下面屏幕截图中的 IP 地址:

在此处输入图像描述

在此处输入图像描述

在此处输入图像描述

You can utilize the phpmyadmin interface and navigate to variables, then search for hostname and convert it to IP Address in the screenshots below:

enter image description here

enter image description here

enter image description here

何时共饮酒 2024-11-24 05:41:19

你可以 ssh 到你的服务器并运行这个命令

 ln -s /usr/share/phpmyadmin /var/www/phpmyadmin

它对我有用..

You can ssh to your server and run this command

 ln -s /usr/share/phpmyadmin /var/www/phpmyadmin

It worked for me..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文