国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網站 > Apache > 正文

Ubuntu Server 11.10安裝配置lamp(Apache+MySQL+PHP)

2024-08-27 18:24:00
字體:
來源:轉載
供稿:網友
這篇文章主要介紹了Ubuntu Server 11.10安裝配置lamp(Apache+MySQL+PHP),需要的朋友可以參考下

準備篇:

1、配置防火墻,開啟80端口、3306端口

說明:Ubuntu默認安裝是沒有開啟任何防火墻的,為了服務器的安全,建議大家安裝啟用防火墻設置,這里推薦使用iptables防火墻。
whereis iptables #查看系統是否安裝防火墻
iptables: /sbin/iptables /usr/share/iptables /usr/share/man/man8/iptables.8.gz #表示已經安裝iptables
apt-get install iptables #如果默認沒有安裝,請運行此命令安裝防火墻
iptables -L #查看防火墻配置信息,顯示如下:

#####################################################
Chain INPUT (policy ACCEPT)
target prot opt source destination

Chain FORWARD (policy ACCEPT)
target prot opt source destination

Chain OUTPUT (policy ACCEPT)
target prot opt source destination
#####################################################
nano /etc/iptables.default.rules #添加以下內容
##################################################################################################
*filter
# Allows all loopback (lo0) traffic and drop all traffic to 127/8 that doesn't use lo0
-A INPUT -i lo -j ACCEPT
# Accepts all established inbound connections
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
# Allows all outbound traffic
# You could modify this to only allow certain traffic
-A OUTPUT -j ACCEPT
# Allows HTTP and MySQLconnections from anywhere (the normal ports for websites)
-A INPUT -p tcp --dport 80 -j ACCEPT
-A INPUT -p tcp --dport 3306 -j ACCEPT
# Allows SSH connections for script kiddies
# THE -dport NUMBER IS THE SAME ONE YOU SET UP IN THE SSHD_CONFIG FILE
-A INPUT -p tcp -m state --state NEW --dport 22 -j ACCEPT
# Now you should read up on iptables rules and consider whether ssh access
# for everyone is really desired. Most likely you will only allow access from certain IPs.
# Allow ping
-A INPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT
# log iptables denied calls (access via 'dmesg' command)
-A INPUT -m limit --limit 5/min -j LOG --log-prefix "iptables denied: " --log-level 7
# Reject all other inbound - default deny unless explicitly allowed policy:
-A INPUT -j REJECT
-A FORWARD -j REJECT
COMMIT
##################################################################################################
ctrl+o #保存
ctrl+x #退出


備注:80是指web服務器端口、3306是指MySQL數據庫鏈接端口、22是指SSH遠程管理端口
iptables-restore < /etc/iptables.default.rules #使防火墻規則生效
nano /etc/network/if-pre-up.d/iptables #創建文件,添加以下內容,使防火墻開機啟動
##########################################################
#!/bin/bash
/sbin/iptables-restore </etc/iptables.default.rules
##########################################################
chmod +x /etc/network/if-pre-up.d/iptables #添加執行權限

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 二连浩特市| 杭州市| 抚远县| 银川市| 密云县| 黑龙江省| 贵溪市| 织金县| 永年县| 龙井市| 弥勒县| 阿尔山市| 阿拉善盟| 库尔勒市| 密云县| 华池县| 桂林市| 弋阳县| 侯马市| 南乐县| 永年县| 天长市| 铜川市| 依安县| 美姑县| 喀喇沁旗| 灵宝市| 菏泽市| 若羌县| 太原市| 东港市| 汽车| 河北省| 谢通门县| 富源县| 柘荣县| 蓬溪县| 永平县| 观塘区| 盐城市| 宝应县|