这个工具其实我在两年前的小白时期还是经常用的,因为那时候对Linux比较陌生在为数server的时候帮了我很多工作,现在周末外面下雨,闲来无事莫名其妙的想起他来。

工具优点:最大特点是他是脚本安装 不需要手动编译; 图形界面 直观简单。功能强大可以管理类似web apache 用户管理DNS 等等服务

缺点:消耗资源,不利于对Linux的理解,有一些底层的错误无法通过该工具进行维护。

工具获取:http://sourceforge.net/projects/webadmin/files/webmin/    有很多版本,我就不在去下载了 我的数据盘里有1.6的所以我就不在去下载了

  当然你如果在Linux 下载wget http://sourceforge.net/projects/webadmin/files/webmin/1.610/webmin-1.610.tar.gz

  windows 下载:http://sourceforge.net/projects/webadmin/files/webmin/1.610/webmin-1.610.tar.gz  可以通过工具传到Linux server上

 1 下载完成后
 2 tar zxvf webmin-1.160.tar.gz
 3 cd webmin.1.160/
 4 运行脚本
 5 [root@A1 webmin-1.610]# ./setup.sh
 6 [root@A1 webmin-1.610]# ./setup.sh
 7 ***********************************************************************
 8 *            Welcome to the Webmin setup script, version 1.610        *
 9 ***********************************************************************
10 Webmin is a web-based interface that allows Unix-like operating
11 systems and common Unix services to be easily administered.
12
13 Installing Webmin in /opt/webmin-1.610 ...
14
15 ***********************************************************************
16 Webmin uses separate directories for configuration files and log files.
17 Unless you want to run multiple versions of Webmin at the same time
18 you can just accept the defaults.
19
20 Config file directory [/etc/webmin]:
21 Log file directory [/var/webmin]:
22
23 ***********************************************************************
24 Webmin is written entirely in Perl. Please enter the full path to the
25 Perl 5 interpreter on your system.
26
27 Full path to perl (default /usr/bin/perl):
28
29 Testing Perl ...
30 Perl seems to be installed ok
31
32 ***********************************************************************
33 Operating system name:    CentOS Linux
34 Operating system version: 6.4
35
36 ***********************************************************************
37 Webmin uses its own password protected web server to provide access
38 to the administration programs. The setup script needs to know :
39  - What port to run the web server on. There must not be another
40    web server already using this port.
41  - The login name required to access the web server.
42  - The password required to access the web server.
43  - If the webserver should use SSL (if your system supports it).
44  - Whether to start webmin at boot time.
45
46 Web server port (default 10000):
47 Login name (default admin): admin
48 Login password:
49 Password again:
50 The Perl SSLeay library is not installed. SSL not available.
51 Start Webmin at boot time (y/n): y
52 ***********************************************************************
53 Creating web server config files..
54 ..done
55
56 Creating access control file..
57 ..done
58
59 Inserting path to perl into scripts..
60 ..done
61
62 Creating start and stop scripts..
63 ..done
64
65 Copying config files..
66 ..done
67
68 Configuring Webmin to start at boot time..
69 ..done
70
71 Creating uninstall script /etc/webmin/uninstall.sh ..
72 ..done
73
74 Changing ownership and permissions ..
75 ..done
76
77 Running postinstall scripts ..
78 PID file /var/webmin/miniserv.pid does not exist
79 ..done
80
81 Enabling background status collection ..
82 PID file /var/webmin/miniserv.pid does not exist
83 ..done
84
85 Attempting to start Webmin mini web server..
86 Starting Webmin server in /opt/webmin-1.610
87 Pre-loaded WebminCore
88 ..done
89
90 ***********************************************************************
91 Webmin has been installed and started successfully. Use your web
92 browser to go to
93
94   http://A1:10000/
95
96 and login with the name and password you entered previously.
97
98 [root@A1 webmin-1.610]# curl http://localhost:10000

View Code

[root@A1 webmin-1.610]# ./setup.sh
***********************************************************************
*            Welcome to the Webmin setup script, version 1.610        *
***********************************************************************
Webmin is a web-based interface that allows Unix-like operating
systems and common Unix services to be easily administered.Installing Webmin in /opt/webmin-1.610 ...***********************************************************************
Webmin uses separate directories for configuration files and log files.
Unless you want to run multiple versions of Webmin at the same time
you can just accept the defaults.Config file directory [/etc/webmin]:
Log file directory [/var/webmin]: ***********************************************************************
Webmin is written entirely in Perl. Please enter the full path to the
Perl 5 interpreter on your system.Full path to perl (default /usr/bin/perl): Testing Perl ...
Perl seems to be installed ok***********************************************************************
Operating system name:    CentOS Linux
Operating system version: 6.4***********************************************************************
Webmin uses its own password protected web server to provide access
to the administration programs. The setup script needs to know :- What port to run the web server on. There must not be anotherweb server already using this port.- The login name required to access the web server.- The password required to access the web server.- If the webserver should use SSL (if your system supports it).- Whether to start webmin at boot time.Web server port (default 10000):
Login name (default admin): admin
Login password:
Password again:
The Perl SSLeay library is not installed. SSL not available.
Start Webmin at boot time (y/n): y
***********************************************************************
Creating web server config files..
..doneCreating access control file..
..doneInserting path to perl into scripts..
..doneCreating start and stop scripts..
..doneCopying config files..
..doneConfiguring Webmin to start at boot time..
..doneCreating uninstall script /etc/webmin/uninstall.sh ..
..doneChanging ownership and permissions ..
..doneRunning postinstall scripts ..
PID file /var/webmin/miniserv.pid does not exist
..doneEnabling background status collection ..
PID file /var/webmin/miniserv.pid does not exist
..doneAttempting to start Webmin mini web server..
Starting Webmin server in /opt/webmin-1.610
Pre-loaded WebminCore
..done***********************************************************************
Webmin has been installed and started successfully. Use your web
browser to go tohttp://A1:10000/

