Installing Docker on CentOS 7

In this tutorial, we are going to install Docker on CentOS 7. Let’s follow the following steps to install Docker on CentOS 7. ...

Juli 1, 2017 · Muhammad Hanif

How to Change Time Zone on CentOS 7

In this tutorial, I am going to show you a quick explaination how to change time zone on CentOS 7. Follow these steps to change time zone on Centos 7: I use Asia/Jakarta for time zone. To do that, we create a symbolic link from Jakarta file to /etc/localtime. rm /etc/localtime ln -s /usr/share/zoneinfo/Asia/Jakarta /etc/localtime date

Januari 24, 2016 · Muhammad Hanif

Installing Oracle Java 8 on Ubuntu 15.10

This tutorial will guide you to install Oracle Java 8 in Ubuntu 15.10 using WebUpd8 PPA repository. ...

November 17, 2015 · Muhammad Hanif

Configure Hostname on Junos OS

The hostname in JunOS is the name given to the device to identify it within the network. This name can be chosen by the administrator and usually reflects the function, location, or other characteristics of the device. This hostname is very important for network management and administration, as it makes it easier to identify and manage devices in a large network. ...

September 22, 2015 · Muhammad Hanif

How to Read Unix Timestamp in Squid’s Access Log

When we use Squid to optimize web delivery, by default squid will log our network traffic. So, when we visit a site for example hanifmu.com, Squid will log our IP Address, date and time , and URL of hanifmu.com that we access. Squid’s access log can be found at /var/log/squid. Below example of squid’s access log: ...

Agustus 25, 2015 · Muhammad Hanif

Install Apache Web Server on CentOS 7

When you access a website, you actually access a web server. What is web server? Web server is a program that delivers web pages to you. Web server uses HTTP (Hypertext Transfer Protocol) or HTTPS (Hypertext Transfer Protocol Secure) protocol. ...

Juli 15, 2015 · Muhammad Hanif

Enable Nginx Status Page

In this tutorial, I will show you how to enable Nginx status page. The Nginx status page is a feature that provides real-time information about the performance and health of an Nginx web server. To enable the Nginx status page, you need to modify your Nginx configuration file and set up a location directive for the status page. ...

Juni 19, 2015 · Muhammad Hanif

How to Use PHP's Built-in Web Server

Since version 5.4, PHP has a built-in web server feature. But the feature is not intended to be a full-featured web server. We can use it for application development, testing purposes, and application demonstration. ...

Muhammad Hanif