Is there any good universal PHP MySQL HTTP tunnel?

2020-02-09 03:53发布

Many Windows MySQL tools like Navicat or EMS have this thing - You just put a PHP file on a shared hosting and can connect local running program to the remote MySQL server on the Web via the web service exposed by that php file.

Are there any good popular free solutions to expose full MySQL as a web service using PHP?

4条回答
不美不萌又怎样
2楼-- · 2020-02-09 04:24

SQLyog's HTTP Tunnel is a very decent one.

enter image description here

查看更多
▲ chillily
3楼-- · 2020-02-09 04:31

try use HTTPtunnel GNU. here example connection to MySQL using HTTPtunnel GNU.

查看更多
Ridiculous、
4楼-- · 2020-02-09 04:39

I have build a MySQLTunnel script in PHP, and put it in sourceforge. You can download it and try. It supports:

  • HTTP Tunneling to MySQL
  • JSON Resultset
  • On-demand compression to preserve bandwidth
  • On-demand encryption using AES-128 or AES-256 to preserve secure data and password
  • Supports both http:// and https://
  • Written in PHP can be installed on any LAMP or WAMP stack
  • Fast and secure communication

Here you can find it

Hope it helps

查看更多
三岁会撩人
5楼-- · 2020-02-09 04:43

You can use TCP/IP over SSH from within MySQL Workbench and SQLyog without the need for PHP tunnelling script if you have SSH access to you server.

I have had customer sites on shared hosts where this doesn't work due to server configuration which is out of my control. I have overcome this restriction via SSH tunnelling which has the added benefit of being encrypted (Obviously this will only work if you have SSH access to the host however), although noted, the original post asked for a HTTP tunnel.

To setup SSH Tunnelling in SQLyog, on the MySQL tab for your connection, enter you MySQL credentials as you normally would for a local user on the host (replace 'root' and password with something secure and sensible):

MySQL Configuration

And then under the SSH tab, enter your terminal login details (username, password and port# if not 22):

SSH Configuration

Then save your connection.

The process is similar in MySQL workbench so shouldn't be hard to figure it out.

查看更多
登录 后发表回答