Linux下的一个图形管理工具webmin

这个工具其实我在两年前的小白时期还是经常用的,因为那时候对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 [[email protected] webmin-1.610]# ./setup.sh
 6 [[email protected] 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 [[email protected] webmin-1.610]# curl http://localhost:10000

[[email protected] 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 another
   web 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..
..done

Creating access control file..
..done

Inserting path to perl into scripts..
..done

Creating start and stop scripts..
..done

Copying config files..
..done

Configuring Webmin to start at boot time..
..done

Creating uninstall script /etc/webmin/uninstall.sh ..
..done

Changing ownership and permissions ..
..done

Running postinstall scripts ..
PID file /var/webmin/miniserv.pid does not exist
..done

Enabling background status collection ..
PID file /var/webmin/miniserv.pid does not exist
..done

Attempting 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 to

  http://A1:10000/

and login with the name and password you entered previously.

[[email protected] webmin-1.610]# curl http://localhost:10000

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

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

不在过多叙述!

时间: 2024-11-08 06:36:58

Linux下的一个图形管理工具webmin的相关文章

Linux下MySQL图形化管理工具

Valentina Studio: 跨平台,有免费版本,我试用时候经常崩掉. https://www.valentina-db.com/ DBeaver: 跨平台,免费. http://dbeaver.jkiss.org/ MySQL Workbench: 跨平台,免费

推荐一个linux下的web压力测试工具神器webbench

推荐一个linux下的web压力测试工具神器webbench2014-04-30 09:35:29   来源:   评论:0 点击:880 用多了apache的ab工具之后你就会发现ab存在很多问题, 那么怎么办呢, 今天推荐一个神器---webbench webbench最多可以模拟3万个并发连接去测试网站的负载能力,个人感觉要比Apache自带的ab压力测试工具好, 用多了apache的ab工具之后你就会发现ab存在很多问题, 那么怎么办呢, 今天推荐一个神器---webbench    

npm 是node.js下带的一个包管理工具

npm 是node.js下带的一个包管理工具          npm install -g webpack webpack是一个打包工具 gulp是一个基于流的构建工具,相对其他构件工具来说,更简洁更高效 npm install -g gulp //全局安装 npm install --save-dev gulp //安装到当前项目并在package.json中添加依赖cnpm install -g -vue-cli 安装脚手架 webpack是模块化管理的工具,使用webpack可实现模块按

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

一.简介 SystemTap是一个诊断Linux系统性能或功能问题的开源软件.它使得对运行时的Linux系统进行诊断调式变得更容易.更简单.有了它,开发者或调试人员不再需要重编译.安装新内核.重启动等烦人的步骤. 为了诊断系统问题或性能,开发者或调试人员只需要写一些脚本,然后通过SystemTap提供的命令行接口就可以对正在运行的内核进行诊断调试,以前需要的修改或插入调试代码.重新编译内核.安装内核和重启动等这些琐碎的工作完全消除.目前该工具并不支持对用户态应用的诊断调试,但是它们在以后会被添加

Perf Event :Linux下的系统性能调优工具

Perf Event :Linux下的系统性能调优工具 2011-05-27 10:35 刘 明 IBMDW 字号:T | T Perf Event 是一款随 Linux 内核代码一同发布和维护的性能诊断工具,由内核社区维护和发展.Perf 不仅可以用于应用程序的性能统计分析,也可以应用于内核代码的性能统计和分析.得益于其优秀的体系结构设计,越来越多的新功能被加入 Perf,使其已经成为一个多功能的性能统计工具集 .本文将介绍 Perf 在应用程序开发上的应用. AD:2014WOT全球软件技术

Linux下项目与事务跟踪工具JIRA搭建汉化安装详解

1,安装java环境 [Java环境安装请查阅java环境安装] 2,安装数据库并添加jira数据库和用户授权 [MySql环境安装请查阅mysql安装] mysql> create database jira charactor set 'utf8'; mysql> grant all on jiradb.* to `jira`@`%` identified by 'jira123'; mysql> flush privileges; 3,相关软件包下载地址及说明 atlassian-

的图形管理工具phpmyadmin

###############################mysql的图形管理工具phpmyadmin ############################### 上篇博客中,我们知道了mariadb 但是操作不方便,这篇将所有的命令用一个图形化界面简化 前提,在本机上安装mariadb,启动 yum install -y httpd  安装httpdsystemctl start httpd tar jxf phpMyAdmin-3.4.0-all-languages.tar.bz2 

Linux下获取arm的交叉编译工具链

转载请注明文章:Linux下获取arm的交叉编译工具链 出处:多客博图 这里介绍,Linux下获取arm的交叉编译工具链,比如arm-linux-gnueabihf-gcc.arm-linux-gneabihf-gcc等. 前言 这里有一个专门的说法: “arm-linux-gnueabihf-gcc是由 Linaro 公司基于GCC推出的的ARM交叉编译工具.可用于交叉编译ARM系统中所有环节的代码,包括裸机程序.u-boot.Linux kernel.filesystem和App应用程序.使

linux下mysql的用户管理及访问问题

1.mysql的安装配置 linux下有一个很神奇的东西叫yum,只要有源,用yum来安装是一件非常容易的事,什么都不用管,它会为你解决好一些软件依赖的问题.一键安装mysql: [[email protected] ~]# yum install mysql-server mysql-devel 安装完成后我们就可以使用mysql了: [[email protected] ~]# /etc/init.d/mysqld start Starting mysqld: [ OK ] [[email