PHP Generator for MySQL online Help
| Prev | Return to chapter overview | Next |
How to connect to MySQL
Connection properties
Set the connection parameters for the database you want the PHP scripts to work with.
Script connection properties
Specify here connection parameters for MySQL server relatively to the webserver. For example, if your webserver and MySQL server are installed on the same computer, set Host as localhost.
PHP Generator for MySQL allows you to connect to MySQL servers directly, via Secure SHell (SSH) tunnel or HTTP tunnel.
| • | Direct connection |
It is the most natural and the most preferable connection mode. Use it each time it is possible. Most of hosting companies allow direct connections to databases. However in most cases you have to go to your control panel and add your home/office computer IP address or domain name to Access List - list of IP addresses allowed accessing from outside.
| • | SSH tunnel connection |
If your MySQL server does not allow direct connections from your remote workstations, you can establish connection to an allowed intermediate SSH server and forward all MySQL commands through the Secure SHell (SSH) tunnel.
More about SSH tunnel connection
To establish connection to intermediate SSH server and forward all MySQL commands through the secure tunnel, you need to:
Host name Specify the host name or IP of your site.
Port number Enter the port number for the SSH server. Enter valid User name for the remote server, select the authentication type: by password or by private key and set the Password or the path to the Private key file with the corresponding Passphrase to log in to the remote server.
Note: MySQL host name always should be set relatively to the SSH server. For example, if both of MySQL and SSH servers are located on the same computer, you should specify localhost as Host name instead of server's external host name or IP address.
|
| • | HTTP tunnel connection |
HTTP tunneling is a technique used in conditions of restricted network connectivity including firewalled networks, networks behind proxy servers, and NATs. It is the slowest way and is recommended to use if the others are impossible.
More about connection via HTTP tunnel
To connect to a remote server using an HTTP tunnel, you need to:
Note: You are actually connecting to your database through the PHP script on the server, so in most cases the host/server name is "localhost" unless the target server is not installed on the same server as the Web server.
|
Irrespectively of a connection mode you should specify common credentials as follows:
Host
The host name of the MySQL server.
Port number
The TCP/IP port to use if server is not localhost.
User name
The username used to connect to MySQL.
Password
The password for the user account on server.






