Ad
Should I Disconnect After Using A Ssh Through Php?
If i use chmod to a folder inside a sftp server just like this:
public function connection()
{
//connection
$ssh = new SSH2('10.10.10.10');
if (!$ssh->login('login', 'passwrd'))
{
exit('Login Failed');
}
//chmod command
echo $ssh->exec('sudo chmod -R 775 test_folder');
}
after using the chmod command, should i disconnect doing something like this:
$ssh->disconnect();
or it's ok to keep that way?
Ad
Answer
Yes, if you're done with your SSH commands, you should disconnect
as a good practice
Ad
source: stackoverflow.com
Related Questions
- → "failed to open stream" error when executing "migrate:make"
- → October CMS Plugin Routes.php not registering
- → OctoberCMS Migrate Table
- → OctoberCMS Rain User plugin not working or redirecting
- → October CMS Custom Mail Layout
- → October CMS - How to correctly route
- → October CMS - Conditionally Load a Different Page
- → Make a Laravel collection into angular array (octobercms)
- → In OctoberCMS how do you find the hint path?
- → How to register middlewares in OctoberCMS plugin?
- → Validating fileupload(image Dimensions) in Backend Octobercms
- → OctoberCMS Fileupload completely destroys my backend
- → How do I call the value from another backed page form and use it on a component in OctoberCms
Ad