Guide to Technology

eg: UK or Brides UK or Classical Art or Buy Music or Spirituality
 
eg: UK or Brides UK or Classical Art or Buy Music or Spirituality
 
Business & Money
Technology
Women
Health
Education
Family
Travel
Cars
Entertainment
SD Editorials
Online Guide and article directory site.
Foodeditorials.com
Over 15,000 recipes & editorials on food.
Lyricadvisor.com
Get 100,000 Lyric & Albums.
  • Business & Money
    • A Guide to Business
    • Guide to Finance
    • Ideas for Marketing
    • Legal Guide
    • Guide to Insurance
    • Lettre De Motivation
    • Guide to the Stock Market
    • Human Resource Career
    • Sales Marketing
    • Forex & Trading
    • Advertising & Marketing
    • Startup Guide
  • Technology
    • Guide to Technology
    • Cell Phones
    • Computer Software
    • IT Hardwares
    • Internet
    • Online Security
    • Cameras
    • Search Engine Optimization
    • Science & Technology
  • Women
    • Guide to Women
    • Relationship Advice
    • Marriage
    • Jewelry
    • Pregnancy
    • Fashion Style
    • Divorce Guide
    • Wedding Guide
    • Dating Guide
    • Natural Beauty
  • Health
    • Guide to Health
    • Guide to Medical
    • Plastic Surgery
    • Weight Loss
    • Sports
    • Body Wellness
    • Cancer Treatment
    • Common Illness
    • Health & Lifestyle
  • Education
    • Military Service
    • Politics and Policy
    • Arts & Humanities
    • Education and Teaching
    • Learn Languages
    • Colleges & Universities
  • Family
    • Quality Home Improvement
    • Hobbies and Interests
    • Family Guide to
    • Pet Guide
    • Loans Guide
    • Credit Cards
    • Gardening Guide
    • Home Security
    • Real Estate
    • Home Decor
    • Gift & Present
  • Travel
    • The Travel Guide
    • Adventure Travel
    • Cruise Ships
    • Beach Holiday
    • Travel Accommodation
    • Holiday Destinations
  • Cars
    • Information on Cars
    • Traffic Violations
    • Auto Insurance
    • Trailers
    • Sport Cars
    • The Bikes
  • Entertainment
    • Entertainment Guide
    • World Music
    • Photo & Video
    • Television & Games

Dedicated Server Set Up

    View: 
When your website earns enough money and when its traffic cannot be handled by shared webhosting, it is usually the right time to buy/rent a dedicated server. This can be, however, very unpredictable and this article is going to show you some of the most important changes which you will face naturally.



The first thing you must consider is security. Since shared hostings are usually secured very well, on a dedicated server you're responsible for all actions yourself. Security can be divided into a couple of groups, and these can be called: Filesystem security, Database security, Access security. Filesystem must be secured from attacks by several handling procedures. The fist is very simple; Never use attributes of 777 or 666 for directories or files. Such attributes would mean that these files or directories can be modified by anyone from outside. Instead, use 755 for directories and 644 for files. If your scripts need access to files and directories, modify their owner. This can be done easily by typing this command when you're logged to your server via SSH:

chown apache file_name

This command will change the owner of file/directory to apache. You will not be able to modify such files from your ordinary account any more, however you will be able to do so from your root account. It's possible to play with users groups in order to grant some ordinary users access like apache, but if you're not experienced enough, leave it for now.

The second security risk is enabled directory listing. Enabled directory listing means that a user types http://yourdomain.tld/images into the browser and he/she gets all files or directories which are present in that folder. Of course, it can be something else than ?images? and it may be eventually dangerous to access such directories. Dangerous for you, not for a hacker. For this purpose, it is necessary to modify your .htaccess file. It is localed in the root folder of your website. Adding this into your .htaccess will ensure all directories won't return directory listing:

Options -Indexes

In additon, define pages which are returned in case of some error. These errors can be 404, 500 or any which may occur. Add these lines into the .htaccess file:

ErrorDocument 401 /some_url

ErrorDocument 403 /some_url

ErrorDocument 404 /some_url

ErrorDocument 500 /some_url

