2014年1月26日 星期日

Linxu CentOS6.4 安裝webmin

要先安裝apache

yum install httpd -y (安裝apache -y代表同意安裝)
vi /etc/sysconfig/iptables (進防火牆設定)
按i編輯新增下列port
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT(新增80port)
-A INPUT -m state --state NEW -m tcp -p tcp --dport 10000 -j ACCEPT(新增webmin的10000port)
esc結束編輯,:wq寫入變更離開