How to Find PHP FPM Error Log in Linux

In this tutorial we will locate the php fpm error log file using PUTTY. When we do development and try to setup the server we need this file in order to get all errors and other notices which will help us to solve the issue. FPM or FastCGI Process Manager is an alternative of PHP… Continue reading How to Find PHP FPM Error Log in Linux

How To Import Database Using SSH Linux CentOS

In this tutorial we will import a database using ssh in linux centos. To do that you will have to locate your wp-config.php file and open it. In this file you should find the db name, db user, db password and other things which help wordpress to work, but for this tutorial we need only… Continue reading How To Import Database Using SSH Linux CentOS

How To Create Domain Nameserver Using SSH CentOS 7

In this tutorial I will try to walk you through the process of creating new domain nameserver for your VPS or dedicated server. In order to achive this you will need SSH access, in this tutorial I will use PUTTY and centos 7. First thing we have to do is to install the bind utilities… Continue reading How To Create Domain Nameserver Using SSH CentOS 7

How To Change Httpd.conf File Without Removing Changes On Update

If you made some changes in httpd.conf file you probable notice that all your changes are removed after a while, anyway the time to be removed can vary 2-3 weeks. In the following I will show you how to change the httpd.conf file without lose your modifications. If you open up the httpd.conf look in… Continue reading How To Change Httpd.conf File Without Removing Changes On Update

How to kill a running process in linux CENTOS

In last article we used the command to get all running process from our server. In the following I will show you how to kill a process which is running in the background in centos. To achieve this you only need a two words command, the command “kill” followed by the PID of the process,… Continue reading How to kill a running process in linux CENTOS

How to list all running processes in linux CENTOS

In each server there are a lot of running processes which help the system work corectly. In some cases you can run your own script to achieve a certain functionality, if you run the script in background that means it will run all the time, after the server restart, the script will start with the… Continue reading How to list all running processes in linux CENTOS