Dari log error, pesan yang ditampilkan [2022-05-06 01:28:15] local.ERROR: SQLSTATE[HY000]: General error: 1267 Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8mb4_unicode_ci,COERCIBLE) for operation ‘like’ (SQL: select count(*) as aggregate from `clients` Buat yang belum tau arti collation, collaction adalah aturan dan cara untuk mengurutkan string di MySQL/MariaDB. Login sebagai root MySQL sudo mysql DATABASE # contoh […]
Solusi Nginx http2 directive is deprecated
Setelah upgrade nginx ke versi 1.25 atau diatasnya akan muncul informasi $ sudo nginx -t nginx: [warn] the "listen … http2" directive is deprecated, use the "http2" directive instead in /etc/nginx/sites/DOMAIN.conf:32 nginx: [warn] the "listen … http2" directive is deprecated, use the "http2" directive instead in /etc/nginx/sites/DOMAIN.conf:8 nginx: [warn] the "listen … http2" directive is […]
Upgrade Mikrotik hAP Lite RB941-2nD Ke 7.14.2
Upgrade Mikrotik hAP Lite (RB941-2nD) tidak bisa langsung di upgrade ke Mikrotik 7.14.2 karena adanya keterbatasan storage pada RouterBoard tersebut. Untuk itu silahkan ikuti langkah-langkah dibawah ini untuk proses upgradenya, cara upgradenya bisa melalui Web Interface Mikrotik (WebFig) ataupun lewat SSH. Lihat resource Mikrotik saat ini. [admin@jaranguda-router] > system resource print uptime: 1h54m43s version: 7.10.1 […]
Cara Menggunakan pip di Read Only Filesystem
Salah satu package installer dari Python adalah pip atau pip3 tergantung dari varian Linux yang digunakan. Dibanyak sistem yang mengaplikasikan read-only filesystem, seperti pada Docker atau Kubernetes Contoh error yang muncul $ pip install –user –no-cache-dir requests ERROR: Exception: Traceback (most recent call last): File "/usr/local/lib/python3.12/site-packages/pip/_internal/cli/base_command.py", line 180, in exc_logging_wrapper status = run_func(*args) ^^^^^^^^^^^^^^^ File […]
Mariadb/MySQL Solusi Incorrect definition of table mysql.column_stats
Bila anda mendapat error di log MySQL/MariaDB Mar 21 16:56:36 rantang mariadbd[67522]: 2024-03-21 16:56:36 207425 [ERROR] Incorrect definition of table mysql.column_stats: expected column ‘hist_type’ at position 9 to have type enum(’SINGLE_PREC_HB’,’DOUBLE_PREC_HB’,’JSON_HB’), found type enum(’SINGLE_PREC_HB’,’DOUBLE_PREC_HB’). Mar 21 16:56:36 rantang mariadbd[67522]: 2024-03-21 16:56:36 207425 [ERROR] Incorrect definition of table mysql.column_stats: expected column ‘histogram’ at position 10 to […]
Script Monitoring HTTP dengan Python
Kali ini kita akan membuat script untuk monitoring HTTP dengan Python. Ada banyak script monitoring diluar sana yang bisa digunakan, tetapi ada baiknya kita belajar untuk membuatnya sehingga kita mengerti cara logiknya. Sebelum bisa menjalankan script ini, install terlebih modul request dengan pip pip install requests Script Python Copy script dibawah ini, lalu simpan sebagai […]