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

首頁 > 數(shù)據(jù)庫 > MySQL > 正文

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

2019-11-02 16:12:00
字體:
供稿:網(wǎng)友

準備篇:

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

說明:Ubuntu默認安裝是沒有開啟任何防火墻的,為了服務(wù)器的安全,建議大家安裝啟用防火墻設(shè)置,這里推薦使用iptables防火墻。

whereis iptables #查看系統(tǒng)是否安裝防火墻

iptables: /sbin/iptables /usr/share/iptables /usr/share/man/man8/iptables.8.gz #表示已經(jīng)安裝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 #添加以下內(nèi)容

##################################################################################################

*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服務(wù)器端口、3306是指MySQL數(shù)據(jù)庫鏈接端口、22是指SSH遠程管理端口

iptables-restore < /etc/iptables.default.rules #使防火墻規(guī)則生效

nano /etc/network/if-pre-up.d/iptables #創(chuàng)建文件,添加以下內(nèi)容,使防火墻開機啟動

##########################################################

#!/bin/bash

/sbin/iptables-restore </etc/iptables.default.rules

##########################################################

chmod +x /etc/network/if-pre-up.d/iptables #添加執(zhí)行權(quán)限

安裝篇

一、安裝apache

apt-get install apache2 #安裝apache,根據(jù)提示輸入y安裝

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 寿光市| 富宁县| 樟树市| 金门县| 阜康市| 安化县| 林甸县| 威信县| 英吉沙县| 桓台县| 南充市| 宁强县| 图们市| 雅江县| 澄城县| 宁蒗| 榆林市| 老河口市| 高安市| 昂仁县| 义马市| 徐水县| 开远市| 唐山市| 罗山县| 三穗县| 邮箱| 康乐县| 油尖旺区| 明星| 凤城市| 德化县| 藁城市| 黎平县| 长葛市| 新民市| 石狮市| 湘阴县| 临汾市| 麻城市| 通江县|