Webmin is installed on ubuntu

gossip

Early Linux administrators fact, many are coming from windows administrator transition. Who windows of desktop graphical popular? linux nor too adhere to the "black box" is justice. In order to reduce the threshold of linux system management, improve the efficiency of management personnel, a similar windows service manager web application emerged --Webmin. Baidu Encyclopedia of the first sentence is: Webmin is currently the most powerful Web-based Unix system administration tools.

The first time I saw this software in the IBM community ( https://www.ibm.com/developerworks/cn/linux/l-roadmap/part3/index.html ), this thing is a little noble lineage equally little little old, the language used is Perl. The project has its address (on GitHub https://github.com/webmin/webmin ), the official website ( http://www.webmin.com/) also maintain a certain frequency of updates .

installation method

Option One

Reference: https://linuxize.com/post/how-to-install-webmin-on-ubuntu-18-04/ The following is the excerpt :

# 更新软件源
sudo apt update
# 安装一些下载工具
sudo apt install software-properties-common apt-transport-https wget
# 添加GPG密钥
wget -q http://www.webmin.com/jcameron-key.asc -O- | sudo apt-key add -
# 添加软件库
sudo add-apt-repository "deb [arch=amd64] http://download.webmin.com/download/repository sarge contrib"
# 安装它
sudo apt install webmin

# 显示以下信息安装成功
Webmin install complete. You can now login to https://your_server_ip_or_hostname:10000/
as root with your root password, or as any user who can use sudo
to run commands as root.

# 配置防火墙
sudo ufw allow 10000/tcp

Like normal application software updates

sudo apt update
sudo apt upgrade

Open a browser to access it: HTTPS: // your_server_ip_or_hostname: 10000 /

Option II (other distributions applicable)

Find already compiled the releases of the application package: http://webmin.com/download.html

Download: wget -c downloadurl (really slow download)

Possible applications rely

>>apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl

After the installation is complete, the default port 10000

Compared with the first behind update is not convenient to upgrade

Option III (build scheme)

From the git github the whole project, and then run the setup.sh script.

Guess you like

Origin www.cnblogs.com/goodswarm/p/12158979.html