centos 安装 webmin工具

 

下载安装webmin工具。

本人一贯喜欢在centos上直接yum安装程序

http://www.webmin.com.cn/

centos 安装 webmin工具_第1张图片

[root@test ~]# rpm -Uvh http://cdnetworks-kr-1.dl.sourceforge.net/project/webadmin/webmin/1.570/webmin-1.570-1.noarch.rpm
Retrieving http://cdnetworks-kr-1.dl.sourceforge.net/project/webadmin/webmin/1.570/webmin-1.570-1.noarch.rpm
warning: /var/tmp/rpm-xfer.rXGHGm: Header V3 DSA signature: NOKEY, key ID 11f63c51
Preparing...                ########################################### [100%]
Operating system is CentOS Linux
   1:webmin                 ########################################### [100%]
Webmin install complete. You can now login to http://test:10000/
as root with your root password.
[root@test ~]# yum -y install webmin
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirrors.btte.net
 * extras: mirrors.btte.net
 * updates: mirrors.btte.net
Setting up Install Process
Nothing to do

关键是两句:

rpm -Uvh http://cdnetworks-kr-1.dl.sourceforge.net/project/webadmin/webmin/1.570/webmin-1.570-1.noarch.rpm
yum -y install webmin


这样就能默认端口10000访问站点

http://www.test.com:10000/

centos 安装 webmin工具_第2张图片


如果是访问不了,有可能防火墙在作怪

http://blog.csdn.net/bayaci/article/details/7008497


vim /etc/sysconfig/iptables

-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 10000 -j ACCEPT

就此,就可以简单的使用这个工具了~~



你可能感兴趣的:(总结归档)