Wednesday, December 3, 2008

Using SSH to Connect to Your Linux Shared Hosting Account

You can access your Linux Shared Hosting account using SSH.

NOTE: To connect to your Shared Hosting account using SSH, you need to enable SSH. For more information, see Enabling SSH on Your Linux Shared Hosting Account.

To use SSH, you need an SSH client. Below are examples of popular SSH clients:

After downloading and installing one of these clients, you can use it to connect to your hosting account via SSH. These are your SSH settings:

Host Name or IP Address
Type your host name (domain name) or IP address.
Port
If prompted for the port, type 22.

NOTE: Once you have entered the host name or IP address and the port, open the connection. Once connected, you will be prompted for the user name and password.

User Name or Login as
The primary FTP user name for the account.
Password
This is the same as the primary FTP user password on the account

Tuesday, December 2, 2008

NETEA Hosting Support the Cron Job

What is a Cron Job?

Cron is a standard Linux feature that allows you to schedule tasks, called "Cron Jobs," to run unattended at a specified frequency. For example, you can set the frequency of a job to run twice an hour, Mondays at 8:00 a.m., or weekdays at 12:00 p.m. and 6:00 p.m.

There are several ways to schedule commands to run. Typically, you create a shell script to run as a Cron Job. It runs a list of commands while checking for errors and valid return codes. To run a shell script, set its bit set permissions to "executable." Alternatively, compose a binary executable with a number of arguments. For example, "touch" a file:

/bin/touch $HOME/html/cron_test

The first part of this sample command, "/bin/touch" runs the executable. The second part, "$HOME/html/cron_test" is an argument for the "touch" command.

NOTE: In the example above, the "$HOME" variable is set to the default directory of the hosting account. The "html" directory is the document root of the hosting account.

In addition to shell scripts, your hosting environment supports other language scripts. For example, Perl is a commonly used scripting language that can use scripts as Cron Jobs. In most cases, you can perform this task by specifying to use the executable as the first line of the script. For example:

#!/usr/bin/perl

When a script begins with a line, as in the previous example, and the executable permissions are set, you can specify the line as the command to run for a Cron Job.

The PHP (versions 4 and 5) hosting installations do not support the use of the executable line in scripts. To run a PHP script with Cron, you must set the path to the PHP interpreter as the first element of the command, and then enter the full path of the script you want to run.

The full path to the PHP executables are:

  • PHP version 4: /web/cgi-bin/php
  • PHP version 5: /web/cgi-bin/php5