从不同机器上的 bash 调用 PHP 脚本
我需要从 machine2 上的 .sh
脚本调用 machine1 上的 PHP 脚本。我该怎么做?
基本上我需要将一个参数传递给相应的 PHP 脚本并使其使用它运行。
谢谢!
I need to call a PHP script on machine1 from a .sh
script on machine2. How can I do this?
Basically I need to pass a parameter to the respective PHP script and make it run using it.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 ssh:
如果您想在脚本中执行此操作,则必须启用公钥身份验证。
You can use ssh:
if you want to do this in a script, you have to enable public key authentiction.
设置 Apache 并使用 curl,或使用 SSH 作为建议的其他答案。设置 Apache 的安全性乍一看似乎更简单,但事实可能并非如此。
Setup Apache and use curl, or use SSH as the other answer suggested. The security aspects of setting up Apache seems simpler at first, but this may not be true.