Home > Article > Backend Development > How to Fix mysqli_connect() Parameter Issue When Connecting to MySQL over SSH with PHP?
Establishing a connection to a MySQL database hosted on a remote Linux machine via SSH using PHP functions can be challenging. The error "mysqli_connect() expects parameter 6 to be string, resource given" may occur when using the provided code.
The code attempts to use the mysqli_connect() function to connect to the database through an SSH tunnel. However, the mysqli_connect() function expects a string as the sixth parameter (indicating the tunnel), whereas the ssh2_tunnel() function returns a resource.
To resolve this issue, set up an SSH tunnel to your MySQL database server. One effective method is to use a Jumpbox proxy for security enhancements. This approach involves creating a local port forwarding tunnel using the SSH client, effectively creating a secure channel between your local machine and the database server.
Using Command Line Tools (SSH Tunnel Setup):
ssh -fNg -L 3307:10.3.1.55:3306 [email protected]
Connecting to the Database:
<code class="php">$mysqli = mysqli_connect("127.0.0.1:3307", "DB_USERNAME", "DB_PASSWORD", "dbname");</code>
Additional Considerations:
The above is the detailed content of How to Fix mysqli_connect() Parameter Issue When Connecting to MySQL over SSH with PHP?. For more information, please follow other related articles on the PHP Chinese website!