浏览器通过Webmin远程管理Centos/RHEL 7

1、Linux系统中官方下载Webmin(下载地址)安装包webmin-1.750.tar.gz

[[email protected] ~]# cd /usr/local/program/

[[email protected] program]# ls

[[email protected] program]# tar -zcvf webmin-1.750.tar.gz

[[email protected] ~]# cd /usr/local/program/

[[email protected] program]# cd webmin-1.750/ 
[[email protected] webmin-1.750]# ./setup.sh
***********************************************************************
*            Welcome to the Webmin setup script, version 1.750        *
***********************************************************************
Webmin is a web-based interface that allows Unix-like operating
systems and common Unix services to be easily administered.

Installing Webmin in /usr/local/program/webmin-1.750 ...

***********************************************************************
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]:
Found existing Webmin configuration in /etc/webmin

Inserting path to perl into scripts..
..done

Creating start and stop scripts..
..done

Updating config files..
..done

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

Changing ownership and permissions ..
..done

Running postinstall scripts ..
..done

Attempting to start Webmin mini web server..
Starting Webmin server in /usr/local/program/webmin-1.750
Pre-loaded WebminCore
..done

***********************************************************************
Webmin has been installed and started successfully. Use your web
browser to go to

  http://localhost.localdomain:10000/

and login with the name and password you entered previously.
[[email protected] webmin-1.750]# firewall-cmd --permanent --add-port=10000/tcp      #开启10000端口

success

[[email protected] webmin-1.750]# systemctl restart firewalld.service 

2、在Windows浏览器中输入http://ip:10000弹出界面输入默认用户名和密码均为admin,界面如下

时间: 2024-08-25 05:28:15

浏览器通过Webmin远程管理Centos/RHEL 7的相关文章

Xmanager远程管理Centos桌面

1.安装gdm yum -y install gdm 2.修改系统启动界面 vim /etc/inittab id:5:initdefault:      #(把3或者其他数字改为5) 3.配置gdm文件 vim /etc/gdm/custom.conf 字段下分别添加如下内容(默认[security]和[xdmcp]没有任何内容,需要手动添加): [security] AllowRemoteRoot=true [xdmcp] Port=177 Enable=1 4.关闭防火墙或者打开UPD端口

CentOS install Desktop and Remotely access 远程管理Centos桌面 TigerVNC

Centos 安装完毕,但是通过windows 远程管理桌面: 当然我们可以通过secureCRT工具连接命令行,但是我希望通过windows 连接他们的远程桌面: 首先我们的保证 X windows等桌面环境安装成功: yum groupinstall -y "Desktop"   "Desktop Platform"   "Desktop Platform Development" "Fonts" "Genera

SecureCRT or Secure FX远程管理 CentOS (四节)

安装 Secure CRT + SecureFX 作为连接窗口: 下载SecureCRT+SecureFX 及注册机后: 以下 是安装的文件及步骤: (此处转载分享别人的博客文章) https://blog.csdn.net/yanjiangdi/article/details/78343452 此处修改/etc/sysconfig/network-scripts/ifcfg-eth0 文件中ONBOOT=no; 是为了方便自动连接网卡:省的每次 ifup eth0(启动网卡) ** [[ema

visualvm添加远程管理-centos

1.修改tomcat/bin目录下catalina.sh文件 JAVA_OPTS="$JAVA_OPTS -Djava.rmi.server.hostname=${host_ip}                                                     -Dcom.sun.management.jmxremote.port=9999                                                     -Dcom.sun.mana

(二)给Centos配置网络以及使用xshell远程连接Centos

好吧,我对网络协议以及ip配置知识的匮乏,让我在这里折腾了将近一天才搞定.可以说基本上网上遇到的问题我都遇到了.在这里,记下正确的步骤来给Centos配置网络.希望以后少走弯路. 首先我要说明的是,我是在VMware上安装的Centos6.3版本,而且我安装时选择的是没有图形界面的那种方式,也就是只有命令行操作的系统模式.因为想一切从头开始好好学习Linux,所以直接安装了只有命令行模式的桌面.我使用的是桥接方式来给Centos配置网络,下面就讲一下这样配置的步骤吧. 为centos配置网络 (

Webmin|Linux管理员远程管理工具

介绍: Webmin is a web-based interface for system administration for Unix. Using any modern web browser, you can setup user accounts, Apache, DNS, file sharing and much more. Webmin removes the need to manually edit Unix configuration files like/etc/pas

【CentOS】IBM X3650M4 IMM远程管理【转载】

问题描述: IBM X3650M4 IMM远程开机和关机 参考资料: http://www.ibmsys.cn/blog/?p=201 问题解决: 一.如何访问IMM 二.IMM主要功能介绍 三.几个常用功能 1.远程开关机 2.通过IMM刷新服务器的UEFI/IMM微码 3.远程终端功能 一.如何访问IMM通常主机后部有一个专用的管理端口,例如下图以3650M3为例,可以通过此端口访问IMM. IMM管理端口默认IP:192.168.70.125 用户名:USERID 密码:PASSW0RD

CentOS下开启mysql远程连接,远程管理数据库

当服务器没有运行php.没装phpmyadmin的时候,远程管理mysql就显得有必要了.因为在CentOS下设置的,所以标题加上了CentOS,以下的命令在debian等系统下应该也OK. mysql -u root -p mysql # 第1个mysql是执行命令,第2个mysql是系统数据名称 在mysql控制台执行: grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option; #

Linux/CentOS下开启MySQL远程连接,远程管理数据库

当服务器没有运行PHP.没装phpMyAdmin的时候,远程管理MySQL就显得有必要了. 第一步:开启MySQL用户的远程访问权限 mysql -u root -p mysql # 第1个mysql是执行命令,第2个mysql是系统数据名称 在MySQL控制台执行: grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option; # root是用户名,%代表任意主机,'123456'指定的登