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. ...
In this tutorial, we are going to install Docker on CentOS 7. Let’s follow the following steps to install Docker 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
This tutorial will guide you to install Oracle Java 8 in Ubuntu 15.10 using WebUpd8 PPA repository. ...
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. ...
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: ...
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. ...
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. ...
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. ...