我可以通过命令行终端通过php执行shell脚本。但是当我通过浏览器点击HTML按钮时,我无法使用php执行相同的脚本(.sh)。
以下是我的php脚本(wettyload.php) -
<?php
shell_exec('/var/www/html/wettyload.sh');
?>
以下是我的shell脚本(wettyload.sh) -
#!/bin/bash
cd /root/wetty
node app.js -p 8080
以下是我的HTML代码(url.html) -
<html>
<body>
<form name="form2" method="post" action="http://127.0.0.1/wettyload.php">
<input type="submit" id="url" name="url" value="Connect terminal">
</form>
</body>
</html>
答案 0 :(得分:0)
使用
<?php
shell_exec('sh /var/www/html/wettyload.sh');
?>
<强>更新强>
之前你没有提到/root/wetty
,你有几个选择:
wetty
目录移动到网络服务器用户具有执行权限的位置。/root/wetty
的权限以允许网络服务器用户执行(不安全) 注意:强>
确保您拥有execute
wettyload.sh
权限