当前位置: > Linux服务器 >

Linux常见服务开启

时间:2014-07-11 09:42来源:linux.it.net.cn 作者:IT网

1、Apache开启shtml

要实现Apache支持shtml伪静态则需要开启SSI并可支持用shtml来include网页文件

1.开conf目录下的httpd.conf文件,搜索“AddType text/html .shtml”,找到
# AddType text/html .shtml
# AddOutputFilter INCLUDES .shtml
把这两行前面的#去掉 。

2.搜索“Options Indexes FollowSymLinks”在搜索到的那一行后面添加“Includes”
即将该行改变为“Options Indexes FollowSymLinks Includes”

3.保存httpd.conf,重起Apache即可。

2、PHP开启allow_url_fopen函数

找到PHP配置文件php.ini,找到如下数据将“Off”更换为“On”,重启Apache服务

; Whether to allow the treatment ofURLs (like http:// or ftp://) as files.
allow_url_fopen = Off
; Whether to allow include/requireto open URLs (like http:// or ftp://) as files.
allow_url_include = Off

3、PHP添加PDO_Mysql扩展

参考:http://www.woiit.net/archives/168

4、PHP添加PDO_Pgsql扩展

参考:http://www.woiit.net/archives/201

5、linux 禁止ping

在linux下除了用firewall来禁止ping本机,还有一种方法就是更改linux下的配置文件,配置文件的路径是/proc/sys/net/ipv4/icmp_echo_ignore_all,也就是icmp_echo_ignore_all文件,将将其值改为1后为禁止PING,将其值改为0后为解除禁止PING。由于此文件是只读文件,最好利用以下命令来更改此文件:
# echo 1 > /proc/sys/net/ipv4/icmp_echo_ignore_all

用iptables也可以达到效果,如果要自己能ping人家,而人家不能ping你,可以:
# iptables -A INPUT -p icmp –icmp-type 8 -s 0/0 -j DROP
# iptables -A INPUT -p icmp –icmp-type 0 -s 0/0 -j ACCEPT
# iptables -A OUTPUT -p icmp –icmp-type 0 -s localip -j DROP
# iptables -A OUTPUT -p icmp –icmp-type 8 -s localip -j DROP

 
(责任编辑:IT)
------分隔线----------------------------