Java is used in most application today as their development base of their application. So, you need to install Java Development Kit (JDK). This guide will help you to install either Open JDK or Oracle JDK to your development environment on Redhat (RHEL 7) or CentOS 7. Note: you can …
Linux
Best VPS Hosting Providers
VPS (Virtual Private Server) is a method to share resources in a physical server for several Virtual Server (Virtual Machine). VPS hosting definition can be called as server side technology about operating system and software which enable a full capacity machine divided in a several virtual machines. Each virtual machine …
How to resolve cannot set max_connections through my.cnf
I have some problem with MySql/MariaDB configuration to set max_connections parameter in /etc/my.cnf but MariaDB does not seem to read the parameter from the file. This appears to be some bug in the new mysqld. Setting max_connections to 1000, it was reset to 214 during service restart/startup. # grep -i …
How to enable GUI in VPS
Either you have unmanaged Ubuntu or Cent OS server, it comes with no graphical user interface. If you have no experiences before using Unix command system, you will have trouble and need some time to figure it out. You can enable GUI for your VPS with the help of some …
How to Set Session Timeout in Red Hat
As administrator we use ssh to manage our server, as day to day operation. As i am still in the middle of my work, and ssh session has given me timeout, it will push me to auto-logout when there is no activity. It really pissed me if i still have …
Yum commands fail with error “No module named yum” in RHEL 7
Yum commands fail with following error “No module named yum” in Red Hat Enterprise Linux 7 (RHEL 7). It is quite troublesome. There are some solution out there but none any of them work. After several trial and error, i finally get the yum back to alive again. [[email protected]]# yum …
Docker Tutorial for Beginners
Docker is a platform software that enables you to make, test, develop, and distribute apps fast. Using Docker, you can easily develop and deploy an app to any environment and make sure your code works. This is a convenience feature of docker for us, developers. Docker containerizes software in a …
How to install Docker in RHEL 7.x
As in Docker documentation, they do not support Docker in Red Hat Enterprise Linux system. To use Docker in RHEL, you need maintained CentOS version. Archived version is not supported. Uninstall Old Docker Version First you need to uninstall any old Docker version if exist. yum remove docker \ docker-client …
snmpd an SNMP Agent
snmpd is an SNMP agent for collecting, monitoring, and managing information from managed devices on IP network equipments. This post will guide you how to enable and configure SNMP Server (snmpd) on Linux servers. How to enable SNMP server on Linux All Linux distributions arrives with net-snmp in-box. So, you …
Optimized NGINX Configuration
How I optimized NGINX configuration for my several websites. NGINX is yet robust and powerful web server. Below is my optimized nginx.conf file. user www-data;worker_processes 16;worker_rlimit_nofile 787695;pid /run/nginx.pid;events { worker_connections 8192; multi_accept on; accept_mutex off;}http { ## # Map http agents to block all bots ## map $http_user_agent $limit_bots { …