{"batchcomplete":"","continue":{"lecontinue":"20240629024325|24","continue":"-||"},"query":{"logevents":[{"logid":34,"ns":0,"title":"Unifi Network","pageid":34,"logpage":34,"revid":102,"params":{},"type":"create","action":"create","user":"Johan Efendi","timestamp":"2025-01-10T07:41:06Z","comment":"Created page with \"  ===Menambahkan USG ke Existing Project===  Edit IP Address agar bisa dikenali di nextwork, misal 192.168.19.50 <syntaxhighlight lang=\"bash\"> $ ssh ubnt@192.168.1.1 ubnt@ubnt:~$ configure ubnt@ubnt:~$ edit interfaces ethernet eth1 ubnt@ubnt:~$ set address 192.168.19.50 ubnt@ubnt:~$ commit ubnt@ubnt:~$ exit ubnt@ubnt:~$ exit </syntaxhighlight>  Hapus IP lama dari USG <syntaxhighlight lang=\"bash\"> $ ssh ubnt@[NEW IP] ubnt@ubnt:~$ configure ubnt@ubnt:~$ edit interfaces eth...\""},{"logid":33,"ns":0,"title":"Cheat Sheet","pageid":33,"logpage":33,"revid":101,"params":{},"type":"create","action":"create","user":"Johan Efendi","timestamp":"2024-12-01T23:10:49Z","comment":"Created page with \"==Permanent Network Device Name==  Temukan terlebih dahulu <b>Mac Address</b> yang akan dijadikan sebagai nama permanen network devive. Buat file /etc/systemd/network/10-ether1.link dan isi dengan <syntaxhighlight lang=\"bash\"> [Match] MACAddress=aa:bb:cc:dd:ee:ff Type=ether  [Link] Name=ether1 </syntaxhighlight>  Sumber: * [https://pve.proxmox.com/wiki/Network_Configuration Network Configuration]\""},{"logid":32,"ns":0,"title":"NextCloud","pageid":32,"logpage":32,"revid":97,"params":{},"type":"create","action":"create","user":"Johan Efendi","timestamp":"2024-09-25T09:49:30Z","comment":"Created page with \"==Reset Password== <syntaxhighlight lang=\"bash\"> sudo -u nobody php-cli /srv/www/nextcloud/occ user:resetpassword admin Enter a new password:  Confirm the new password:  Successfully reset password for admin </syntaxhighlight>\""},{"logid":31,"ns":0,"title":"Ubuntu Cheats","pageid":31,"logpage":31,"revid":96,"params":{},"type":"create","action":"create","user":"Johan Efendi","timestamp":"2024-09-13T06:33:40Z","comment":"Created page with \"=Flush DNS=  <syntaxhighlight lang=\"bash\"> resolvectl flush-caches </syntaxhighlight>\""},{"logid":30,"ns":0,"title":"Install Mikrotik di OS Ubuntu","pageid":30,"logpage":30,"revid":92,"params":{},"type":"create","action":"create","user":"Johan Efendi","timestamp":"2024-09-11T08:33:34Z","comment":"Created page with \"==Install==  <syntaxhighlight lang=\"bash\">  wget https://download.mikrotik.com/routeros/7.15.3/chr-7.15.3.img.zip -O chr.img.zip  gunzip -c chr.img.zip > chr.img echo u > /proc/sysrq-trigger  # Ganti /dev/sda dengan device yang sesuai # Jalankan fdisk -l untuk nama devicenya dd if=chr.img bs=1024 of=/dev/sda  </syntaxhighlight>\""},{"logid":29,"ns":0,"title":"Zabbix","pageid":29,"logpage":29,"revid":88,"params":{},"type":"create","action":"create","user":"Johan Efendi","timestamp":"2024-09-10T08:52:00Z","comment":"Created page with \"=Menghapus History / Log=   <syntaxhighlight lang=\"bash\"> SET @history_interval = 7; SET @trends_interval = 90;  DELETE FROM alerts WHERE (UNIX_TIMESTAMP(NOW()) - clock) > (@history_interval * 24 * 60 * 60); DELETE FROM acknowledges WHERE (UNIX_TIMESTAMP(NOW()) - clock) > (@history_interval * 24 * 60 * 60); DELETE FROM events WHERE (UNIX_TIMESTAMP(NOW()) - clock) > (@history_interval * 24 * 60 * 60);  DELETE FROM history WHERE (UNIX_TIMESTAMP(NOW()) - clock) > (@history_...\""},{"logid":28,"ns":0,"title":"Matomo","pageid":28,"logpage":28,"revid":83,"params":{},"type":"create","action":"create","user":"Johan Efendi","timestamp":"2024-09-04T13:55:42Z","comment":"Created page with \"=Shortcut=  # Reset Password   php -r 'echo password_hash(md5(\"changeMe\"), PASSWORD_DEFAULT) . \"\\n\";'\""},{"logid":27,"ns":0,"title":"Cyber Panel","pageid":27,"logpage":27,"revid":79,"params":{},"type":"create","action":"create","user":"Johan Efendi","timestamp":"2024-09-04T04:35:04Z","comment":"Created page with \"=Deteksi IP Cloudflare=   nano  /usr/local/lsws/conf/httpd_config.conf  # Tambahkan useIpInProxyHeader               1  # Tambahkan  accessControl{         allow                                   ALL, 173.245.48.0/20T, 103.21.244.0/22T, 103.22.200.0/22T, 103.31.4.0/22T, 141.101.64.0/18T, 108.162.192.0/18T, 190.93.240.0/20T, 188.114.96.0/20T, 197.234.240.0/22T, 198.41.128.0/17T, 162.158.0.0/15T, 104.16.0.0/13T, 104.24.0.0/14T, 172.64.0.0/13T, 131.0.72.0/22T         deny }...\""},{"logid":26,"ns":0,"title":"Install Docker Ubuntu","pageid":26,"logpage":26,"revid":75,"params":{},"type":"create","action":"create","user":"Johan Efendi","timestamp":"2024-09-01T08:59:07Z","comment":"Created page with \"==Hapus Potensian Konflik==  <syntaxhighlight lang=\"bash\"> for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done </syntaxhighlight>  ==Installasi== <syntaxhighlight lang=\"bash\">  # tambahkan GPG apt-get update apt-get install ca-certificates curl install -m 0755 -d /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc chmod a+r /etc/apt/keyrings...\""},{"logid":25,"ns":0,"title":"Install aaPanel Ubuntu 22.04","pageid":25,"logpage":25,"revid":72,"params":{},"type":"create","action":"create","user":"Johan Efendi","timestamp":"2024-09-01T04:18:34Z","comment":"Created page with \"=Install=  Migrasi file spesifik <syntaxhighlight lang=\"bash\"> URL=https://www.aapanel.com/script/install_7.0_en.sh && if [ -f /usr/bin/curl ];then curl -ksSO \"$URL\" ;else wget --no-check-certificate -O install_7.0_en.sh \"$URL\";fi;bash install_7.0_en.sh aapanel </syntaxhighlight>\""}]}}