Category Archives: Tutorial

How to install PHP module/Extension on EA4

Install PHP curl extension Run the command yum install “ea-phpXX-php-curl” to install curl Command to Install curl for PHP version 5.4 : yum install ea-php54-php-curl Command to Install curl for PHP version 5.5 : yum install ea-php55-php-curl Command to Install curl for PHP version 5.6 : yum install ea-php56-php-curl Command to Install curl for PHP… Read More »

Install Apache+PHP on CentOS server

Step 1 – Login to your server Step 2 – Install Apache web server on CentOS. Issue following command: yum install httpd Step 3 – Install PHP5 and common PHP module. The most basic command to install latest PHP version is following: yum install php That’s it. Now you have Apache and PHP5 installed. But… Read More »

Rsync menggunakan non-standard port SSH

Berikut adalah cara mentransfer file dengan rsync menggunakan non-standard port ssh: rsync -avz -e ‘ssh -p nomorport’ /lokasi/file/asal user@remoteip:/lokasi/file/tujuan Sebagai contoh apabila anda ingin mentransfer file ke remote server dengan IP 192.168.1.10 dan port ssh 2222, maka gunakan perintah berikut: rsync -avz -e ‘ssh -p 2222’ /lokasi/file/asal user@192.168.1.10:/lokasi/file/tujuan Semoga bermanfaat 🙂