您的位置:首页 > 运维架构

Options ExecCGI is off in this directory: /Tool/www/samba

2016-01-05 19:09 639 查看
利用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 #语法检查

刷新浏览器正常访问.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  is Options ExecCGI