ssh2_exec密码加密

时间:2015-04-21 12:18:22

标签: php ssh2-exec

如何在php中调用ssh2_exec函数在远程服务器上执行命令而不对我的服务器密码进行硬编码?

这是PHP手册参考:

<?php
$connection = ssh2_connect('shell.example.com', 22);
ssh2_auth_password($connection, 'myusername', 'mypasswordisvisibleforeveryone');

$stream = ssh2_exec($connection, '/usr/local/bin/php -i');
?>

1 个答案:

答案 0 :(得分:1)

我会设置一个用户只是为了从这个服务器访问然后用户使用公共ssh密钥

您可以使用以下代码进行连接...

ssh2_auth_pubkey_file($ssh, 'user', '/location/to/.ssh/id_rsa.pub', '/location/to/.ssh/id_rsa', 'passphrase');

其中$ssh是您的$connection