Skip to main content

INSTALL WEBMIN

Jadi langkah selanjutnya adalah jangan install Webmin dulu. Perbaiki repo dulu, lalu cek gnupg, baru lanjut install Webmin.

Jalankan ini persis:

cat > /etc/apt/sources.list <<'EOF'
deb http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware
deb http://deb.debian.org/debian bookworm-updates main contrib non-free non-free-firmware
deb http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware
deb http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware
EOF

apt clean
apt update
apt install -y wget curl gnupg ca-certificates
apt policy gnupg

Kalau sudah benar, output apt policy gnupg harus bukan:

Candidate: (none)

Kalau sudah muncul versi kandidat, lanjut:

wget -O /root/webmin-setup-repo.sh https://raw.githubusercontent.com/webmin/webmin/master/webmin-setup-repo.sh
sh /root/webmin-setup-repo.sh
apt update
apt install -y webmin
systemctl status webmin
ss -lntp | grep 10000



Urutan lanjutnya:

1) Pastikan Webmin sudah terpasang

apt update
apt install -y webmin

2) Pastikan servicenya aktif

systemctl enable --now webmin
systemctl status webmin
ss -lntp | grep 10000

Kalau sukses, biasanya akan terlihat service aktif dan port 10000 listen.

3) Akses dari browser

Buka dari laptop/PC:

https://IP-SERVER:10000/

Contoh:

https://192.168.1.10:10000/

Login pakai:

  • username: root
  • password: password root server

4) Kalau tidak bisa dibuka

Cek firewall:

ufw allow 10000/tcp

Kalau pakai iptables:

iptables -I INPUT -p tcp --dport 10000 -j ACCEPT

5) Kalau browser kasih peringatan SSL

Itu normal saat awal, karena biasanya sertifikat self-signed. Lanjutkan saja ke halaman login.

Sekarang yang paling penting: selesaikan dulu instalasi Webmin. Setelah itu aksesnya tinggal ke:

https://IP-SERVER:10000/

Kirim hasil dari ini:

systemctl status webmin
ss -lntp | grep 10000

supaya saya pastikan sudah siap diakses.

Comments

Popular posts from this blog

OLT ZTE C300/320 di ONT Mode Port: Vlan_Translate, QinQ, Trunk & Access

  Contoh Config  1. Vlan Translate QinQ To Access: OLT-ZTE-C320#show run interface gpon-onu_1/4/1:21 Building configuration... ! interface gpon-onu_1/4/1:21   name RSO0766   description Customer_Vlan-Translate   tcont 6 name Internet_Vlan-Translate profile UP-100M   gemport 6 name Internet_Vlan-Translate unicast tcont 6 dir both   switchport mode hybrid vport 6   service-port 6 vport 6 user-vlan 1490 vlan 1490 svlan 1479  ! end OLT-ZTE-C320#show onu running config gpon-onu_1/4/1:21 pon-onu-mng gpon-onu_1/4/1:21   service Internet_Vlan-Translate gemport 6 vlan 1490   vlan port eth_0/4 mode tag vlan 1490   dhcp-ip ethuni eth_0/4 from-internet ! 2. Vlan QinQ Access: OLT-ZTE-C320#show run interface gpon-onu_1/2/5:22 Building configuration... ! interface gpon-onu_1/2/5:22   name Internet-QinQ-Access   description QinQ-Access   tcont 1 name Acsata profile UP-200M   tcont 1 gap mode2   gemport 1...

CLI Populer di OLT GPON ZTE

  ## cek onu belum terdaftar ZTE C300 # show gpon onu uncfg interface gpon-olt_1/9/1 onu 1 type ZTE-F609 sn ZTEGC86CCB88 exit ## Config interface onu yang baru interface gpon-onu_1/9/1:1   name NAME   description DESCRIPTION   sn-bind enable sn   tcont 1 name HSI profile 100M   tcont 2 name HOT profile 100M   gemport 1 name HSI unicast tcont 1 dir both   gemport 1 traffic-limit upstream UP100M downstream DW100M   gemport 2 name HOT unicast tcont 2 dir both   gemport 2 traffic-limit upstream UP100M downstream DW100M   switchport mode hybrid vport 1   switchport mode hybrid vport 2   service-port 1 vport 1 user-vlan 1200 vlan 1200   pppoe-plus enable sport 1   pppoe-plus trust true replace sport 1 exit ## config onu pon-onu-mng gpon-onu_1/9/1:1   service HSI type internet gemport 1 cos 0 vlan 1200   wan-ip 1 mode pppoe username PPPoE_USERNAME password PPPoeE_PASSWORD vlan-profile PPPoE host 1   secur...

Seting Switch Huawei

  1. Cara Console Switch Huawei Pada switch huawei biasanya default user name adalah  admin  dan default password adalah  admin@huawei.com . Tetapi pada switch huawei seri S5735 ini tidak memiliki default username dan password. Berikut adalah langkah-langkah  cara console switch huawei  : Siapkan kabel console Instal driver kabel console pada laptop Hubungkan switch ke laptop dengan kabel console Cek COM Port kabel console Jalankan aplikasi Putty Pada saat kita terhubung lewat console untuk pertama kalinya, maka akan diminta untuk membuat password baru. Tampilannya kurang lebih seperti berikut: An initial password is required for the first login via the console. Set a password and keep it safe. Otherwise you will not be able to login via the console. Please configure the login password (8-16) Enter Password: Confirm Password: Warning: The authentication mode was changed to password authentication and the user level was chan con0 at the first user logi...