and login with the name and password you entered previously.[root@A1 webmin-1.610]# curl http://localhost:10000

如果可以通过curl 访问那么证明安装成功,但如果我们想在其他pc上浏览需要注意的是在iptables 中开启10000端口

这个程序是支持中文的 可以再里面进行设置

不在过多叙述!

转载于:https://www.cnblogs.com/patf/p/4603986.html

Linux下的一个图形管理工具webmin相关推荐

  1. linux 命令gpasswd -a,gpasswd命令_Linux gpasswd命令用法详解:Linux下工作组文件的管理工具...

    gpasswd命令是Linux下工作组文件/etc/group和/etc/gshadow管理工具. 语法gpasswd(选项)(参数) 选项-a:添加用户到组: -d:从组删除用户: -A:指定管理员 ...

  2. linux下几种进程管理工具

    runit,supervisord,monit , Daemontools简介

  3. Linux系统的web管理工具——webmin搭建

    Linux系统的web管理工具--webmin搭建 一.webmin介绍 二.添加webmin的yum仓库 三.检查yum仓库状态 三.安装webmin 1.添加GPG密钥 2.安装webmin 3. ...

  4. Linux下性能测量和调试诊断工具Systemtap

    一.简介 SystemTap是一个诊断Linux系统性能或功能问题的开源软件.它使得对运行时的Linux系统进行诊断调式变得更容易.更简单.有了它,开发者或调试人员不再需要重编译.安装新内核.重启动等 ...

  5. Perf -- Linux下的系统性能调优工具,第 2 部分

    https://www.ibm.com/developerworks/cn/linux/l-cn-perf2/ Perf -- Linux下的系统性能调优工具,第 2 部分 刘 明, 软件工程师, 上 ...

  6. 03:MySQL图形管理工具

     前言: 本系列博客主要参考黑马程序员视频教程,仅供学习使用,整理不易转载请注明出处,多谢(*^▽^*)~. 视频教程地址连接: 2022黑马程序员最新MySQL知识精讲+mysql实战案例_零基础m ...

  7. MySQL常用图形管理工具 | 黑马程序员

    MySQL性能强劲,是目前使用最广泛的数据库之一,以 MySQL为学习原型也方便之后掌握其他数据库,下面就给大家全面讲解下MySQL8.0的新特性,从零基础到高阶一站式学习,结合实际案例让大家有所收获 ...

  8. 那些 Linux 下好用的 小工具 收集

    PS: 由于个人主要使用的平台为基于 Debian 的发行版[准确来说是基于 Ubuntu 的再发行版 Linux Mint],所以默认以 Debian 环境下介绍,不过由于大多数软件都是开源且在多个 ...

  9. ssh开启图形界面_分享|3 个 Linux 上的 SSH 图形界面工具

    了解一下这三个用于 Linux 上的 SSH 图形界面工具. 在你担任 Linux 管理员的职业生涯中,你会使用 Secure Shell(SSH)远程连接到 Linux 服务器或桌面.可能你曾经在某 ...

最新文章

  1. 转:C#中Monitor对象与Lock关键字的区别分析
  2. 在CentOS 5.5下用OpenSSH构建SSH服务器(上)
  3. Android碎片化难题:手游兼容性测试应该适配哪些机型?
  4. 为了支持AOP的编程模式,我为.NET Core写了一个轻量级的Interception框架[开源]
  5. 网易10万+课程迅速刷屏又迅速被封:“违规”背后的思考
  6. Android的HashMap方法,Android中实现HashMap排序的方法
  7. 连接linux系统的mysql,Linux系统MySQL开启远程连接
  8. 【Android】【录音】Android录音--AudioRecord、MediaRecorder
  9. 【优化算法】Iterative映射和单纯形法的改进灰狼优化算法(SMIGWO)【含Matlab源码 1746期】
  10. kali metsploit 工具入侵windows
  11. 树莓派开机自动运行python程序的方法
  12. 哪些股票自动交易接口好用呢?
  13. 【unity】学习之路
  14. 经济法基础——第五章第二节、个人所得税法律制度
  15. 任正非:华为没有996更没有007,“狼性文化”其实是三个精神
  16. Numpy用法详细总结:学习numpy如何使用,看这一篇文章就足够了
  17. 普通相机也能实现超级夜景?一种普适的图像防抖算法
  18. 关于Java为什么不推荐使用 import *导包这件小事
  19. 基于MACA协议(MAC协议)的仿真来学习opnet的一些记录
  20. MySQL推出Applier,可实时复制数据到Hadoop

热门文章

  1. VS2010 COM组件问题
  2. IBM XIV高效存储广受公安、医疗、电信、金融等客户赞誉
  3. 让Hive支持行级insert、update、delete
  4. 手把手教你走进Hyperledger Fabric
  5. 每日一淘完成1.3亿美元融资,元生资本、DCM领投,SIG联合投资
  6. Java中classpath配置
  7. 《Excel 职场手册:260招菜鸟变达人》一第 14 招 利用数据验证记录数据录入时间...
  8. Springboot-mongodb MongoRepository接口 save方法 详解
  9. Django 操作Mysql数据库 对表进行增删改查
  10. 【Struts2框架】Struts2总结