Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

can connect with ssh2_tunnel ? #160

Open
silasakk opened this issue Apr 10, 2018 · 0 comments
Open

can connect with ssh2_tunnel ? #160

silasakk opened this issue Apr 10, 2018 · 0 comments

Comments

@silasakk
Copy link

silasakk commented Apr 10, 2018

cannot connect to remote database

$ssh_conn = ssh2_connect($ssh_server, $ssh_port);
if($ssh_conn){
echo "Connection Successful!"."
";
}
else{
echo 'Connection Failed...';
die();
}

$ssh_auth = ssh2_auth_password($ssh_conn, $ssh_user, $ssh_pass);
if($ssh_auth){
echo "Authentication Successful!"."
";
}
else{
echo 'Authentication Failed...';die();
}

$ssh_tunnel = ssh2_tunnel($ssh_conn, "localhost",$remote_port);
if ($ssh_tunnel){
echo "Tunnel created"."
";
}
else{
echo "Tunnel creation failed!!";die();
}

require_once("php-rql-master/rdb/rdb.php");
$conn = r\connect('localhost','28015','rapbizz');

Warning: stream_socket_client(): unable to connect to tcp://localhost:28015 (Connection refused) in /var/www/html/php-rql-master/rdb/Connection.php on line 455

Fatal error: Uncaught RqlDriverError: Unable to connect: Connection refused thrown in /var/www/html/php-rql-master/rdb/Connection.php on line 459

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant