nil 发表于 2024-8-19 19:45:52

Debian 12 安裝 Webmin

本帖最后由 nil 于 2024-8-19 20:17 编辑

1. 更新系統

apt update -y

2. 安裝必要的 Dependencies

apt install gnupg2 curl -y

3. 安裝 Webmin
下載和加入 GPG Key,加入 Webmin Repository

cd /tmp
curl -o setup-repos.sh https://raw.githubusercontent.com/webmin/webmin/master/setup-repos.sh
sh setup-repos.sh

安裝 Webmin
apt update -y
apt install webmin --install-recommends -y

4. 啟動 Webmin
service webmin start

5. 防火牆設定 Firewall Configuration
apt install ufw -y

允許 Port 22 和 10000 通過
ufw allow 22
ufw allow 10000

6. 測試 Webmin 安裝是否成功
https://xxx.com:10000





页: [1]
查看完整版本: Debian 12 安裝 Webmin