0

我有一堆服务器,我喜欢创建一个 php 脚本来 ssh 我的所有服务器,收集最后一个日志条目并将所有结果插入数据库。

我正在使用 phpseclib 连接到服务器,并且一个接一个它工作正常,但是因为我有很多,我为什么不使用线程?

好吧,我不太确定我在这里缺少什么,但是到目前为止我得到了什么。在线程之外一切正常,但是一旦我线程 NET_SSH2->login 一切都变得 appart 并且没有任何效果。

这是我的代码关于我遗漏的任何线索?

谢谢

<?php 
set_time_limit(0);
include('Net/SSH2.php');

class poller extends Thread{

private $tid;
private $tip_array;
public $tresult;

public function __construct($tid,$tip_array)
{
    $this->tid = $tid;
    $this->tip_array = $tip_array;
}

public function run()
{
    $i=1;
    foreach ($this->tip_array as $ip){
        $temp_result[$i][0]=$ip;
        $ssh = new Net_SSH2($ip[0]);
        if (!$ssh->login('user', 'pass')) {
             $temp_result[$i][1]= $ssh->isConnected() ? 'bad username or password' : 'unable to establish connection';
        }           
        $temp_result[$i][2]=$ssh->exec(' grep "Device" syslog.messages | tail -1'); 
        $i++;
    }
    $this->tresult=$temp_result;
} 
}

$i=1;
$rows=array(array("1.1.1.1", "2.2.2.2"), array("3.3.3.3", "4.4.4.4"));

foreach ($rows as $row){
    $threads[$i] = new poller($i,$row);
    $threads[$i]->start();
    $i++;
}

foreach ($threads as $thread)
{
    $thread->join();
    echo '############Thread'.$thread->tid.'############';
    print_r($thread->tresult);
    echo '##############################';
}
?>
4

0 回答 0