gpt4 book ai didi

linux - 获取使用 sshpass 启动的远程进程的 PID

转载 作者:太空宇宙 更新时间:2023-11-04 09:14:00 24 4
gpt4 key购买 nike

我有一个 bash 脚本需要在远程机器上启动一些进程。我已经使用 sshpass 做到了这一点命令。

我需要存储那个远程进程的 PID。

我用脚本尝试了以下操作:

sshpass -p password ssh user@ipaddr /bin/bash << EOF
nohup process > /dev/null 2>&1 & echo $! > pid_file
cat pid_file
EOF

当我检查远程机器时,进程启动并且 pid_file 中也写入了一个数字。但是进程id和pid_file的编号不匹配。

在没有脚本的情况下直接在终端上执行上述命令集,不会在 pid_file 中写入任何内容。

有人可以帮助存储远程进程的正确 pid。

最佳答案

sshpass -p password ssh user@ipaddr /bin/bash << EOF
nohup process > /dev/null 2>&1 & echo $! > pid_file
cat pid_file
EOF

问题是 $! 不是在远程计算机上而是在您的计算机上展开的。使用 Here document 时, 变量名被它们的值替换。因此它会扩展到您在计算机后台运行的任何进程。您需要在远程计算机上执行 echo $!。这就是为什么最好使用 -c 并始终正确地包含参数。

sshpass -p password ssh user@ipaddr /bin/bash -c 'nohup process >/dev/null 2>&1 & echo $! > pid_file'

或者你可以转义 $!:

sshpass -p password ssh user@ipaddr /bin/bash <<EOF
nohup process > /dev/null 2>&1 & echo \$! > pid_file
cat pid_file
EOF

或者最好是在此处使用引号字符串定界符:

sshpass -p password ssh user@ipaddr /bin/bash <<'EOF'
nohup process > /dev/null 2>&1 & echo $! > pid_file
cat pid_file
EOF

关于linux - 获取使用 sshpass 启动的远程进程的 PID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50851668/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com