我正在尝试从我的机器打开远程机器浏览器。我已经设置了无密码连接(考虑到两个系统都处于相同的 n/w 并且受信任的事实)。
我可以在下面运行脚本来启动浏览器,它需要 3 个参数
一个)。用户名
b)。远程机器的 IP 地址
c)。在 Firefox 中打开的 url
如果我在我的 bash shell 中运行这个脚本,我可以毫无问题地打开浏览器。但是如果我在 PHP 中调用它,我将无法在远程机器上启动浏览器...它显示所有调试打印但无法打开浏览器。任何指针都非常有帮助。
下面是我在远程机器上打开浏览器的 shell 脚本。
#!/bin/bash
if test $# != 3;
then
echo "
$0
This command line script is used to launch, browser remotely. You need to pass 3 arguments to this script.
YOU NEED TO PASS 3 ARGUMEMTS TO THIS SCRIPT,
For example , \$> sh $0 \"<userNameofRemoteSystem>\" \"<remoteSystemIP>\" \"<webPageAddress>\"
\$> sh $0 \"Uname\" \"172.17.64.94\" \"mail.google.com\" \n";
exit 1
fi
echo "<br><br>\nRECEIVED PARAMETERS,\n\tuserName\t-> |$1|\n\tipAddress\t-> |$2|\n\twebURL\t\t-> |$3|\n\n<br>";
echo "<br>Checking if Connection to |$2| WITH USERNAME |$1| is password less???<br><br>";
sleep 2
echo "<br>grep -wc $1 /home/user/.ssh/authorized_keys<br>";
count=`grep -wc $1 /home/user/.ssh/authorized_keys`;
echo "<br>got process count=|$count|<br>"
sleep 2
if [ "$count" != 1 ];
then
echo "
Looks like password less connection to |$2| is not configured with this server for username |$1|..
Please congfigure the same and run this script again...\n";
fi
echo "SUCCESSFULLY CONNECTED, LAUNCHING BROWSER ON |$2| WITH |$3|\n";
ssh $1@$2 "nohup sh openBrowser.sh $3" &
PID=$$;
echo "PID IS |$PID|\n";
sleep 2;
echo "<br>PROCESS OUTPUT LOOKS LIKE THIS";
ps aux | grep $PID | grep -v grep
echo "<br>";
echo "after sleep";
kill -9 $PID && echo "after kill pid=$PID, passed ssh $1@$2 \"nohup sh openBrowser.sh $3\" &";
下面是我用来调用 shell 脚本的 php 脚本。
<?php
$c_url=$_POST['url'];
$c_name=$_POST['uname'];
$c_ip=$_POST['ipaddress'];
$output = system("/bin/sh /home/user/launchBrowser_remote.sh $uName $ipADDR $c_url");
echo "$output";
?>
看起来我在 shell 脚本中得到了错误的 PID,它杀死了调用者脚本而不是启动 ssh 到远程.....顺便说一句,我已经尝试了这两种方法exec
,shell_exec
但没有运气。
任何指针都非常有帮助
谢谢