Terima Kasih
Telah Berkunjung, Semoga Website ini bermanfaat
Installing PostgreSQL And phpPgAdmin In CentOS
Introduction PostgreSQL is a powerful, open-source object-relational database system. It runs under all major operating systems, including Linux, UNIX (AIX, BSD, HP-UX, SGI IRIX, Mac OS, Solaris, Tru64), and Windows OS.It provides very efficient way to work with databases on PostgreSQL like, create database, table, alter database, export/import database etc.…
Error Phpmyadmin php7.4
Jika baru melakukan upgrade php 7.4 dan menemukan error phpmyadmin sperti dibawah ini : Warning in ./libraries/sql.lib.php#601 count(): Parameter must be an array or an object that implements Countable Backtrace ./libraries/sql.lib.php#2038: PMA_isRememberSortingOrder(array) ./libraries/sql.lib.php#1984: PMA_executeQueryAndGetQueryResponse( array, boolean true, string 'alternativegirls', string 'tgp_photo', NULL, NULL, NULL, NULL, NULL, NULL, string '', string…
EoIP melalui Tunnel PPTP
Kebutuhan akan ip publik terus meningkat seiring dikembangkanya server – server yang diakses secara publik melalui internet seperti web server, mail server, ftp server dll. hal ini bukanlah masalah bagi perusahaan berskala menengah – besar karena sanggup menyewa koneksi dedicated dengan satu blok ip publik.yang menjadi permasalahan adalah ketika suatu…
Check Network Bandwidth with IPERF
Check Network Bandwidth with iperf. This needs 2 machine, Client(Sender) and Server(Receiver). Server : Install iperf3 (Install on both Client and Server) . root@dlp:~# apt -y install iperf3 root@dlp:~# iperf3 -s Server listening on 5201 Client Check Network Bandwidth to execute the command like follows. root@www:~# iperf3 -c 10.0.0.30 -b 1024M #-b 1024 adalah…
How To Add A Second Hard Disk on FreeBSD
How do I add a second hard disk to my FreeBSD server? How do I partition, label and mount a new hard disk under FreeBSD operating system for backup or to store additional data?There are two ways to install a new hard disk under FreeBSD operating system. You can use…
Removing Messages with Zmmailbox based on the Subject
Berikut Script untuk menghapus email berdasarkan akun dan Subject Email. Copy Script berikut : #!/bin/bash # rm_message.sh user@domain.com subject if [ -z "$2" ]; then echo "usage: rm_message.sh user@domain.com <subject>" exit 0 else addr=$1 subject=$2 echo "Searching $addr for Subject: $subject" for msg in `zmmailbox -z -m "$addr" s -l…
How To Secure Nginx with Let’s Encrypt on FreeBSD
Introduction Let’s Encrypt is a Certificate Authority (CA) that provides an easy way to obtain and install free TLS/SSL certificates, thereby enabling encrypted HTTPS on web servers. It simplifies the process by providing a software client, Certbot, that automates most of the steps. In this tutorial, we will show you how…
Bash check if process is running or not on Linux / Unix
Bash check if process is running or not Bash commands to check running process: pgrep command – Looks through the currently running bash processes on Linux and lists the process IDs (PID) on screen.pidof command – Find the process ID of a running program on Linux or Unix-like systemps command – Get information…
Optimasi MySQL dengan MySQL Query Cache
Optimasi MySQL dengan MySQL Query Cache. Pada kesempatan ini kami ingin membagi pengalaman kami dalam meng-optimasi query MySQL di GuestPro Cloud PMS. Latar belakang permasalahan yang dihadapi oleh GuestPro adalah bagaimana caranya mempercepat loading calendar chart dan dashboard yang sering diakses oleh client. Awalnya kami sempat berfikir untuk memasukkan query…
Cara Mengatur Child Processes untuk PHP-FPM di Nginx Server
Cara Mengatur Child Processes untuk PHP-FPM di Nginx Server - Menggunakan web server Nginx tentu bertujuan agar resource yang dibutuhkan oleh web server lebih hemat dan juga performa lebih stabil. Namun jika konfigurasinya salah, web server akan berjalan dengan tidak normal dan tidak menutup kemungkinan bakal sering down.Pada tutorial ini…
Memahami Perintah-perintah Crontab Paling Lengkap
Apa Itu Crontab? Cron daemon merupakan sebuah service yang berjalan di semua distribusi Unix dan Linux. Service ini didesain khususnya untuk mengeksekusi suatu perintah diwaktu-waktu tertentu yang telah ditentukan. Tugas yang dikenal dengan istilah cronjobs ini merupakan hal mendasar yang harus dipahami setiap System Administrator. Cronjobs sangat berguna untuk mengotomatiskan suatu script sehingga mereka…
Mount UFS filesystem Ubuntu
Mounting UFS file systems in Ubuntu should be straight forward. Follow these simple steps to make sure that your are mounting your FreeNAS disks properly in Ubuntu: Load the UFS module (or make sure its loaded) sudo modprobe ufs Make a directory where to mount the files on mkdir ~/ufs_mount…