Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以仅通过指定代理 IP 地址以静默方式从 rhq-server 安装 rhq-agent。
在 Linux 上:
创建以下脚本并调用 script.sh &
这将在后台运行
伪代码
代理 IP > /dev/null 的 ssh curl jar 文件来自 https://$rhq-server-ip-address:$port/agentupdate/download > /dev/null ssh root@$agent-ip "java -jar /path/to/rhq-enterprise-jar --install > /dev/null"
代理 IP > /dev/null 的 ssh
curl jar 文件来自 https://$rhq-server-ip-address:$port/agentupdate/download > /dev/null
ssh root@$agent-ip "java -jar /path/to/rhq-enterprise-jar --install > /dev/null"
这将安装没有输出的代理。