?some_url? should be a document available on your website. For example, ?ErrorDocument 401 /errors/error.html?.

If you're using PHP scripts, make sure that error_reporting is configured properly. Basically, the Apache server can be configured to ignore errors and not to save them in the error_log files. However, the error_reporting() function should be called at the beginning of each script. It's purpose is essential; It will prevent your server from being clogged up with unnecessary error_log data. Add this line to your scripts:

error_reporting(E_ALL ^ E_NOTICE);

After this improvement, you will notice only a few lines in the error_log files. Something like this:

[Sun Aug 24 07:42:25 2008] [error] [client 66.249.70.122] File does not exist: /home/server/public_html/google

[Sun Aug 24 07:55:25 2008] [error] [client 68.196.186.232] File does not exist: /home/server/public_html/entry.point, referer: some_url

[Sun Aug 24 09:06:09 2008] [error] [client 71.126.173.185] File does not exist: /home/server/public_html/_vti_bin

[Sun Aug 24 09:06:10 2008] [error] [client 71.126.173.185] File does not exist: /home/server/public_html/MSOffice

Of course, paths can be different and also files which don't exist will differ. These requests are usually made by bots, mainly bots which try to find weak places on your server. Such random attempts may lead to hacking attempts. Or these attacks can be focused to send email spam; This activity can be recognized by seeing such lines in your error_log:

[Mon Aug 18 07:11:11 2008] [error] [client 71.181.242.135] script not found or unable to stat: /var/www/cgi-bin/formmail.pl

Naturally, this attempt was not successful. If you're aware of what's behind these queries, you can still block IP addresses from accessing your server. There are various methods how to achieve it, from .htaccess modification to configuring your external (hardware) firewall.

The database security means that you should not use root access for your websites. Many webmasters do this mistake and it means nothing but allowing dangerous actions to be done in MySQL. For example, imagine that someone broke your website's security and is able to run some MySQL commands on your server through some form available on your website. Picture a situation that your website uses root access to MySQL; All commands can be executed. Now picture a different situation when you allow only SELECT and eventually INSERT, DELETE, MODIFY within one database. OK, it's still possible to delete or modify records, or even delete them, but only within 1 database. If you configured a script to do daily backups of databases, then it's possible to restore all tables within a few seconds.

In addition, you can use allow a user to perform only the SELECT command. Other sensitive scripts may be using another user who can perform the INSERT, DELETE and MODIFY, but these scripts may be secured much better than ordinary not tested yet.

Another way how to secure MySQL from being attacked is to avoid usage of ?or die (mysql_error ());? because it does nothing else but showing potentially dangerous MySQL syntax to hackers and all visitors. Instead, use some general message and send yourself an email automatically from the script including all details about line and error which occurred; ?or warn_webmaster(__line__,__file__);? for instance, where the warn_webmaster function would email you with the __line__ and __file__ variables along with the mysql_error() message. The function would end like die(); which would immediately terminate the script.

The third part of securing your server from dangerous activities is based on secure passwords. Never use same passwords for two server accounts, never use password which you used somewhere else. Never use short passwords, never use passwords without mixing uppercase, lowercase and numbers together. Never login from internet cafe or other public computers/networks.
Dedicated Server Set Up
For any corporation that requires dedicated web hosting but doesn't have the expertise to oversee and maintain it, a managed dedicated server plan is the perfect option. To date there are no industry standards to clearly define the management role of dedicated service providers, with hosts offering varying levels of support for a wide variety of prices. Services on offer include operation administration, firewall and antivirus updates, security audits, data back-ups, disaster recovery, and general system monitoring.

The choice of managed dedicated servers on the market is vast and it is important for a corporation to feel they trust in the knowledge and integrity of the web hosting provider. After all, a reliable and dynamic website is vital for customer loyalty. There are a number of key essential features to look out for that help ensure value for money and reduce the risk of choosing an under par website host.

Acquisition and installation

should provide a dedicated server package that caters to the client's specific requirements. It is vital to ensure the server provider can offer the kind of scalability and bandwidth the organization requires.

What services are included?

Some services are included in the monthly fee and some are additional. It is also important that a host can react quickly to implement and install new requirements for one-off special projects.

Performance guarantees

