论坛徽章: 0
30 可用积分
本帖最后由 lucash 于 2010-08-29 19:08 编辑
在结合使用Net::OpenSSH 和 Expect模块时,遇到的问题。
用Net::OpenSSH 建立一个master ssh connection ,然后用一个叫做open2pty的方法来
打开一个pty供Expect模块使用。
在spawn时出错,提示信息如下:
warning: TIOCSCTTY failed, slave might not be set as controlling terminal: Operation not permitted at /usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi/IO/Pty.pm line 120.
Error: could not connect pty as controlling terminal!
但不知道怎么才能正确的使用IO::Pty中的make_slave_controlling_terminal() 方法来spawn一个子进程。
该方法的说明文档中提示说只能通过fork一个子进程来调用它。不知道该如何使用。
我的出错代码如下:
#!/usr/bin/perl -w
use strict;
use Net::OpenSSH;
use Expect;
my $ssh = Net::OpenSSH->new('192.168.10.100',
user => 'lucash',
passwd => 'lucash'
);
$ssh->error and die "Unable to connect: " . $ssh->error . "\n";
my @cmd = qw(who);
my ($pty,$pid) = $ssh->open2pty({},@cmd);
my $exp = Expect->init($pty) or die "Can not init pty: $!\n";
$exp->spawn(@cmd) or die "Unable to spawn command: $!\n";
复制代码 加了make_slave_controlling_terminal后还是报错:
my ($pty, $pid) = $ssh->open2pty({},@cmd};
if ( (my $ppid = fork()) == 0) {
$pty->slave();
$pty->make_slave_controlling_terminal();
my $exp = Expect->init($pty) or die "Can not init pty : $!\n";
}
复制代码 难道是要open2pty得到的那个$pid fork的子进程中make_slave_controlling_terminal()才有用吗?该怎么做呢?
以下是IO::Pty的部分源码: [font=Verdana]
sub make_slave_controlling_termianl {
…………………… 部分省略。
# Acquire a controlling terminal if this doesn't happen automatically
if (defined TIOCSCTTY) {
if (not defined ioctl( ${*$self}{'io_pty_slave'}, TIOCSCTTY, 0 )) {
warn "warning: TIOCSCTTY failed, slave might not be set as controlling terminal: $!" if $^W;
}
} elsif (defined TCSETCTTY) {
if (not defined ioctl( ${*$self}{'io_pty_slave'}, TCSETCTTY, 0 )) {
warn "warning: TCSETCTTY failed, slave might not be set as controlling terminal: $!" if $^W;
}
}
if (not open(\*DEVTTY, "/dev/tty")) {
warn "Error: could not connect pty as controlling terminal!\n";
return undef;
} else {
close \*DEVTTY;
}
return 1
}
复制代码 IO:: Pty的文档还说: See the try script (also test.pl) for an example how to correctly spawn a subprocess. 复制代码 天哪,这个‘try’ 脚本在哪啊?
搞两天了也没搞定,各位大侠帮帮忙。多谢了。
注:这个部分只是一个脚本中的一小部分,因此暂不考虑抛弃Net::OpenSSH模块的方法
我来回答