<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Version Next -Dedicated Server, Reseller Hosting, Linux Window Managed Dedicated Web Hosting, Domain Registration, SEO, Bulk SMS, short code, email list manager &#187; Linux Server Tips</title>
	<atom:link href="http://www.version-next.com/blog/index.php/category/tutorials/linux-server-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.version-next.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 27 Jan 2012 08:22:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Reset your lost MySQL root password.</title>
		<link>http://www.version-next.com/blog/index.php/reset-your-lost-mysql-root-password/</link>
		<comments>http://www.version-next.com/blog/index.php/reset-your-lost-mysql-root-password/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 12:11:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dedicated Servers]]></category>
		<category><![CDATA[Linux Server Tips]]></category>
		<category><![CDATA[Linux sever]]></category>
		<category><![CDATA[Managed dedicated server]]></category>
		<category><![CDATA[MS SQL Dedicated Server]]></category>
		<category><![CDATA[MySQL Server]]></category>
		<category><![CDATA[dedicated server]]></category>
		<category><![CDATA[dedicated server advantages]]></category>
		<category><![CDATA[Dedicated Server Hosting]]></category>

		<guid isPermaLink="false">http://www.version-next.com/blog/?p=2465</guid>
		<description><![CDATA[Have you ever forgotten your MySQL root password? Chances are, you have at least a dozen passwords for your server, computers, phones, email, social network, and bank account. It is tough enough to remember commonly-used passwords without even thinking about your MySQL password.   It’s one of those things that just take place despite the numerous [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Have you ever forgotten your MySQL root password? Chances are, you have at least a dozen passwords for your server, computers, phones, email, social network, and bank account. It is tough enough to remember commonly-used passwords without even thinking about your MySQL password.   It’s one of those things that just take place despite the numerous precautions one might take. As a result, you are locked out of your <a href="http://www.version-next.com/dedicated-servers/index.html"><span style="text-decoration: underline;">database server</span></a>. You can’t create new databases and are left with little control over the state of your database server. In such situations knowing how to regain root access to your database server comes in handy. So here’s what you can do to reset the password for the root user in MySQL on both Windows and Linux.</strong></p>
<p><strong>Linux Users:</strong></p>
<p><strong>1. Log into your server via SSH and then become root:</strong></p>
<blockquote><p><strong>$ su</strong></p></blockquote>
<p><strong>2. Stop the current MySQL instance (note that this will halt any sites that depend on it, so make sure you do this during the lowest possible traffic time).<br />
3. Start MySQL in safe mode and skip privileges checks:</strong></p>
<blockquote><p><strong># mysqld_safe –skip-grant-tables &amp;</strong></p></blockquote>
<p><strong>4. Next, log into MySQL without a privileges check:</strong></p>
<blockquote><p><strong># mysql –user=root mysql</strong></p></blockquote>
<p><strong>5. Finally, reset the password by updating the user table of the default mysql database:</strong></p>
<blockquote><p><strong>UPDATE user SET Password=PASSWORD(‘newrootpwd’) WHERE user=’root’;<br />
FLUSH PRIVILEGES;</strong></p></blockquote>
<p><strong>(</strong><strong>Note: replace “newrootpwd” with your actual password, preferably one you can remember)<br />
6. Restart MySQL to get out of safe mode:</strong></p>
<blockquote><p><strong># /etc/init.d/mysql restart.</strong></p></blockquote>
<p><strong>Windows Users:</strong></p>
<p><strong>Log on to your server as the Administrator. Kill the MySQL server if it’s running. To do this you need the </strong><strong>Windows Services Manager, so click on the </strong><strong>Start Menu, then go to the </strong><strong>Control Panel, then to the </strong><strong>Administrative Tools, and select </strong><strong>Services. Here look for the MySQL <a href="http://www.simplehelp.net/2008/11/26/how-to-reset-a-lost-mysql-root-password/">server</a> and stop it. If it’s not listed there and MySQL is till running it means that MySQL is not running as a service. In that case you need to load the Task Manager which you should be able to access using the key combination of </strong><strong>Ctrl+Alt+Del. Now kill the MySQL process.</strong></p>
<p><strong>With the MySQL process stopped you need to force a change of passwords on MySQL using a combination of the </strong><strong>UPDATE and </strong><strong>FLUSH options. So launch your favorite text editor and create a new file. Enter the following text into the file replacing “NewMySQLPassword” with your new password:</strong></p>
<blockquote><p><strong>UPDATE mysql.user SET Password=PASSWORD(”NewMySQLPassword”) WHERE User=’root’;<br />
FLUSH PRIVILEGES;</strong></p></blockquote>
<p><strong>What the first line does is that it updates the value of the field “Password” in the table mysql.user for the user “root” to “NewMySQLPassword”. The second line flushes the old set of privileges and makes sure your new password is used everywhere. Save this text as </strong><strong>C:\mysql_reset.txt.</strong></p>
<blockquote><p><strong>Next, you need to start your MySQL server passing this file as a configuration parameter. Launch a terminal by going to the </strong><strong>Start Menu, then to </strong><strong>Run, and then type </strong><strong>cmd and hit Enter. Now enter the following command:</strong></p></blockquote>
<blockquote><p><strong>C:\mysql\bin\mysqld-nt &#8211;init-file=C:\mysql_reset.txt</strong></p></blockquote>
<p><strong>Once the server is done starting delete the file </strong><strong>C:\mysql_reset.txt. Your MySQL root password should be reset now. Now restart your MySQL server again. Go back to the Windows Services Manager again to do that. Your new MySQL root password should work for you now.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.version-next.com/blog/index.php/reset-your-lost-mysql-root-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Many IP Addresses Do I Need?</title>
		<link>http://www.version-next.com/blog/index.php/how-many-ip-addresses-do-i-need/</link>
		<comments>http://www.version-next.com/blog/index.php/how-many-ip-addresses-do-i-need/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 05:40:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dedicated Servers]]></category>
		<category><![CDATA[Linux Server Tips]]></category>
		<category><![CDATA[Reliable web hosting]]></category>
		<category><![CDATA[Version Next Technologies]]></category>
		<category><![CDATA[WHM Server Tutorial]]></category>
		<category><![CDATA[Dedicated Hosting]]></category>
		<category><![CDATA[dedicated server]]></category>
		<category><![CDATA[Dedicated Server Hosting]]></category>

		<guid isPermaLink="false">http://www.version-next.com/blog/?p=2306</guid>
		<description><![CDATA[As you may have heard, there are a finite number of IP addresses available to Internet Service Providers (ISP). Once they are all used up, the only way to get more is to reassign them. In technical terms, the limited number of IP addresses refers to the IPv4 address space, while there is plenty of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.version-next.com/dedicated-servers/index.html"><img class="alignright" src="http://www.version-next.com/blog/wp-content/uploads/2010/08/server.jpeg" alt="" width="170" height="128" /></a>As you may have heard, there are a finite number of IP addresses available to Internet Service Providers (ISP). Once they are all used up, the only way to get more is to reassign them. In technical terms, the limited number of IP addresses refers to the IPv4 address space, while there is plenty of room in the IPv6 address space.</p>
<p>Until ISPs begin fully adopting IPv6 technology, however, IP addresses will be sold at a premium. The question is: how many do you really need for your <strong><a href="http://www.version-next.com/index.html">dedicated server?</a></strong> The answer really depends on where and how your server is hosted, the number and type of websites you are running, and how you use your server.</p>
<p>For a server with a single enterprise website and one central focus, a single dedicated IP may be all you need. This, however, assumes you also have nameserver IPs on another machine or from a service. If your server is housed in a remote datacenter, your nameservers may be managed by the provider. If not, you will need at least two IP addresses.</p>
<p>If you have more than one website, you can usually use shared IPs for most of them, unless they require SSL for ecommerce or community logins. For encrypted sites, you will need an IP for each one, if you want authenticated SSL certificates.</p>
<p>If you are using your server for web hosting, you may need to regularly acquire IP addresses for your customers, and you should use a service that will allow you to quickly and easily add more. Often times, you can purchase them in bulk, depending on the number you need.</p>
<p>It is a good idea to know ahead of time how many IP addresses you think you might want, but even if you repurpose your server at a later date, you should still be able to add more IPs without any difficulty.</p>
<p>I’ve seen a lot of reasons given by ESPs for why they need so many IP addresses:</p>
<ol>
<li><span style="text-decoration: underline;">I need at least one IP address per customer, to handle IP      based reputation</span></li>
<li><span style="text-decoration: underline;">I need many IP addresses so my MTAs can handle the volume of      mail sent</span></li>
<li><span style="text-decoration: underline;">I need many IP addresses so that I can work around ISP      throttling limits</span></li>
<li><span style="text-decoration: underline;">I need multiple IP addresses per customer so that that      customer can deliver mail in a timely manner</span></li>
<li><span style="text-decoration: underline;">I need multiple IP addresses per customer so as to manage      filtering issues</span></li>
<li><span style="text-decoration: underline;">I need multiple IP addresses in different locations to provide      redundancy against network outages</span></li>
<li><span style="text-decoration: underline;">I need multiple IP addresses in different locations so as to      provide redundancy against blacklisting of my ISP</span></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.version-next.com/blog/index.php/how-many-ip-addresses-do-i-need/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Monitoring Your VPS or Dedicated Server.</title>
		<link>http://www.version-next.com/blog/index.php/monitoring-your-vps-or-dedicated-server/</link>
		<comments>http://www.version-next.com/blog/index.php/monitoring-your-vps-or-dedicated-server/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 12:50:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dedicated Servers]]></category>
		<category><![CDATA[Linux Server Tips]]></category>
		<category><![CDATA[Reliable web hosting]]></category>
		<category><![CDATA[VPS Hosting]]></category>
		<category><![CDATA[VPS Windows Hosting]]></category>
		<category><![CDATA[Windows 2003 Server Tips]]></category>
		<category><![CDATA[Windows Plesk Server]]></category>
		<category><![CDATA[Dedicated Hosting]]></category>
		<category><![CDATA[dedicated server]]></category>
		<category><![CDATA[Dedicated Server Hosting]]></category>

		<guid isPermaLink="false">http://www.version-next.com/blog/?p=2244</guid>
		<description><![CDATA[One of the most important factors that you should be constantly monitoring with your VPS or dedicated server, especially if you host clients on it, is the uptime of it; this means that you should always be using some type of monitoring service to ensure that your VPS or dedicated server, and if it isn’t [...]]]></description>
			<content:encoded><![CDATA[<p><a href="www.version-next.com/index.html"><img class="alignright" src="http://www.version-next.com/blog/wp-content/uploads/2010/08/server.jpeg" alt="" width="153" height="115" /></a>One of the most important factors that you should be constantly <strong>monitoring</strong> with your VPS or <span style="text-decoration: underline;"><a href="http://http://www.version-next.com/index.html"><strong>dedicated server</strong></a></span>, especially if you host clients on it, is the uptime of it; this means that you should always be using some type of monitoring service to ensure that your VPS or <strong>dedicated server</strong>, and if it isn’t you need to ensure that you are notified of the down time ASAP so that you are able to sort the problem out yourself, or <strong>notify</strong> the support team of your web host to ensure that the down time caused is minimal and that your <strong>server</strong> will come back online ASAP.</p>
<p>If you are a web host which is providing a responsible and sensible service, then in your terms and conditions you will probably have <strong>conditions</strong> set out regarding up <strong>uptime</strong>, which in most cases states things such as if a customer’s service is down for over a certain amount of time, or if the <strong>monthly uptime</strong> record doesn’t meet the one which is guaranteed then customers are able to request a <strong>refund</strong>; this in itself should provide you with the motivation to fix a <strong>server problem</strong> if you have set such rules out in your terms and conditions, since most <strong>companies</strong> wouldn’t want a servers worth of customers requesting refunds since they don’t think they have been provided with the amount of uptime which has been <strong>guaranteed</strong>. Most web hosts use their own internal monitoring system for their servers, since in most cases it will alert them quicker to a problem than an external solution would since an internal system is most likely monitored more closely, but with an <strong>external solution</strong> in place as backup in case the internal one fails. One thing to consider is that most external monitoring services monitor your website or <strong>server</strong> from multiple geographically different locations which means that they are able to provide a more reliable source of <strong>information</strong> when it comes to checking to see whether your VPS or <strong>dedicated server</strong> is online or not when compared to a monitoring system which is monitoring your VPS or <strong>dedicated server</strong> from one location or from one country or <strong>data center</strong>, which means that the produced results might not always be <strong>accurate</strong> and <strong>reliable</strong>.</p>
<p>When considering <strong>uptime solutions</strong> for your VPS or dedicated server, you should always take into consideration the effect that a program might have on the performance of your VPS or dedicated server; for example if you use an internal solution then you might need to install an ‘agent’ <strong>program</strong> which posts data about your server back to the master monitoring node, since information such as the speed that your server’s CPU is running at and the amount of <strong>memory</strong> that your server has left are factors that can only be gained by <strong>internal access</strong> to your server unlike other factors such as whether certain services are running or not that can be found out easily via pinging the port which the service runs on. You want to try and maximize the <strong>uptime</strong> of your VPS or <strong>dedicated server</strong>, which means that you should optimize the programs that you have installed on it, so that they don’t use up too many resources since the most common reason for a <strong>server crashing</strong> is that there aren’t enough resources available to keep the operating system going, which means that it just crashes because it is unable to run for any longer on the scarce <strong>resources</strong> that are available for it.</p>
<p><strong>Conclusion</strong></p>
<p>In conclusion, with the use of either <strong>internal</strong> or <strong>external</strong> <strong>monitoring systems</strong>, you are able to maximize the uptime of your <strong>VPS Hosting</strong> or <strong>dedicated server</strong>, thus ensuring that your customers, if you host them on your <strong>server</strong>, are happy with the service and level of uptime that you have been able to provide them with; you are also ensuring if you use your server for other purposes such as for receiving emails or for a website that emails are received as often as possible, and that visitors will still return to <strong>your website</strong> thus increasing your amount of <strong>revenue</strong> that you earn from adverts if applicable. You can also optimize your VPS or <strong>dedicated server</strong> as well as the programs that it runs to ensure that the amount of resources used is far lower, thus ensuring that you can install some more <strong>applications</strong> on your VPS or dedicated server or leave it as it is so that it is able to run fast; if running cPanel, then you can use the new <strong>optimized version</strong> since this will run much fast on a lower specification machine since it has been designed to take up less <strong>memory</strong> and utilize less <strong>CPU</strong>.</p>
<p>If you choose to use an internal monitoring system then you gain the ability to monitor internal factors of your <strong>server</strong>, such as the amount of CPU and memory that is available for use by the operating system and programs that you have installed on your <strong>VPS</strong> or <strong>dedicated server</strong> – this is very important if you are running a server which is hosting web hosting and design clients, since you don’t want their websites going down because of a lack of <strong>resources</strong>. Other factors which you might want to consider when choosing a monitoring system is the accuracy of the results that are collected and in turn produced; for example, with an external monitoring system you will want to be considering how spread the multiple <strong>geographical</strong> monitoring stations are and with the case of an internal monitoring system, you should find out whether internal server resources can be monitored or not – this will give you an advantage since you will be able to monitor all aspects of your server then, both internal and external which means that <span style="text-decoration: underline;"><a href="http://http://www.version-next.com/index.html"><strong>accurate</strong></a></span> results should be produced.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.version-next.com/blog/index.php/monitoring-your-vps-or-dedicated-server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why use a Linux Dedicated Server?</title>
		<link>http://www.version-next.com/blog/index.php/why-use-a-linux-dedicated-server/</link>
		<comments>http://www.version-next.com/blog/index.php/why-use-a-linux-dedicated-server/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 12:51:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[About Web Hosting]]></category>
		<category><![CDATA[Dedicated Servers]]></category>
		<category><![CDATA[Linux Server Tips]]></category>
		<category><![CDATA[dedicated server]]></category>
		<category><![CDATA[Linux web hosting]]></category>
		<category><![CDATA[Windows Dedicated server hosting]]></category>

		<guid isPermaLink="false">http://www.version-next.com/blog/?p=2170</guid>
		<description><![CDATA[As you may already know, linux is the most widely used operating system on the market. The basic concept behind linux when it was created in 1991 is to offer great software absolutely free and open source. Linux was created under the GNU GPL license which is open source and therefore people can use its [...]]]></description>
			<content:encoded><![CDATA[<p>As you may already know, linux is the most widely used operating system on the market. The basic concept behind linux when it was created in 1991 is to offer great software absolutely free and open source. Linux was created under the GNU GPL license which is open source and therefore people can use its code and change it for their own needs. Since then, linux has gained a lot of popularity and today it is used of many <a href="http://www.version-next.com/dedicated-servers/index.html">linux dedicated servers.</a></p>
<p>The most popular factor when a business is considering a dedicated server is cost. Most linux operating systems are completely free, which enables gogax to offer cheap dedicated servers. As opposed to a Windows Dedicated Server which requires licensing fees for the operating system, people will tend to prefer linux for that matter.<br />
Another factor is how reliable and secure the linux operating system has grown to become. We have seen some linux servers running for over 4 years without a single reboot needed. If we compare that to windows servers, they often need reboots after os updates, software installation and other tasks performed on the server. For a personal user this is no big deal, but if online presence is crucial to your business or online store, a reboot can mean loss of business. Many people will argue whether linux or windows is more secure and stable. With time, we personally have found that linux is more stable and can run as a web server for years without any intervention. Unfortunately, it is not the case for Windows servers today.<br />
Linux has some great functions on dedicated servers. It does http web server (apache), php programming language, mysql database and many other features. Those are included in a default setup of the linux operating system. All these elements together offer very stable and secure performance. The best part of it all, many developers have made great free software that runs on linux operating systems. Those are all freely available on a linux dedicated server.<br />
<strong>Security:</strong> One of the main reasons that people like Linux is that it’s more secure than Windows. The main reason for this is that Linux hasn’t been around as long, and there aren’t as many viruses built to get into it yet. This means that your website information can be somewhat safer on a Linux host.<br />
<strong>Cost:</strong> Because it’s open source software, Linux hosting solutions are cheaper than Windows hosting options. Although most shared server options are really affordable right now, Linux often presents even more affordable options.<br />
<strong>Scaling:</strong> If you’re going to start your website small and work it up to a larger site without changing servers, Linux hosting is definitely a good option. This type of service has very efficient scalability, and it’s really easy to keep your website going on the same platform without making any major changes.<br />
<strong>Options:</strong> Because Linux is one of the most popular hosting options on the Internet, there are literally tons of options with it. You can find hundreds of hosting companies, many of which offer excellent services and extras to their packages.<br />
<strong>So why not use a linux dedicated server.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.version-next.com/blog/index.php/why-use-a-linux-dedicated-server/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Hosting and Cloud Computing.</title>
		<link>http://www.version-next.com/blog/index.php/hosting-and-cloud-computing/</link>
		<comments>http://www.version-next.com/blog/index.php/hosting-and-cloud-computing/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 12:29:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[About Web Hosting]]></category>
		<category><![CDATA[Linux Server Tips]]></category>
		<category><![CDATA[Mixed Website News]]></category>
		<category><![CDATA[Reseller hosting]]></category>
		<category><![CDATA[Dedicated Hosting]]></category>
		<category><![CDATA[dedicated server]]></category>
		<category><![CDATA[Linux web hosting]]></category>

		<guid isPermaLink="false">http://www.version-next.com/blog/?p=2067</guid>
		<description><![CDATA[What Does the Future Hold? The promise of cloud computing is huge and many of us in the hosting industry have solutions or ideas on what the hosting future looks like. The only fact that remains constant is the constant amount of change that moves through this industry. It is our belief that hosting providers [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.version-next.com/dedicated-servers/index.html"><strong>What Does the Future Hold?</strong></a></p>
<p>The promise of cloud computing is huge and many of us in the hosting industry have solutions or ideas on what the hosting future looks like. The only fact that remains constant is the constant amount of change that moves through this industry.</p>
<p>It is our belief that hosting providers and datacenters need the right set of tools to manage the increasing complex computing configurations customers demand. CloudLinux was created for just this purpose. As we look to the future, there are some themes we at Cloud Linux think are important to consider when thinking about what lies ahead.</p>
<p><strong>Space</strong><br />
For hosting providers, space is a big deal. Whether it is space on a shared server or space in your datacenter, space costs money. There was a time when bigger was better – the more servers you had, the more important you must be. But that may be changing. With the cost of datacenter space, electricity and cooling on the rise, it is time to reconsider this idea. There just is no such thing as infinite datacenter space or unlimited dollars to cover management costs.  So how do you maximize the space you have? Density and stability are the keys to solving the growing space issues. Improving server stability and therefore increasing density helps hosting providers do more with the same amount of infrastructure.</p>
<p><strong>Security</strong><br />
Another key theme for the future is security. Headlines are filled with cyber threats and identity theft. Consumers, enterprises and small businesses alike are increasingly concerned about security.  Because of this dynamic they will continue to put pressure on their service providers to improve security and protect their data, identities and networks.</p>
<p><strong>Efficiency</strong><br />
As the complexity of computing grows, we need to take efficiency to the next level. To keeping servers running efficiently as well as making our technical staff manage more and more complex solutions, it becomes increasingly important to maximize the efficiency of operations. At Cloud Linux, our solutions are purposely built with this goal in mind.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.version-next.com/blog/index.php/hosting-and-cloud-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips on keeping your Ubuntu Linux server secure</title>
		<link>http://www.version-next.com/blog/index.php/tips-on-keeping-your-ubuntu-linux-server-securetips-on-keeping-your-ubuntu-linux-server-secure/</link>
		<comments>http://www.version-next.com/blog/index.php/tips-on-keeping-your-ubuntu-linux-server-securetips-on-keeping-your-ubuntu-linux-server-secure/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 11:37:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Server Tips]]></category>
		<category><![CDATA[Linux sever]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux server]]></category>

		<guid isPermaLink="false">http://www.version-next.com/blog/index.php/2010/04/07/tips-on-keeping-your-ubuntu-linux-server-securetips-on-keeping-your-ubuntu-linux-server-secure/</guid>
		<description><![CDATA[s a system administrator, one of your chief tasks is dealing with server security. If your server is connected to the Internet, for security purposes, it&#8217;s in a war zone. If it&#8217;s only an internal server, you still need to deal with (accidentally) malicious users, disgruntled employees and the guy in accounting who really wants [...]]]></description>
			<content:encoded><![CDATA[<p>s a system administrator, one of your chief tasks is dealing with  server security. If your server is connected to the Internet, for  security purposes, it&#8217;s in a war zone. If it&#8217;s only an internal server,  you still need to deal with (accidentally) malicious users, disgruntled  employees and the guy in accounting who really wants to read the boss&#8217;s  secretary&#8217;s e-mail.</p>
<p>In general, Ubuntu Server is a very secure platform. The Ubuntu  Security Team, the team that produces all official security updates, has  one of the best turnaround times in the industry. Ubuntu ships with a  no open ports policy, meaning that after you install the machine &#8212; be  it an Ubuntu desktop or a server &#8212; no applications will be accepting  connections from the Internet by default. Like Ubuntu desktops, Ubuntu  Server uses the sudo mechanism for system administration, eschewing the  root account. And finally, security updates are guaranteed for at least  18 months after each release (five years for some releases, like  Dapper), and are free.</p>
<p>In this section, we want to take a look at filesystem security,  system resource limits, dealing with logs and finally some network  security. But Linux security is a difficult and expansive topic;  remember that we&#8217;re giving you a crash course here, and leaving a lot of  things out &#8212; to be a good administrator, you&#8217;ll want to learn more.</p>
<p><strong>User Account Administration</strong></p>
<p>Many aspects of user administration on Linux systems are consistent  across distributions. Debian provides some convenience tools, such as  the useradd command, to make things easier for you. But since Ubuntu  fully inherits Debian&#8217;s user administration model, we won&#8217;t go into  detail about it here. Instead, let us refer you to <a href="http://www.oreilly.com/catalog/debian/chapter/book/ch07_01.html" target="_blank">the  O&#8217;Reilly Web site</a> for the basics. After reading that page, you&#8217;ll  have full knowledge of the standard model, and we can briefly talk about  the Ubuntu difference: sudo.</p>
<p>Ubuntu doesn&#8217;t enable the root, or administrator, account by default.  There is a great deal of security benefit to this approach and  incredibly few downsides, all of which are documented at the man pages  for sudo_root.</p>
<p>The user that you add during installation is the one who, by default,  is placed into the admin group and may use sudo to perform system  administration tasks. After adding new users to the system, you may add  them to the admin group like this:</p>
<p><span style="font-family: Courier,Monospace;">$ sudo adduser <em>username</em> admin</span></p>
<p>Simply use <span style="font-family: Courier,Monospace;">deluser</span> in place of  <span style="font-family: Courier,Monospace;">adduser</span> in the above command to  remove a user from the group.</p>
<p>One thing to keep in mind is that sudo isn&#8217;t just a workaround for  giving people root access. It can also handle fine-grain permissions,  such as saying, &#8220;allow this user to execute only these three commands  with superuser privileges.&#8221;</p>
<p>Documentation about specifying these permissions is available in the  &#8220;sudoers&#8221; man page, which can be a bit daunting &#8212; feel free to skip  close to the end of it, until you reach the EXAMPLES section. It should  take you maybe 10 or 15 minutes to grok it, and it covers a vast  majority of the situations for which you&#8217;ll want sudo. When y</p>
]]></content:encoded>
			<wfw:commentRss>http://www.version-next.com/blog/index.php/tips-on-keeping-your-ubuntu-linux-server-securetips-on-keeping-your-ubuntu-linux-server-secure/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Tips on basic Linux server security</title>
		<link>http://www.version-next.com/blog/index.php/tips-on-basic-linux-server-security/</link>
		<comments>http://www.version-next.com/blog/index.php/tips-on-basic-linux-server-security/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 09:36:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Server Tips]]></category>
		<category><![CDATA[Linux server]]></category>

		<guid isPermaLink="false">http://www.version-next.com/blog/?p=1689</guid>
		<description><![CDATA[If you just put your Apache web server online, and are thinking into making the first step in your system security, this brief article will help you do that. By having your own server, you must understand the responsibility behind it. While the web server itself (Apache in this example) is not a big security [...]]]></description>
			<content:encoded><![CDATA[<p>If you just put your Apache web server online, and are thinking into  making the first step in your system security, this brief article will  help you do that. By having your own server, you must understand the  responsibility behind it. While the web server itself (Apache in this  example) is not a big security problem (at least not the software  package itself), there are a few things you should take care on your  system.</p>
<p><strong>Passwords</strong></p>
<p>I presume you know that having a password like &#8216;Mom&#8217; or &#8216;girlfriend&#8217; is  not a good start for securing your system. I usually prefer passwords  with both numerican and alphatbetical characters, plus some extra  symbols. This is a good password: ILik3-PeN_gu1nS. Passwords should be  complicated as there are a lot of ways someone can get your encrypted  password. When we are talking about Linux systems with a webserver, the  first thing that comes to my mind are all those numerous buggy CGI  scripts that make you get /etc/passwd file from the attacked system.  When that is done, a copy of Crack or John The Ripper can be used for  cracking the password. Always remember: a good password is harder to  crack. If you use some basic word for a password, a good wordlist will  make the cracker software spit your en-encrypted password on the screen  in no-time.</p>
<p><a href="http://www.version-next.com"><strong>File transfer and remote logins</strong></a></p>
<p>Think what software packages should run on your system, and remove the  ones that you don&#8217;t need. If you are thinking about transfering files  from and to your system shut the FTPd down. There is far more secure way  that does the same &#8211; SCP. By quickly checking the man pages for SCP, we  get: &#8220;scp copies files between hosts on a network. It uses ssh for data  transfer, and uses the same authentication and provides the same  security as ssh. Unlike rcp, scp will ask for passwords or passphrases  if they are needed for authentication.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.version-next.com/blog/index.php/tips-on-basic-linux-server-security/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Linux Features</title>
		<link>http://www.version-next.com/blog/index.php/linux-features/</link>
		<comments>http://www.version-next.com/blog/index.php/linux-features/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 09:32:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Server Tips]]></category>

		<guid isPermaLink="false">http://www.version-next.com/blog/?p=1686</guid>
		<description><![CDATA[multitasking: several programs running at the same time. multiuser: several users on the same machine at the same time (and no two-user licenses!). multiplatform: runs on many different CPUs, not just Intel. multiprocessor: SMP support is available on the Intel and SPARC platforms (with work currently in progress on other platforms), and Linux is used [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>multitasking: several programs running at the same time.</li>
<li>multiuser: several users on the same machine at the same time (and <strong>no</strong> two-user licenses!).</li>
<li>multiplatform: runs on many different CPUs, not just Intel.</li>
<li>multiprocessor: SMP support is available on the Intel and SPARC platforms (with work currently in progress on other platforms), and Linux is used in several loosely-coupled MP applications, including Beowulf systems (see <a href="http://www.version-next.com">http://cesdis.gsfc.nasa.gov/linux-web/beowulf/beowulf.html</a>) and the Fujitsu AP1000+ SPARC-based supercomputer.</li>
<li>multithreading: has native kernel support for multiple independent threads of control within a single process memory space.</li>
<li>runs in protected mode on the 386.</li>
<li>has memory protection between processes, so that one program can&#8217;t bring the whole system down.</li>
<li>demand loads executables: Linux only reads from disk those parts of a program that are actually used.</li>
<li>shared copy-on-write pages among executables.  This means that multiple process can use the same memory to run in.  When one tries to write to that memory, that page (4KB piece of memory) is copied somewhere else.  Copy-on-write has two benefits: increasing speed and decreasing memory use.</li>
<li>virtual memory using paging (not swapping whole processes) to disk: to a separate partition or a file in the filesystem, or both, with the possibility of adding more swapping areas during runtime (yes, they&#8217;re still called swapping areas).  A total of 16 of these 128 MB (2GB in recent kernels) swapping areas can be used at the same time, for a theoretical total of 2 GB of useable swap space.  It is simple to increase this if necessary, by changing a few lines of source code.</li>
<li>a unified memory pool for user programs and disk cache, so that all free memory can be used for caching, and the cache can be reduced when running large programs.</li>
<li>dynamically linked shared libraries (DLL&#8217;s), and static libraries too, of course.</li>
<li>does core dumps for post-mortem analysis, allowing the use of a debugger on a program not only while it is running but also after it has crashed.</li>
<li>mostly compatible with POSIX, System V, and BSD at the source level.</li>
<li>through an iBCS2-compliant emulation module, mostly compatible with  SCO, SVR3, and SVR4 at the binary level.</li>
<li>all source code is available, including the whole kernel and all drivers, the development tools and all user programs; also, all of it is freely distributable.  Plenty of commercial programs are being provided for Linux without source, but everything that has been free, including the entire base operating system, is still free.</li>
<li>POSIX job control.</li>
<li>pseudoterminals (pty&#8217;s).</li>
<li>387-emulation in the kernel so that programs don&#8217;t need to do their own math emulation.  Every computer running Linux appears to have a math coprocessor.  Of course, if your computer already contains an FPU, it will be used instead of the emulation, and you can even compile your own kernel with math emulation removed, for a small memory gain.</li>
<li>support for many national or customized keyboards, and it is fairly easy to add new ones dynamically.</li>
<li>multiple virtual consoles: several independent login sessions through the console, you switch by pressing a hot-key combination (not dependent on video hardware).  These are dynamically allocated; you can use up to 64.</li>
<li>Supports several common filesystems, including minix, Xenix, and all the common system V filesystems, and has an advanced filesystem of its own, which offers filesystems of up to 4 TB, and names up to 255 characters long.</li>
<li>transparent access to MS-DOS partitions (or OS/2 FAT partitions) via a special filesystem: you don&#8217;t need any special commands to use the MS-DOS partition, it looks just like a normal Unix filesystem (except for funny restrictions on filenames, permissions, and so on).  MS-DOS 6 compressed partitions do not work at this time without a patch (dmsdosfs). VFAT (WNT, Windows 95) support and FAT-32 is available in Linux 2.0</li>
<li>special filesystem called UMSDOS which allows Linux to be installed on a DOS filesystem.</li>
<li>read-only HPFS-2 support for OS/2 2.1</li>
<li>HFS (Macintosh) file system support is available separately as a module.</li>
<li>CD-ROM filesystem which reads all standard formats of CD-ROMs.</li>
<li>TCP/IP networking, including ftp, telnet, NFS, etc.</li>
<li>Appletalk server</li>
<li>Netware client and server</li>
<li>Lan Manager/Windows Native (SMB) client and server</li>
<li>Many networking protocols: the base protocols available in the latest development kernels include TCP, IPv4, IPv6, AX.25, X.25, IPX, DDP (Appletalk), Netrom, and others.  Stable network protocols included in the stable kernels currently include TCP, IPv4, IPX, DDP, and AX.25.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.version-next.com/blog/index.php/linux-features/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Set Date and Time From a Command Prompt on your Linux Server</title>
		<link>http://www.version-next.com/blog/index.php/set-date-and-time-from-a-command-prompt-on-your-linux-server/</link>
		<comments>http://www.version-next.com/blog/index.php/set-date-and-time-from-a-command-prompt-on-your-linux-server/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 11:11:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Server Tips]]></category>

		<guid isPermaLink="false">http://www.version-next.com/blog/?p=1169</guid>
		<description><![CDATA[To set your Linux Servers system date and time from the command prompt (bash shell) use the date command to display the current date and time or set the system date / time over ssh session You must login as root user to use date command. Linux Set Date Use the following syntax to set [...]]]></description>
			<content:encoded><![CDATA[<p>To set your Linux Servers system date and time from the command prompt (bash shell) use the <span style="color: #ff0000;">date </span>command to display the current date and time or set the system date / time over ssh session</p>
<p>You must login as root user to use date command.</p>
<h2>Linux Set Date</h2>
<p>Use the following syntax to set new data and time:<br />
<span style="color: #ff0000;"><strong>date set=&#8221;STRING&#8221;</strong></span></p>
<p>For example, set new data to 2 Oct 2006 18:00:00, type the following command as root user:<br />
<code><span style="color: #ff0000;">date -s "8 FEB 2009 11:00:00"</span></code></p>
<p>OR</p>
<p><code><span style="color: #ff0000;">date set="8 FEB 2009 11:00:00"</span></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.version-next.com/blog/index.php/set-date-and-time-from-a-command-prompt-on-your-linux-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to turn off, restart and shut down a Linux Server</title>
		<link>http://www.version-next.com/blog/index.php/how-to-turn-off-restart-and-shut-down-a-linux-server/</link>
		<comments>http://www.version-next.com/blog/index.php/how-to-turn-off-restart-and-shut-down-a-linux-server/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 10:53:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Server Tips]]></category>

		<guid isPermaLink="false">http://www.version-next.com/blog/?p=1158</guid>
		<description><![CDATA[Shutting down/Rebooting the server from the command line. Below is a listing of each of the commands that will enable a user to shut down, turn off, reboot, etc. their Linux computer from the command line. halt poweroff reboot shutdown]]></description>
			<content:encoded><![CDATA[<p><strong>Shutting down/Rebooting the server from the command line. </strong></p>
<blockquote><p>Below is a listing of each of the commands that will enable a user to shut down, turn off, reboot, etc. their Linux computer from the command line.</p>
<blockquote><p><strong>halt<br />
poweroff<br />
reboot<br />
shutdown</strong></p></blockquote>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.version-next.com/blog/index.php/how-to-turn-off-restart-and-shut-down-a-linux-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

