1. ホーム
  2. php

[解決済み] PHPの関数ssh2_connectが動作しない

2022-02-12 21:08:47

質問

以下は私のスクリプトです。

    <?php
    $connection = ssh2_connect('XX.XX.XX.XX', 22);
    ssh2_auth_password($connection, 'root', '******');

    $stream = ssh2_exec($connection, 'useradd -d /home/users/test -m testftp');
    $stream = ssh2_exec($connection, 'passwd testftp');
    $stream = ssh2_exec($connection, 'password');
    $stream = ssh2_exec($connection, 'password');
    ?>

以下のようなエラーが表示されます。

Fatal error: Call to undefined function ssh2_connect() in /home/chaosnz/public_html/fotosnap.net/test.php on line 2

どうすればいいのでしょうか?

ありがとうございます

解決方法は?

SSH2 PECL エクステンションをインストールしたところ、正常に動作するようになりました。