Order a VPS, Semi- dedicated or Dedicated server in Dallas, London or Australia.
Ask our support team about your hosting requirements.
Host where the staff takes pride in making customers happy
The setup was amazingly simple and the transition was smooth. All my sites are up and the increase in speed is very nice. Thank you for answering my questions and the fast setup.
Working with Linux howtos
- Troubleshooting memory usage
- Moving files around: Setting up FTP
- Backup FTP server: offsite backups that you control
- SCP: an FTP alternative
- Automated incremental backups: Script to automate backups using SSHFS and rdiff-backup
- Securing your server: is your port showing?
- Securing your server: setting up a Linux firewall using IPTables and Webmin
- Preventing Brute Force SSH Attacks
- Backups with rSync
- Automated backups with RSync
- Accurate time with NTP
- Setting a UTC timezone
- Changing a hostname
- Application environment setup (using bash profiles)
Setting a UTC Timezone
Scenario: The hosting company is in country W; the data center is in timezone X; the customer is in country Y; and their users are in country Z.
What timezone should you use for your server? Perhaps you should try Universal Co-ordinated Time (UTC).
vi /etc/sysconfig/clock and change the UTC line to: "UTC=true"
Set localtimezone to UTC: ln -sf /usr/share/zoneinfo/UTC /etc/localtime
If you want to set your timezone to something else, perhaps your personal timezone, then you
find that timezone under /usr/share/zoneinfo and link that to /etc/localtime. For example:
ln -sf /usr/share/zoneinfo/Australia/Brisbane /etc/localtime.

