Git is an open source package for managing version control. The installation of Git on a server must required some dependencies. First we need to install all dependencies for installing Git smoothly. Installing dependencies: [root@server ]# yum -y install zlib-devel…
Author: Arunlal A
How to audit linux server security with Lynis
Server security has an impotent role in web-hosting industry and also it somewhere difficult to manage. Lynis is a tool for managing the server security concern easily. Here I am going to explain the installation and usage of Lynis tool…
How to access kloxo control panel – Port number to access the Kloxo panel
We already discussed about, how do we can install the kloxo control panel on a server. You can refer kloxo installation on centos for more details; Here, I will give some quick way to acces your kloxo control panel and…
How to remove IP Address from cPHulk
1. SSH to your server as root and execute mysql from command line [root@server ~]# mysql 2. From mysql interface type as follows: mysql> use cphulkd; mysql> select IP, BRUTETIME from brutes order by BRUTETIME; mysql> select IP, LOGINTIME FROM…
.htaccess rules for not executing php in images folder
Add the following code in your .htaccess file in images folder for not to execute PHP in images folder: order allow,deny deny from all # secure directory by disabling script execution AddHandler cgi-script .php .pl .py .jsp .asp .htm .shtml…
reset mysql root password from command line Unix/linux
MySQL MySQL is a Relational Database Management System (RDBMS) that runs as a server providing multi-user access to a number of databases. Installation: [root@server ~]# yum install mysql-server mysql php-mysql [root@server ~]# rpm -qa|grep mysql php-mysql-5.1.6-40.el5_9 mysql-5.0.95-5.el5_9 mysql-server-5.0.95-5.el5_9 Steps to…
How to setup private nameservers on a centos machine without cpanel ?
With the help of a control panel it is very easy to setup name-servers on any server. Here, I am explaining how to setup nameservers on centos/rhel servers without using a control panel. Step 1 : Setting up nameservers Checking the…