SSH: How to Fix Permissions on Files and Directories?
Here are the SSH commands to fix your permissions on a mass level: find ~/public_html -type d -exec chmod 755 {} \; find ~/public_html -type f -exec chmod 644 {}…
Secure Socket Shell, SSH, Secure Shell is a protocol and command interface that is UNIX based that helps to gain secure access to remote computers. It is predominantly put to use by network administrators in order to have a control over Web and various other types of servers too in a remote fashion.
Here are the SSH commands to fix your permissions on a mass level: find ~/public_html -type d -exec chmod 755 {} \; find ~/public_html -type f -exec chmod 644 {}…
Log into your server as the root user and find the process PID that you wish to kill. You can do that by issuing the ps command with the aux options. See example below.
ps aux
This will display a process list and each visible process should have a line similar to the one below.
username 31262 0.0 0.0 12168 1752 ? S 00:25 0:00 somecommand
Explaining what server loads really are and how to control them, how to watch loads and signs of server trouble. Server Load Explination The load average tries to measure the…
We've put together some of the more frequently used linux shell commands, and organized them by name so you can easily find a command, their description and how to use…
Have a website where we have just changed domain names, but am having a problem because content has been submitted that occasionally uses absolute URL's which has resulted in lots…
Open a terminal and type: [text]tar xvjf filename.tar.bz2[/text] Which will untar it to the current directory. Normally (99% of the time) it will create it's own subdirectory so you don't…
To check the version date of your OS (Linux distros): [text]uname -v[/text] To find out the release: [text]uname -r[/text] To display and show the complete kernel signature of your hosting…
One of the first things that may concern you is that whether your web hosting company has equipped enough CPUs or Processors on your server as they have allegedly done.…
Some of the hosting providers out there are infamous for overselling who try their best to stuff in as many users (websites) as possible into a single web hosting server.…
Sometimes you would need to extract or create an archive file (i.e to install a script, you would usually download an archive and extract it to continue the installation). The…