The major managed website hosts now commonly offer 99.99% network and data-centre power uptime. This is only possible if the host has an adequate power back-up system in place and a dedicated team of support and monitoring staff.

Help and support

Many of the top managed servers offer 24 hour help and support, 7 days a week, 365 days per year. One way to test the support desk is to search the various review forums online, which have endless customer reviews with honest accounts of their experiences with a provider. An essential consideration is whether the host provides a dedicated support team. If not, it is likely you'll spend ages on hold getting through to a different customer support worker every time. The ideal situation is direct access to a dedicated service representative who only works with a handful of accounts.

Hardware replacement time

The fastest offers on the market are for hardware replacement within 15 minutes of a failure, with more companies offering replacement within one hour.

Premium brand hardware

Hardware failure is still one of the largest causes of IT service failure and use of premium brand hardware is a must with the inclusion of RAID, which provides two or more redundant disks in the event of failure.

Application monitoring

One key feature of a managed is the regular monitoring of the website, network, and server to ensure optimum performance.

Regular data back-up

Regular data back-ups are vital to protect website and customer information in the event of crashes.

Security monitoring

The host should be responsible for keeping updated on all of the latest security updates to ensure all reasonable steps are put in place to prevent a security breach. In the case of lost data, the host should be able to react quickly to recover lost information and prevent compromising customer security.

Power efficiency

One final consideration is to analyse the power efficiency of the provider. Nowadays customers judge companies on their ability to minimize the impact they have on the environment. By selecting a server provider which aims to cut its energy consumption as much as possible and use renewable energy sources is a positive public relations exercise for any corporation.
More Articles from
Center For Leadership Development
A Company Web Site
Ad Free Web Host
Best Company In India
Best Deals On Treadmills
Bsnl Broadband Tariff Plan
Certification Coach Life Online
Cheerleading Not A Sport
First Birthday Invitations Wording
How To Design Templates
How To Stop Addiction
Html Editor For Windows
Logo Design For Free
People Public Records Now
Using A Web Service
Web Host No Ads
Checking for Spyware on your Hardrive.
Choosing a Web Package - A Guideline
cheap webhosting -methods
Choice, Responsibility And Consequences
Choosing A Talisman For Affluence
» More on
Web Site Development
  • Related Articles
  • Author
  • Most Popular
•Admin On Dedicated Server, by Amy Nutt
•Backgammon Board Set Up, by Nicky Pilkington
•Battlefield Vietnam Dedicated Server, by George Chao
•Beach Wedding Set Up, by Jerry Leung
•Dedicated Server Set Up, by Jan Hvizdak
About Author
Both Jan Hvizdak & Amy Nutt are contributors for EditorialToday. The above articles have been edited for relevancy and timeliness. All write-ups, reviews, tips and guides published by EditorialToday.com and its partners or affiliates are for informational purposes only. They should not be used for any legal or any other type of advice. We do not endorse any author, contributor, writer or article posted by our team.

Jan Hvizdak has sinced written about articles on various topics from Cars, Bonsai and Cars. Jan Hvizdak, the author of this article is a consultant of and works for
Best Tips On Getting Pregnant
If you have to impersonate several satisfied customers, the best trick is to apply some variations in your writing style in each testimonial so that you can baffle even the shrewdest of cynics.
 
A Guide to Business | Guide to Technology | Guide to Women | Guide to Health | Family Guide to | Travel & Vacations | Information on Cars

EditorialToday Guide to Technology has 3 sub sections. Such as Technology, Increase Adsense Revenue and Information & Technology. With over 20,000 authors and writers, we are a well known online resource and editorial services site in United Kingdom, Canada & America . Here, we cover all the major topics from self help guide to A Guide to Business, Guide to Finance, Ideas for Marketing, Legal Guide, Lettre De Motivation, Guide to Insurance, Guide to Health, Guide to Medical, Military Service, Guide to Women, Pet Guide, Politics and Policy , Guide to Technology, The Travel Guide, Information on Cars, Entertainment Guide, Family Guide to, Hobbies and Interests, Quality Home Improvement, Arts & Humanities and many more.
About Editorial Today | Contact Us | Terms of Use | Submit an Article | Our Authors