숀패밀리

많은 서버관리할때 동일작업 반복하기~ SSHinPHP

· 2011-08-03 (수) 14:45:24 · 2411
많은 서버를 관리할때 일일이 ssh접속해서 명령어치고 빠지고 하기 귀찮을때 쓰면 좋습니다
요거는 ssh2 는 지원안됍니당 ~
실행파일은 php로 작업의도에 맞게 응용하시면 됩니다 아래는 기본샘플입니당~
<?
require_once ('test_db.php'); //디비 커넥션
require_once ('ssh_in_php.php');

$db = new TestDB;

$cmd=null;
set_time_limit(0);

$qry = "select * from ip_table"; //루프돌리는 방법은 개인스탈에 따라~
$db->query($qry);

while($db->next_record())
{


try
{



$host = 아이피;
$port = 포트번호;
$user = 계정아이디;
$password = 계정패스워드;
$su = 루트패스워드;

$ssh = null;
$ssh = new SSH_in_PHP($host,$port);
$ssh->connect($user,$password);

$ssh->write("su -\n\n");
$cycle = true;
$result="";
while ($cycle) {
$data = $ssh->read();
echo $data;
if (ereg('\]$',$data)) {
// $cycle = false;
}
if (ereg('\]#',$data)) {
$cycle = false;
}

if (ereg('Password:',$data)) {
$cycle = true;
$ssh->write($su."\n");
}
if (ereg('암호:',$data)) {
$cycle = true;
$ssh->write($su."\n");
}

}


$ssh->write(" \n");
$cycle = true;
$result="";
while ($cycle) {
$data = $ssh->read();
echo $data;
if (ereg('\]$',$data)) {
// $cycle = false;
}
if (ereg('\]#',$data)) {
$cycle = false;
}

if (ereg('Password:',$data)) {
$cycle = true;
$ssh->write($su."\n");
}
if (ereg('암호:',$data)) {
$cycle = true;
$ssh->write($su."\n");
}
}

//각 서버에 test폴더 만들기
$comm=null;
$comm[]="mkdir -p /home/test \n";

for($c=0;$c<sizeof($comm);$c++)
{
$ssh->write($comm[$c]);
$cycle = true;
$result="";
while ($cycle) {
$data = $ssh->read();
echo $data;
if (ereg('\]$',$data)) {
$cycle = false;
}
if (ereg('\]#',$data)) {
$cycle = false;
}

if (ereg('yes',$data)) {
$cycle = true;
//sleep(1);
$ssh->write("Yes\n");
}

if (ereg('password:',$data)) {
$cycle = true;
$ssh->write("계정패스워드\n");
}
if (ereg('암호:',$data)) {
$cycle = true;
$ssh->write("계정패스워드\n");
}



}


$ssh->write(" \n");
$cycle = true;
$result="";
while ($cycle) {
$data = $ssh->read();
echo $data;
if (ereg('\]$',$data)) {
$cycle = false;
}
if (ereg('\]#',$data)) {
$cycle = false;
}

if (ereg('yes',$data)) {
$cycle = true;
//sleep(1);
$ssh->write("Yes\n");
}

if (ereg('password:',$data)) {
$cycle = true;
$ssh->write("계정패스워드\n");
}
if (ereg('암호:',$data)) {
$cycle = true;
$ssh->write("계정패스워드\n");
}



}
}


$ssh->disconnect();
continue;

}
catch (SSHException $e)
{
echo "에구 이서버는 잘안돼네여~";
echo "\n";
$fail_ip[]=$ip;
}


}

var_dump($fail_ip);

?><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:32:05 Linux에서 이동 됨]</div>

첨부파일

ssh_in_php.zip (7.4 KB) 11회 2011-08-03 14:45
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
11-09-08 조회 2,725
11-09-05 조회 2,595
11-09-02 조회 3,447
11-09-01 조회 2,541
11-09-01 조회 2,714
11-09-01 조회 4,003
11-08-31 조회 2,733
11-08-28 조회 2,457
11-08-26 조회 2,367
11-08-19 조회 2,597
11-08-19 조회 2,519
11-08-17 조회 2,626
11-08-17 조회 2,696
11-08-13 조회 2,505
11-08-11 조회 3,476
11-08-11 조회 2,703
11-08-08 조회 2,946
11-08-06 조회 2,691
11-08-06 조회 2,792
11-08-05 조회 2,993
11-08-05 조회 2,424
11-08-04 조회 2,873
11-08-02 조회 2,365
11-07-22 조회 3,927
11-07-21 조회 2,248
11-07-13 조회 2,619
11-07-08 조회 2,927
11-07-05 조회 2,067
11-06-28 조회 3,021
11-06-22 조회 2,512
11-06-22 조회 2,191
11-06-13 조회 2,293
11-06-07 조회 4,114
11-06-04 조회 2,915
11-05-19 조회 3,190
11-05-06 조회 2,937
11-04-20 조회 2,367
11-04-19 조회 2,504
11-04-05 조회 3,058
11-04-04 조회 2,970
11-04-03 조회 2,685
11-04-02 조회 2,805
11-04-01 조회 2,312
11-04-01 조회 2,462
11-04-01 조회 3,056
11-03-25 조회 2,531
11-03-18 조회 2,227
11-03-17 조회 3,168
11-03-10 조회 2,313
11-03-10 조회 2,310
11-03-10 조회 2,562
11-03-07 조회 3,730
11-03-05 조회 2,417
11-03-05 조회 4,906
11-03-02 조회 2,514
11-03-01 조회 2,472
11-02-24 조회 2,542
11-02-24 조회 2,372
11-01-17 조회 5,098
11-01-14 조회 3,054
11-01-07 조회 3,053
10-12-29 조회 2,393
10-12-28 조회 2,606
10-12-24 조회 2,343
10-12-09 조회 2,427
10-12-09 조회 3,630
10-12-08 조회 3,610
10-12-08 조회 3,010
10-12-08 조회 2,852
10-12-08 조회 3,247
10-11-30 조회 2,619
10-11-25 조회 2,482
10-11-15 조회 2,238
10-11-14 조회 4,211
10-10-28 조회 2,891
10-10-26 조회 3,191
10-10-13 조회 2,471
10-10-12 조회 2,693
10-10-09 조회 2,275
10-10-05 조회 3,291
10-09-30 조회 2,957
10-09-26 조회 4,076
10-09-24 조회 2,820
10-09-20 조회 2,659
10-09-20 조회 3,032
10-09-18 조회 2,400
10-09-18 조회 2,442
10-09-17 조회 4,230
10-09-15 조회 3,221
10-09-15 조회 2,710
10-09-15 조회 2,565
10-09-15 조회 2,384
10-09-11 조회 2,543
10-09-11 조회 2,706
10-09-11 조회 2,956
10-06-30 조회 3,647
10-06-30 조회 2,451
10-06-30 조회 2,413
10-06-30 조회 2,565
10-06-11 조회 2,478