Centos安装Webmin

简介:

解析:Webmin是目前功能最强大的基于Web的Unix系统管理工具。管理员通过浏览器访问Webmin的各种管理功能并完成相应的管理动作。目前Webmin支持绝大多数的Unix系统,这些系统除了各种版本的linux以外还包括:AIX、HPUX、Solaris、Unixware、Irix和FreeBSD等。

 

软件包:

1
2
3
4
5
6
7
8
9
[root@test01 conf.d] # rpm -qa |grep bind
ypbind-1.19-12.el5
bind-libs-9.3.6-20.P1.el5_8.6
bind-utils-9.3.6-20.P1.el5_8.6
bind-9.3.6-20.P1.el5_8.6
bind-chroot-9.3.6-20.P1.el5_8.6
[root@test01 conf.d] # rpm -qa |grep caching-nameserver
caching-nameserver-9.3.6-20.P1.el5_8.6
caching-nameserver 这个包一定要,因为chroot依赖它。

 

一、添加Webmin源文件

有些系统初始化安装后,yum中没有webmin的源。这时如果我们希望通过yum来安装升级webmin,就需要手动添加。

# vim /etc/yum.repos.d/webmin.repo

输入以下内容

[Webmin]
name=Webmin Distribution Neutral
baseurl=http://download.webmin.com/download/yum
enabled=1

保存、退出!

二、使用yum安装软件时发生了一堆错误修改一下配置文件

# vi /etc/yum.conf 将其中的gpgcheck=1 改为gpgcheck=0

或者把/etc/yum.repos.d/下所有的.repo里的每一个gpgcheck都改成0

三、用yum安装webmin了

# yum  -y  install webmin

注意:10000端口被占用安装失败

Running Transaction
Operating system is CentOS Linux
Port 10000 is already in use
Error in PREIN scriptlet in rpm package webmin-1.610-1.noarch
error: %pre(webmin-1.610-1.noarch) scriptlet failed, exit status 2
error:   install: %pre scriptlet failed (2), skipping webmin-1.610-1 

查看端口

# netstat -anp | grep 10000

杀掉10000的进程号在安装

# kill 4972

# yum -y install webmin

# rpm -q webmin

# service webmin start

备注:

# locate webmin-1.610-1.noarch.rpm

# updatedb

# rpm -ivh /var/cache/yum/Webmin/packages/webmin-1.610-1.noarch.rpm

四、webmin忘记密码处理如下:

 

[root@test01 ~]# /usr/libexec/webmin/changepass.pl /etc/webmin/ root 123
Updated password of Webmin user root


 //root是webmin的用户名,不是OS的,123为密码


/etc/webmin是webmin的配置目录,

http://ip:10000 可以访问了

 

 

由于我的配置文件早已经配置好:

/opt/backup/named/etc/named 拷贝到 /var/named/chroot/etc 目录下;

1
2
3
4
5
6
7
8
9
[root@test01 conf.d] # cd /var/named/chroot/etc/
[root@test01 etc] # ll
总计 48
-rw-r--r-- 1 root root   405 07-30 18:57 localtime
-rw-r----- 1 root named 1230 2013-01-07 named.caching-nameserver.conf
-rw-r--r-- 1 root named 1766 07-31 17:28 named.conf
-rw-r--r-- 1 root named  151 07-31 15:52 named.conf_ok
-rw-r----- 1 root named  955 2013-01-07 named.rfc1912.zones
-rw-r----- 1 root named  113 07-30 18:55 rndc.key

/opt/backup/named/var/named的文件拷贝到/var/named/chroot/var/named 目录下;

 

1
2
3
4
5
6
7
8
[root@test01 etc] # cd ../var/named/
[root@test01 named] # pwd
/var/named/chroot/var/named
[root@test01 named] # ll
总计 140
drwxrwx--- 2 named named 4096 07-31 17:38 data
-rw-r----- 1 root  named 1167 01-31 15:33 jwerdev01.com.hosts
-rw-r----- 1 root  named  617 07-31 16:51 haooy01.com.zone

 

启动DNS服务

service named start

 
  本文转自 kuangling 51CTO博客,原文链接:http://blog.51cto.com/kling/1129900

相关文章
|
3月前
|
存储 安全 Linux
CentOS安装SeaweedFS
通过上述步骤,您应该能够在CentOS系统上成功安装并启动SeaweedFS。记住,根据实际部署规模和需求,可能还需要进一步调整配置参数和优化网络布局。SeaweedFS的灵活性和扩展性意味着随着使用深入,您可能需要探索更多高级配置和管理策略。
128 64
|
3月前
|
存储 安全 Linux
CentOS安装SeaweedFS
通过上述步骤,您应该能够在CentOS系统上成功安装并启动SeaweedFS。记住,根据实际部署规模和需求,可能还需要进一步调整配置参数和优化网络布局。SeaweedFS的灵活性和扩展性意味着随着使用深入,您可能需要探索更多高级配置和管理策略。
131 61
|
2月前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第16天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括配置系统源、安装 SQL Server 2019 软件包以及数据库初始化,确保 SQL Server 正常运行。
|
2月前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第8天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括系统准备、配置安装源、安装 SQL Server 软件包、运行安装程序、初始化数据库以及配置远程连接。通过这些步骤,您可以顺利地在 CentOS 系统上部署和使用 SQL Server 2019。
107 1
|
2月前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第7天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括系统要求检查与准备、配置安装源、安装 SQL Server 2019、配置 SQL Server 以及数据库初始化(可选)。通过这些步骤,你可以成功安装并初步配置 SQL Server 2019,进行简单的数据库操作。
|
3月前
|
Linux 网络安全 数据安全/隐私保护
Linux系统之Centos7安装cockpit图形管理界面
【10月更文挑战第12天】Linux系统之Centos7安装cockpit图形管理界面
125 1
Linux系统之Centos7安装cockpit图形管理界面
|
2月前
|
关系型数据库 MySQL Linux
在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比
本文介绍了在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比。通过具体案例,读者可以了解如何准备环境、下载源码、编译安装、配置服务及登录 MySQL。编译源码安装虽然复杂,但提供了更高的定制性和灵活性,适用于需要高度定制的场景。
133 3
|
3月前
|
NoSQL 数据可视化 Linux
redis学习四、可视化操作工具链接 centos redis,付费Redis Desktop Manager和免费Another Redis DeskTop Manager下载、安装
本文介绍了Redis的两个可视化管理工具:付费的Redis Desktop Manager和免费的Another Redis DeskTop Manager,包括它们的下载、安装和使用方法,以及在使用Another Redis DeskTop Manager连接Redis时可能遇到的问题和解决方案。
163 1
redis学习四、可视化操作工具链接 centos redis,付费Redis Desktop Manager和免费Another Redis DeskTop Manager下载、安装
|
2月前
|
关系型数据库 MySQL Linux
在 CentOS 7 中通过编译源码安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比。
本文介绍了在 CentOS 7 中通过编译源码安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比。内容涵盖准备工作、下载源码、编译安装、配置服务、登录设置及实践心得,帮助读者根据需求选择最适合的安装方法。
129 2
|
2月前
|
关系型数据库 MySQL Linux
在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,包括准备工作、下载源码、编译安装、配置 MySQL 服务、登录设置等。
本文介绍了在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,包括准备工作、下载源码、编译安装、配置 MySQL 服务、登录设置等。同时,文章还对比了编译源码安装与使用 RPM 包安装的优缺点,帮助读者根据需求选择最合适的方法。通过具体案例,展示了编译源码安装的灵活性和定制性。
194 2