How to Connect SSH using PHP?
In this tutorial we will go over the demonstration of how to connect ssh using php. This article goes in detailed on how to execute ssh command in php. if you have question about php execute ssh command on remote server then i will give simple example with solution. we will help you to give example of php execute remote ssh command. Follow bellow tutorial step of php run ssh command.
I will give you very simple example to connect with ssh remove server and run command using php.
let's see example code:
index.php
<?php
$host = '111.111.111.111';
$port = 22;
$username = 'root';
$password = '00cd6bf584e....';
$connection = ssh2_connect($host, $port);
ssh2_auth_password($connection, $username, $password);
$stream = ssh2_exec($connection, 'df -h');
stream_set_blocking($stream, true);
$output = stream_get_contents($stream);
print_r($output);
?>
Output:
i hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- PHP - How to replace image src in a dynamic HTML string
- Angular 10 Create New Component using Command
- How to Convert Array into Comma Separated String in Angular?
- How to Install Laravel in Ubuntu?
- How to Downgrade php 7.4 to 7.3 Ubuntu?
- How to Install Composer using Command Line in Ubuntu?
- How to Clear Log File using Command in Laravel?
- How to Uninstall a Composer Package in Laravel?
- How to Install Sublime Text Editor 3 in Ubuntu?
- How to Increase Upload File Size Limit PHP in Ubuntu?
- How to Find Day Name from Specific Date in PHP?