Terima Kasih
Telah Berkunjung, Semoga Website ini bermanfaat
Cara Konfigurasi MySql 5.7 Replication Master-Master
Replikasi adalah proses dimana suata data yang tersimpan di dalam database MySql akan otomatis ter-copy secara live ke server kedua (backup). Cara ini dinamakan proses replikasi master-slave, namun cara ini kurang sipp karena apabila master mati maka apabila ada perubahan pada slave server tidak akan berpengaruh pada master server. Karena itu…
A stop job is running to for Mysql Community Server
Error A stop job is running to for Mysql Community Server, Edit /lib/systemd/system/mysql.service change TimeoutSec=600 to TimeoutSec=30
How to Install Memcached on Ubuntu 18.04 & 16.04 LTS
Memcached is a distributed memory object caching system which stored data in memory on key-value basis. It is very useful for optimizing dynamic websites and enabled speed by caching objects in memory. This article will help you to install Memcached with PHP Memcache PECL extension on Ubuntu 18.04, 16.04 and 14.04…
How To Install PHP (7.3, 7.2 & 7.0) on Ubuntu 18.04 & 16.04 via PPA
Install PHP 7.3 on Ubuntu PHP 7.2 stable version has been released. Use the following set of commands to enable PPA for PHP 7.2 in your Ubuntu system and install it. You can use this version for production use also. sudo apt-get install python-software-properties sudo add-apt-repository ppa:ondrej/php sudo apt-get update…
Cara Load Balance MySQL Database dengan HAProxy
Selain bisa digunakan untuk load balancing HTTP Web Server, HAProxy juga bisa digunakan untuk load balancing SQL Database. Sebenarnya sangat banyak sekali yang bisa dilakukan oleh si HAProxy ini, tapi kali ini kita cukup membahas cara Load Balancing MySQL Database dengan HAProxy. Persiapan Disini kita akan menggunakan 3 VM Ubuntu server 16.04. VM…
MySQL Master Master Replication and auto_increment_increment / auto_increment_offset
In this post we will see importance of replication related variables auto_increment_increment & auto_increment_offset with respect to MySQL Master Master setup. Consider we’ve already set a master-master replication. Now create following table on Server1: `id` int(10) NOT NULL auto_increment, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1; The table will…
No networking info and graphs on the networking tab
After all this wasn't a issue caused by cockpit, it had to do with the fact that my Ubuntu 17.04 didn't use network manager for managing the interfaces, I had to install network-manager then set the config to managed=true and also run sudo touch /etc/NetworkManager/conf.d/10-globally-managed-devices.conf sudo service network-manager restart Then I relogged…
Memisahkan 2 ISP untuk 2 LAN dengan Route policy di MikroTik
Kali ini kita akan mencoba memisahkan 2 ISP atau 2 jalur line internet untuk 2 LAN yang berbeda. Lab ini dibuat karena ada yang bertanya apakah bisa memisahkan 2 Koneksi yang ada dikantor nya untuk 2 LAN yang berbeda. Topologi nya kurang lebih seperti ini gambar dibawah ini Untuk konfigurasi…
BGP-Peer, Memisahkan Routing dan Bandwidth Management Mikrotik
Dalam artikel ini, akan dibahas cara untuk melakukan BGP-Peer ke BGP Router Mikrotik Indonesia untuk melakukan pemisahan gateway untuk koneksi internet internasional dan OpenIXP (NICE). Setelah pemisahan koneksi ini dilakukan, selanjutnya akan dibuat queue untuk tiap klien, yang bisa membatasi penggunaan untuk bandwidth internasional dan OpenIXP (NICE). Beberapa asumsi yang…
Reset the MySQL 5.7 root password in Ubuntu 16.04 LTS
This is a bit gnarly. If you have a better method of updating the password without triggering a warning about PASSWORD being deprecated, I'm all ears. # Stop MySQL sudo service mysql stop ############################################# To kill all mysqld process : ---- # killall mysqld mysqld_safe ---- Wait for 10 seconds atleast so…
How to Monitor Apache Performance using Netdata on CentOS 7
In this article, we will explain how to monitor Apache HTTP server performance using Netdata performance monitoring tool on a CentOS 7 or RHEL 7 distribution. At the end of this article, you will be able to watch visualizations of requests, bandwidth, workers, and other Apache server metrics. Requirements: A CentOS 7 Server or RHEL 7 Server with Minimal Install.Apache HTTP server…
Check Internet Speed with speedtest-cli on Debian and Ubuntu
Speedtest-cli is a script written in the Python programming language which measures the internet speed bidirectionally. This application allows you to check your internet speed upon distance in km, it can test against specific servers and it also provides a URL so that you can share your result on the internet.…