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寫入變更離開


service iptables restart(重啟防火牆)
service httpd start(變更後重啟apache)
chkconfig httpd on(設定apache開機啟動)

*ssl連線模式設定
yum install mod_ssl -y(安裝ssl連線套件)
vi /etc/httpd/conf.d/ssl.conf(進ssl設定查看PORT,Listen 443前面不要有#)
vi /etc/sysconfig/iptables(進防火牆設定)
按i編輯新增下列port
-A INPUT -m state --state NEW -m tcp -p tcp --dport 443 -j ACCEPT(新增443port)
esc(結束編輯)
:wq(寫入變更離開)
ervice iptables restart(重啟防火牆)
service httpd restart(重啟apache)

安裝webmin
vi /etc/yum.repos.d/webmin.repo(進入設定檔)
貼上下列文字到檔案裡
[Webmin]
name=Webmin Distribution Neutral
#baseurl=http://download.webmin.com/download/yum
mirrorlist=http://download.webmin.com/download/yum/mirrorlist
enabled=1
:wq(寫入變更離開)
rpm  --import   http://www.webmin.com/jcameron-key.asc (啟用webmin)

yum install webmin(安裝webmin)

登入方法
https://IP:10000
登入帳號-同linux

沒有留言: