I have got the following error when installed the module NGINX in WEBMIN

Webmin in rocky 9 error Can't locate HTML/Entities.pm in @INC (you may need to install the HTML::Entities module) (@INC contains: /usr/libexec/webmin/vendor_perl /usr/libexec/webmin /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 /usr/libexec/webmin/ .) at /usr/libexec/webmin/nginx/index.cgi line 5. BEGIN failed--compilation aborted at /usr/libexec/webmin/nginx/index.cgi line 5.   This MY Sol ...

View More
  Dibaca 8 kali

Cara mengaktifkan Tool Modul Terminal Webmin di Rocky 9

Jalankan perintah dibawah ini pada ssh/terminal :dnf config-manager --set-enabled crb dnf install epel-releaseLalu Install Modul terminalnya pada webmin ...

View More
  Dibaca 10 kali

Membuat SSH Keygen ed25519

Perintahnya serperti ini :   ssh-keygen -t ed25519 -C "app@emailkamu"   silahkan ubah app@emailkamu sesuai email kamu ...

View More
  Dibaca 10 kali

Cara Automatic Hapus File Session PHP

Use “df -i” command to view inodes usage: Filesystem Inodes IUsed IFree IUse% Mounted on /dev/sda2 1310720 1310720 0 100% / That means you ran out of inodes! Most probably PHP sessions are the issue. A quick command to delete all sess_* files on /var/lib/php/sessions is this: find /var/lib/php/sessions -type f -cmin +24 -name "sess_*" -exec rm -f {} \; But I would recommend you to use a bash script, keep reading below: On your PHP.ini file ...

View More
  Dibaca 3691 kali

Clear systemd journal

On any server, the logs can start to add up and take considerable amount of disk space. Systemd conveniently stores these in /var/log/journal and has a systemctl command to help clear them. Take this example: $ du -hs /var/log/journal/ 4.1G /var/log/journal/ 4.1GB worth of journal files, with the oldest dating back over 2 months. $ ls -lath /var/log/journal/*/ | tail -n 2 -rw-r-x---+ 1 root systemd-journal 8.0M Dec 24 05:15 user-xxx.journal On this server, I really don't ne ...

View More
  Dibaca 1036 kali

Cara Menghapus Seluruh File Dalam Folder di Ubuntu

Dalam Kasus ingin membersihkan file sampah di tmp,log dll perlu sekali perintah dibawah ini agar tidak hapus satu persatu   rm -rf /namafolder/*Jika Perintah diatas gagal karena filenya terlalu banyak dengan error seperti dibawah ini-bash: /bin/rm: Argument list too longMaka solusinya adalah gunakan perintah dibawah inisudo find . -name 'nama_file*'| xargs rm ...

View More
  Dibaca 694 kali