Switching to Root User on Linux
Running your web hosting server will require many times to run commands as the root user. Many admins choose to block direct root logins, so first, you will need to log in as a normal user and then switch to…
Running your web hosting server will require many times to run commands as the root user. Many admins choose to block direct root logins, so first, you will need to log in as a normal user and then switch to…
Many times we are asked by our clients how to put the site offline but still be able to work on it. We will show in this article how to set a "maintenance mode"/ "down for maintenance" page. WordPress users…
To add a Linux user to your server you will use the adduser command: # adduser <new_username> # passwd <username_password> Here we will add user 'ph1' to the server: root@web [/]# adduser ph1 root@web [/]# passwd ph1 Changing password for…
There a few ways to get the serial number of a computer: 1. In the case of laptops, you will usually find the serial number on a back-label. 2. You can see it in BIOS (basic input/output system) 3. You…
26 April 2020 - PHP 7.4 is available in EasyApache 13 January 2020 - As of writing this article, cPanel doesn't support PHP 7.4 yet. According to the feature request, the PHP 7.4 version will be added in Q1 of…
To list the active FTP connections on your server use: netstat -n | grep :21 root@web [~]# netstat -n | grep :21 tcp 0 0 162.255.200.197:80 17.58.101.200:21715 TIME_WAIT tcp 0 0 162.255.200.197:37224 29.112.111.129:21 TIME_WAIT tcp 0 0 162.255.200.197:21 69.117.199.248:3861 ESTABLISHED…