php exec运行linux命令不成功问题!求大家帮忙!
环境:ubuntu server
情景:使用web页面来修改samba的用户密码
详细描述: 例如 这句:
PHP code<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->exec("echo -e \"0\\n0\\n\"|sudo smbpasswd -as test3");
当我在 php页面中运行是 出现如下报错:
Mismatch - password unchanged.
Unable to get new password.
意思就是说,没有修改成功
但是 当我把里边的命令拿出来 放在系统命令行中运行,则会成功 !
下面是直接在命令行中运行的命令,nobody是我的apapche 用户,下面就是以apache用户来运行这条命令
PHP code<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> sudo -u nobody echo -e "0\n0\n"|sudo smbpasswd -as test3
请大家看看 这是什么一个原因呢 ?
------解决方案--------------------权限问题么?
用sudo权限执行你的php文件呢?
------解决方案--------------------exec("echo -e \"0\\n0\\n\"|sudo smbpasswd -as test3");
双引号嵌套错误了,不是必须shell文件然后调用
exec('echo -e \"0\\n0\\n\"|sudo smbpasswd -as test3');
Déclaration:Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn