如何访问远程服务器上的phpMyAdmin
对于我的网站,我使用 Dreamhost。 Dreamhost 要求您创建数据库驻留的主机名(例如:mysql.mclindigital.com)。 对我来说这很简单,如果我想访问 phpMyAdmin,我只需导航到 mysql.mclindigital.com,然后就可以了自动进入phpMyAdmin。
显然 Dreamhost 是少数使用这种方法的人,因为大多数人似乎都使用“localhost”。 那么,如何访问这些网站的 phpMyAdmin 呢? 我是否需要获取他们的 Web 面板登录信息才能浏览此信息?
举个例子,我有一个过去的客户,我必须去这里: http:// 216.120.237.104:2082/3rdparty/phpMyAdmin/index.php 进入他们的 phpMyAdmin。 我从来没有真正理解我在做什么,但它确实有效。 现在我也处于同样的情况,但这次客户不那么精通技术,无法向我提供我需要访问的 URL。
另外,我应该指出,我不能 100% 确定他们安装了 phpMyAdmin。 不过,我确实知道他们有一个数据库,因为他们正在运行一个 Wordpress 博客。
For my websites I use Dreamhost. Dreamhost requires you to create a hostname (ex: mysql.mclindigital.com) that the database will reside on. For me it's simple, if I want to access phpMyAdmin, I simply navigate to mysql.mclindigital.com, and it enters into phpMyAdmin automatically.
Apparently Dreamhost is in the minority using this method, because most people seem to use "localhost". So, how do I access phpMyAdmin for these websites? Will I need to get their Web Panel login info to browse around for this info?
As an example, I had a past client and I had to go here: http://216.120.237.104:2082/3rdparty/phpMyAdmin/index.php to get into their phpMyAdmin. I never really understood what I was doing, but it just worked. Now I am in the same situation, but this time the client isn't as tech-savvy and is unable to give me the URL I need to go to.
Also, I should point out I am not 100% certain that they have phpMyAdmin installed. I do know they have a database however, because they are running a Wordpress Blog.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
phpMyAdmin 没有什么神奇或特别之处。 这只是
一堆 php 脚本。
一些网络主机(例如dreamhost)可能会标准安装它
类似于 formmail 和他们可能安装的许多其他工具。
您的问题很可能是您的客户没有
安装了 phpMyAdmin,以及简单的解决方案(如果您有 ftp 访问权限)
是去 http://www.phpmyadmin.net/home_page/index.php 下载
phpMyAdmin,配置它然后将其上传到他们的 ftp 服务器
你自己。 然后您可以像任何其他 php 脚本一样访问它。
There is nothing magic or special about phpMyAdmin. It is just
a bunch of php scripts.
Some webhosts(Such as dreamhost) may install it as standard
similary to formmail and a bunch of other tools they may install.
Your problem is most likely that you client don't have
phpMyAdmin installed, and the easy solution(If you have ftp access)
is to go to http://www.phpmyadmin.net/home_page/index.php download
phpMyAdmin, configure it and then just upload it to their ftp server
your self. Then you can acces it similary to any other php script.