标签:options execcgi is off in this directory: /tool/www/samba
利用apache搭建的Samba server 利用changepassword组件用户自行更改密码环境:
访问:http://192.168.25.57/samba/changepassword.cgi 报403错误
[root@Linux9 samba]# curl -I 192.168.25.57/samba/changepassword.cgi HTTP/1.1 403 Forbidden Date: Tue, 05 Jan 2016 08:49:56 GMT Server: Apache/2.4.17 (Unix) PHP/5.5.9 Content-Type: text/html; charset=iso-8859-1
查看apache安装程序目录错误日志:
cat /usr/local/apache2/logs/error_log [Tue Jan 05 18:29:02.313632 2016] [cgid:error] [pid 29240:tid 3075713936] [client 192.168.30.228:59435] AH01262: Options ExecCGI is off in this directory: /Tool/www/samba/changepassword.cgi
提示找不到
off in this directory: /Tool/www/samba/changepassword.cgi #找不到该配置文件
编辑apache主配置文件:
213 DocumentRoot "/usr/local/apache2/htdocs" 214 <Directory "/Tool/www/samba"> #改成changepassword安装目录 215 # 216 # Possible values for the Options directive are "None", "All", 217 # or any combination of: 218 # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews 219 # 220 # Note that "MultiViews" must be named *explicitly* --- "Options All" 221 # doesn‘t give it to you. 222 # 223 # The Options directive is both complicated and important. Please see 224 # http://httpd.apache.org/docs/2.4/mod/core.html#options 225 # for more information. 226 # Options Indexes FollowSymLinks ExecCGI
执行/usr/local/apache2/bin/apachectl restrt #重启apache
/usr/local/apache2/bin/apachectl -t #语法检查
刷新浏览器正常访问.
本文出自 “boyhack” 博客,谢绝转载!
Options ExecCGI is off in this directory: /Tool/www/samba
标签:options execcgi is off in this directory: /tool/www/samba
原文地址:http://461205160.blog.51cto.com/274918/1731849