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.
我有一个 Redhat 盒子,上面有一些简单的脚本。我想通过 Android 应用程序在那个盒子上远程运行这些脚本。 我需要在盒子上设置一个网络服务器并通过 HTTP 调用这些脚本吗?
通过 HTTP 调用这些脚本将是您的最佳选择。设置 Apache + PHP,然后使用函数创建一个 PHP 文件passthru(),该函数调用脚本并将脚本输出传递回 Android 应用程序。只需确保您的脚本安全地存储在服务器上,并且不要尝试通过 HTTP 发送脚本内容——这可能是一个很大的安全漏洞。
passthru()