<?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>eSecureData.com</title>
	<atom:link href="http://www.esecuredata.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.esecuredata.com</link>
	<description>The Hosting Company&#039;s Hosting Company</description>
	<lastBuildDate>Fri, 14 Jun 2013 14:50:42 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>Installing ProFTPd on CentOS 6</title>
		<link>http://www.esecuredata.com/2012/02/15/installing-proftpd-on-centos-6/</link>
		<comments>http://www.esecuredata.com/2012/02/15/installing-proftpd-on-centos-6/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 11:02:39 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>

		<guid isPermaLink="false">http://www.esecuredata.com/?p=737</guid>
		<description><![CDATA[ProFTPd is a powerful FTP server. It has a very simple configuration file (/usr/local/etc/proftp.conf) that allows for easy customization. Unfortunately  if you type yum install proftpd, a default CentOS install will return you “No package proftpd available.”  The following is an easy tutorial on how to get ProFTPd on CentOS 6. You will first want to remove [...]]]></description>
			<content:encoded><![CDATA[<p>ProFTPd is a powerful FTP server. It has a very simple configuration file (/usr/local/etc/proftp.conf) that allows for easy customization. Unfortunately  if you type <span style="color: #0000ff;">yum install proftpd</span>, a default CentOS install will return you “No package proftpd available.”  The following is an easy tutorial on how to get ProFTPd on CentOS 6.</p>
<ul>
<li>You will first want to remove any FTP servers currently installed. This will minimize conflicts.</li>
<li>Next, you will need to get the ProFTPd tarball. The current version is 1.3.4a</li>
</ul>
<p style="padding-left: 30px;"><span style="color: #0000ff;">wget ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.4a.tar.gz</span></p>
<ul>
<li>Move it to /usr/src and untar it.</li>
</ul>
<p style="padding-left: 30px;"><span style="color: #0000ff;">mv proftpd-1.3.4a.tar.gz /usr/src</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">cd /usr/src</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">tar -zxcf proftpd-1.3.4a.tar.gz</span></p>
<ul>
<li>You will now want to go into the newly created directory and compile ProFTPd.</li>
</ul>
<p style="padding-left: 30px;"><span style="color: #0000ff;">cd proftpd-1.3.4a</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">./configure</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">make</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">make install</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">proftpd -v</span></p>
<ul>
<li>You now have ProFTPd! Since you will most likely use a variation of the basic configuration, copy basic.conf to /etc/proftpd.conf</li>
</ul>
<p style="padding-left: 30px;"><span style="color: #0000ff;">cp /usr/src/proftpd-1.3.4a/sample-configurations/basic.conf /etc/proftpd.conf</span></p>
<ul>
<li>You can now configure ProFTPd by editing the proftp.conf file.</li>
</ul>
<p style="padding-left: 30px;"><span style="color: #0000ff;">nano /etc/proftpd.conf</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.esecuredata.com/2012/02/15/installing-proftpd-on-centos-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring and L2TP VPN on Ubuntu</title>
		<link>http://www.esecuredata.com/2012/02/15/configuring-and-l2tp-vpn-on-ubuntu/</link>
		<comments>http://www.esecuredata.com/2012/02/15/configuring-and-l2tp-vpn-on-ubuntu/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 10:16:42 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>

		<guid isPermaLink="false">http://www.esecuredata.com/?p=853</guid>
		<description><![CDATA[Configure L2TP VPN on Ubuntu Install server with Ubuntu 10.04 LTS and perform update We will need an IPSec daemon to provide encryption and authentication  sudo aptitude install openswan You will be prompted regarding RSA keys. Since we will be using preshared keys (PSK), say no/skip the RSA prompts Next we will be adjusting /etc/ipsec.conf [...]]]></description>
			<content:encoded><![CDATA[<p>Configure L2TP VPN on Ubuntu</p>
<ul>
<li>Install server with Ubuntu 10.04 LTS and perform update</li>
<li>We will need an IPSec daemon to provide encryption and authentication</li>
</ul>
<p style="padding-left: 30px;"> <span style="color: #0000ff;">sudo aptitude install openswan</span></p>
<ul>
<li>You will be prompted regarding RSA keys. Since we will be using preshared keys (PSK), say no/skip the RSA prompts</li>
<li>Next we will be adjusting /etc/ipsec.conf</li>
</ul>
<p>&nbsp;</p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">sudo mv /etc/ipsec.conf /etc/ipsec.conf.old</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">sudo nano /etc/ipsec.conf</span></p>
<ul>
<li>Copy and paste the following into /etc/ipsec.conf</li>
</ul>
<p><span style="color: #0000ff;">version 2.0</span><br />
<span style="color: #0000ff;">config setup</span><br />
<span style="color: #0000ff;"> nat_traversal=yes</span><br />
<span style="color: #0000ff;"> virtual_private=%v4:10.0.0.0/8,%v4:192.168.0.0/16,%v4:172.16.0.0/12</span><br />
<span style="color: #0000ff;"> oe=off</span><br />
<span style="color: #0000ff;"> protostack=netkey</span></p>
<p><span style="color: #0000ff;">conn L2TP-PSK-NAT</span><br />
<span style="color: #0000ff;"> rightsubnet=vhost:%priv</span><br />
<span style="color: #0000ff;"> also=L2TP-PSK-noNAT</span></p>
<p><span style="color: #0000ff;">conn L2TP-PSK-noNAT</span><br />
<span style="color: #0000ff;"> authby=secret</span><br />
<span style="color: #0000ff;"> pfs=no</span><br />
<span style="color: #0000ff;"> auto=add</span><br />
<span style="color: #0000ff;"> keyingtries=3</span><br />
<span style="color: #0000ff;"> rekey=no</span><br />
<span style="color: #0000ff;"> ikelifetime=8h</span><br />
<span style="color: #0000ff;"> keylife=1h</span><br />
<span style="color: #0000ff;"> type=transport</span><br />
<span style="color: #0000ff;"> left=<span style="color: #ff0000;">[Server IP address]</span></span><br />
<span style="color: #0000ff;"> leftnexthop=<span style="color: #ff0000;">[Server Gateway]</span></span><br />
<span style="color: #0000ff;"> leftprotoport=17/1701</span><br />
<span style="color: #0000ff;"> right=%any</span><br />
<span style="color: #0000ff;"> rightprotoport=17/%any</span></p>
<p>&nbsp;</p>
<ul>
<li>Now, we save the preshared key</li>
</ul>
<p style="padding-left: 30px;"><span style="color: #0000ff;"> sudo mv /etc/ipsec.secrets /etc/ipsec.secrets.old</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">sudo nano /etc/ipsec.secrets</span></p>
<p>&nbsp;</p>
<p><span style="color: #ff0000;">[Server IP address]</span> <span style="color: #0000ff;">%any: PSK “</span><span style="color: #ff0000;">[Your preshared key]</span><span style="color: #0000ff;">”</span></p>
<ul>
<li>The preshared key is anything you choose, but be sure to remember it as you will need it for authentication. EG: “testkey”</li>
<li>Switch to root and input the following command to make sure that IPSec runs properly</li>
</ul>
<p>&nbsp;</p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">sudo su</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">for each in /proc/sys/net/ipv4/conf/*</span><br />
<span style="color: #0000ff;">do</span><br />
<span style="color: #0000ff;">echo 0 &gt; $each/accept_redirects</span><br />
<span style="color: #0000ff;">echo 0 &gt; $each/send_redirects</span><br />
<span style="color: #0000ff;">done</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">su</span><span style="color: #ff0000;"> [primary user]</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">sudo ipsec verify</span></p>
<ul>
<li>It should say that everything is running properly except for Opportunistic Encryption Support</li>
</ul>
<p>&nbsp;</p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">sudo /etc/init.d/ipsec restart</span></p>
<ul>
<li>Now let&#8217;s install and configure L2TP</li>
</ul>
<p>&nbsp;</p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">sudo aptitude install xl2tpd</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">sudo mv /etc/xl2tpd/xl2tpd.conf /etc/xl2tpd/xl2tpd.conf.old</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">sudo nano /etc/xl2tpd/xl2tpd.conf</span></p>
<ul>
<li>Paste the following</li>
</ul>
<p><span style="color: #0000ff;">[global]</span><br />
<span style="color: #0000ff;">ipsec saref = yes</span></p>
<p><span style="color: #0000ff;">[lns default]</span><br />
<span style="color: #0000ff;">ip range = 10.1.2.2-10.1.2.255</span><br />
<span style="color: #0000ff;">local ip = 10.1.2.1</span><br />
<span style="color: #0000ff;">refuse chap = yes</span><br />
<span style="color: #0000ff;">refuse pap = yes</span><br />
<span style="color: #0000ff;">require authentication = yes</span><br />
<span style="color: #0000ff;">ppp debug = yes</span><br />
<span style="color: #0000ff;">pppoptfile = /etc/ppp/options.xl2tpd</span><br />
<span style="color: #0000ff;">length bit = yes</span></p>
<p>&nbsp;</p>
<ul>
<li>The ip range is the range of internal ip addresses. The local ip is the internal address of the server itself.</li>
<li>Now we acquire and configure PPP</li>
</ul>
<p>&nbsp;</p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">sudo aptitude install ppp</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">sudo nano /etc/ppp/options.xl2tpd</span></p>
<ul>
<li>Paste the following (don&#8217;t worry, the file is supposed to be empty)</li>
</ul>
<p><span style="color: #0000ff;">require-mschap-v2</span><br />
<span style="color: #0000ff;">ms-dns 8.8.8.8</span><br />
<span style="color: #0000ff;">ms-dns 209.139.209.33</span><br />
<span style="color: #0000ff;">asyncmap 0</span><br />
<span style="color: #0000ff;">auth</span><br />
<span style="color: #0000ff;">crtscts</span><br />
<span style="color: #0000ff;">lock</span><br />
<span style="color: #0000ff;">hide-password</span><br />
<span style="color: #0000ff;">modem</span><br />
<span style="color: #0000ff;">debug</span><br />
<span style="color: #0000ff;">name l2tpd</span><br />
<span style="color: #0000ff;">proxyarp</span><br />
<span style="color: #0000ff;">lcp-echo-interval 30</span><br />
<span style="color: #0000ff;">lcp-echo-failure 4</span></p>
<ul>
<li>Now we will need to create user credentials to be used for the VPN login</li>
</ul>
<p>&nbsp;</p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">sudo nano /etc/ppp/chap-secrets</span></p>
<ul>
<li>In this file, you will see something similar to this. Give it the credentials that you choose and remember them. They will be used every time you access the VPN.</li>
</ul>
<p><span style="color: #0000ff;">user                      server           password           ip</span><br />
<span style="color: #0000ff;"><span style="color: #ff0000;">[username]            [server]        [password]</span>        *</span></p>
<ul>
<li> save the file and restart the service</li>
</ul>
<p style="padding-left: 30px;"><span style="color: #0000ff;">sudo /etc/init.d/xl2tpd restart</span></p>
<p>If you are using iptables, input the following</p>
<p>&nbsp;</p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">iptables –table nat –append POSTROUTING – jump MASQUERADE</span><br />
<span style="color: #0000ff;">echo 1 &gt; /proc/sys/net/ipv4/ip_forward</span></p>
<ul>
<li>openswan doesn&#8217;t appear to start after rebooting. Add this line to /etc/rc.local</li>
</ul>
<p>&nbsp;</p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">sudo nano /etc/rc.local</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">iptables &#8211;table nat &#8211;append POSTROUTING &#8211;jump MASQUERADE</span><br />
<span style="color: #0000ff;">echo 1 &gt; /proc/sys/net/ipv4/ip_forward</span><br />
<span style="color: #0000ff;">for each in /proc/sys/net/ipv4/conf/*</span><br />
<span style="color: #0000ff;">do</span><br />
<span style="color: #0000ff;"> echo 0 &gt; $each/accept_redirects</span><br />
<span style="color: #0000ff;"> echo 0 &gt; $each/send_redirects</span><br />
<span style="color: #0000ff;">done</span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">/etc/init.d/ipsec restart</span></p>
<p>&nbsp;</p>
<p>*** After creating the VPN, go to the VPN’s properties on the client side. Make sure that your server’s external IP is in the general tab. Next, go to the security tab. Make the “Type of VPN” Layer 2 Tunneling Protocol with IPsec. Then click Advanced settings. Make the preshared key for authentication the same as what you made it on your server. Change data encryption to “optional”. When connecting to the VPN, use the credentials from /etc/ppp/chapsecrets.</p>
<p>You should now be able to connect to the internet through your VPN gateway. If you are able to connect to the VPN, but it is reporting that there is no internet connectivity, rebooting the server will usually fix this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.esecuredata.com/2012/02/15/configuring-and-l2tp-vpn-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting to a V8 Server using RealVNC</title>
		<link>http://www.esecuredata.com/2012/02/01/connecting-to-a-v8-server-using-realvnc/</link>
		<comments>http://www.esecuredata.com/2012/02/01/connecting-to-a-v8-server-using-realvnc/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 21:40:07 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>

		<guid isPermaLink="false">http://www.esecuredata.com/?p=840</guid>
		<description><![CDATA[Each new V8 server is set up to allow remote access and control using VNC Viewer Plus. You can download it by visiting the RealVNC website: http://www.realvnc.com/products/viewerplus/. Note: You do not need to buy VNC Viewer Plus. The free version has everything needed to connect to and manage your V8 server. Additionally, after you select [...]]]></description>
			<content:encoded><![CDATA[<div>
<p><strong>Each new V8 server is set up to allow remote access and control using VNC Viewer Plus. You can download it by visiting the RealVNC website: <a href="http://www.realvnc.com/products/viewerplus/">http://www.realvnc.com/products/viewerplus/</a>.</strong></p>
<p>Note: You do not need to buy VNC Viewer Plus. The free version has everything needed to connect to and manage your V8 server. Additionally, after you select download, you can skip entering your personal information as none of it is required to download the software.</p>
<p>Once you have downloaded and installed VNC Viewer Plus (default installation is fine), open it to the following window:<br />
<img src="/images/vnc.jpg" alt="" width="356px;" height="234px;" /></p>
<p>AMT Server: This is where you’ll want to enter your servers KVM IP address.<br />
Encryption: This should be set as None.<br />
Connection Mode: Set this to Intel AMT KVM.</p>
<p>That’s it! You’re now ready to connect to your V8 server using remote KVM/IP. Click Connect to access your servers console and management tools.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.esecuredata.com/2012/02/01/connecting-to-a-v8-server-using-realvnc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generation 8 Servers Introduced</title>
		<link>http://www.esecuredata.com/2012/01/31/generation-8-servers-introduced/</link>
		<comments>http://www.esecuredata.com/2012/01/31/generation-8-servers-introduced/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 08:14:03 +0000</pubDate>
		<dc:creator>Reg</dc:creator>
				<category><![CDATA[Press Releases]]></category>

		<guid isPermaLink="false">http://www.esecuredata.com/?p=812</guid>
		<description><![CDATA[FOR GENERAL RELEASE. February 1, 2012 eSecureData.com Inc. eSecureData.com is pleased to announce a complete lineup of Generation 8 Servers for 2012. Generation 8 includes a full line of premium servers and value servers, all of which have full dedicated KVM/IP units and full power management including remote reboot, power off, power on and reset, [...]]]></description>
			<content:encoded><![CDATA[<p>FOR GENERAL RELEASE.  February 1, 2012 <a href="http://www.esecuredata.com">eSecureData.com</a> Inc.</p>
<p><img src="http://www.esecuredata.com/images/g8.png"  /></p>
<p>eSecureData.com is pleased to announce a complete lineup of Generation 8 Servers for 2012. Generation 8 includes a full line of <a href="http://www.esecuredata.com/pricing/premium-dedicated-servers/">premium servers</a> and <a href="http://www.esecuredata.com/pricing/value-dedicated-servers/">value servers</a>, all of which have full dedicated KVM/IP units and full power management including remote reboot, power off, power on and reset, all accessible from any web browser. This is our first generation of Value Servers to have these features included.  As usual for eSecureData, we&#8217;ve been able to introduce these servers at the lowest price points in the industry for Intel KVM/IP Dedicated Servers, starting at $149/mo.</p>
<p>With the latest generation Intel processors (Xeon 3470s for the G8s, and i7-2600s for the V8s), super fast 120GB SSDs, no cost 3tb HD upgrades and unmetered bandwidth, these are <em><strong>by far</strong></em>&nbsp; the fastest dedicated servers we&#8217;ve ever offered.  In addition to this, by using the same top-flight Intel motherboards across each range, we&#8217;ve made upgrading and downgrading as easy as it can get.  As always, our unique monitoring systems also ensure that your server is always up, 24/7/365, at no additional cost to the client.</p>
<p>By hosting your website or Internet business with eSecureData.com, you present yourself to the world on infrastructure equal to that of Fortune 500 companies, at price points suitable for the smallest of businesses.  We&#8217;d invite you to take a look at our website for more information.   There really isn&#8217;t a better value in the industry.</p>
<p><a href="http://www.esecuredata.com/">www.esecuredata.com</a></p>
<p>eSecureData.com is a leading provider of dedicated servers, managed servers, virtual servers, cloud servers and hosted infrastructure.   The company was founded in 2004 and is based in Surrey, British Columbia, Canada, just outside Vancouver.  It maintains employees and points of presence in Surrey, Vancouver and Toronto, Canada.</p>
<p>eSecureData.com&#8217;s Downtown Surrey Data Center is unique in the industry, with innovations in the areas of cooling, power systems and server housing. Our custom server racks permit unparalleled airflow while giving technicians ease of access to all replaceable components, allowing us to recover from individual hardware component failure faster than competitive services.   Our redundant fiber optic backbone feeds ensure maximum uptime for all servers hosted with us.</p>
<p>You may contact the company at any time via email at info@esecuredata.com or by telephone at +1 (800) 620-1985 or +1 (604) 800-0016.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.esecuredata.com/2012/01/31/generation-8-servers-introduced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ProFTPd versus vsFTPd</title>
		<link>http://www.esecuredata.com/2012/01/21/proftpd-versus-vsftpd/</link>
		<comments>http://www.esecuredata.com/2012/01/21/proftpd-versus-vsftpd/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 12:49:56 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>

		<guid isPermaLink="false">http://www.esecuredata.com/?p=748</guid>
		<description><![CDATA[ProFTPd and vsFTPd are two very popular FTP servers for Unix/Linux systems. Although they are very similar in terms of functionality, there are some notable differences. The main benefit of ProFTPd is that it has a very easily managed configuration file. The syntax of proftpd.conf is very similar to the Apache configuration file. This makes [...]]]></description>
			<content:encoded><![CDATA[<div>ProFTPd and vsFTPd are two very popular FTP servers for Unix/Linux systems. Although they are very similar in terms of functionality, there are some notable differences.</div>
<div></div>
<div>The main benefit of ProFTPd is that it has a very easily managed configuration file. The syntax of proftpd.conf is very similar to the Apache configuration file. This makes for a pretty efficient standardization of configuration files. This is easily recognizable because of its modular architechture.</div>
<div></div>
<div>vsFTPd is the default FTP server for Ubuntu, CentOS, Fedora, and Red Hat. This makes it very easy to install in comparison with ProFTPd, but it does not present as easy of a configuration file. vsFTPd is also reported to be more secure.</div>
<div></div>
<div>In my opinion, vsFTPd is the better FTP server. vsFTPd is easier to install and can perform all that you would expect from an FTP daemon while maintaining a solid level of security.</div>
<div></div>
<div>Ultimately, it all comes down to personal preference. Both FTP servers are reliable, powerful, and they support FTP over SSL. When an FTP user is created, their home directory acts as the FTP root directory. When you connect to your server using an FTP client, you will be brought directly to /home/(the ftp user&#8217;s directory). This makes for a pretty safe method of operation. Just like with Linux distributions, what is right for one person is not necessarily what is right for someone else. Work with what makes you most comfortable.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.esecuredata.com/2012/01/21/proftpd-versus-vsftpd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Worpress Installation and Configuration on CentOS</title>
		<link>http://www.esecuredata.com/2012/01/08/worpress-installation-and-configuration-on-centos/</link>
		<comments>http://www.esecuredata.com/2012/01/08/worpress-installation-and-configuration-on-centos/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 03:40:10 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>

		<guid isPermaLink="false">http://www.esecuredata.com/?p=707</guid>
		<description><![CDATA[Prepare the Prerequisites Install Webmin (instructions: http://www.webmin.com/rpm.html) Configure Linux Firewall to only allow ports 22 (ssh), 10000 (webmin), 21 (ftp) and 80 (web) Install the prerequisites yum update yum install php mysql-server php-mysql httpd vsftpd ntpdate gd php-gd Install updated version of PHP nano /etc/yum.repos.d/CentOS-Testing.repo Paste the following (remove any white space at the beginning [...]]]></description>
			<content:encoded><![CDATA[<h3><strong>Prepare the Prerequisites</strong></h3>
<ul>
<li>Install Webmin (instructions: <a href="http://www.webmin.com/rpm.html">http://www.webmin.com/rpm.html</a>)</li>
<li>Configure Linux Firewall to only allow ports 22 (ssh), 10000 (webmin), 21 (ftp) and 80 (web)</li>
</ul>
<ul>
<li>Install the prerequisites<br />
<span style="color: #0000ff;">yum update</span><br />
<span style="color: #0000ff;"> yum install php mysql-server php-mysql httpd vsftpd ntpdate gd php-gd</span></li>
<li>Install updated version of PHP<br />
	<span style="color: #0000ff;">nano /etc/yum.repos.d/CentOS-Testing.repo</span><br />
	Paste the following (remove any white space at the beginning of each line):</p>
<pre># CentOS-Testing:
# !!!! CAUTION !!!!
# This repository is a proving grounds for packages on their way to CentOSPlus and CentOS Extras.
# They may or may not replace core CentOS packages, and are not guaranteed to function properly.
# These packages build and install, but are waiting for feedback from testers as to
# functionality and stability. Packages in this repository will come and go during the
# development period, so it should not be left enabled or used on production systems without due
# consideration.
[c5-testing]
name=CentOS-5 Testing
baseurl=<a href="http://dev.centos.org/centos/$releasever/testing/$basearch/" target="_blank">http://dev.centos.org/<wbr>centos/$releasever/testing/$<wbr>basearch/</wbr></wbr></a>
enabled=1
gpgcheck=1
gpgkey=<a href="http://dev.centos.org/centos/RPM-GPG-KEY-CentOS-testing" target="_blank">http://dev.centos.org/<wbr>centos/RPM-GPG-KEY-CentOS-<wbr>testing</wbr></wbr></a>
includepkgs=php*</pre>
</li>
<li><span style="color: #0000ff;">yum update</span></li>
<li>Lock up MySQL.<br />
<span style="color: #0000ff;">service mysqld start</span><br />
<span style="color: #0000ff;"> /usr/bin/mysql_secure_installation</span><br />
(follow the prompts)</li>
<li>Create a MySQL database to use with the new wordpress site.  Create a MySQL user/pw to access it.  Localhost access is the only thing you need for a basic install.</li>
<li>Create a Linux user for FTP access.  Set yourFTPusername’s  home directory to /home/yoursitename.</li>
<li>Set Bootup options to turn off most services.  Make sure httpd (Apache), mysqld, vsftpd and ntpd are all set to start on boot.</li>
<li>Turn off SELinux (/etc/selinux/config) or virtual hosting wont work in Apache.  There are workarounds if you want to fight them.  Be careful with CentOS as it has two editable lines lost in a bunch of comments, and it’s easy to edit the wrong one.</li>
<li>Point DNS records for yoursitename (A) and www.yoursitename (CNAME) to your server.</li>
</ul>
<h3><strong>Download WordPress</strong></h3>
<p><strong> </strong><span style="color: #0000ff;">cd /tmp</span><br />
<span style="color: #0000ff;"> wget http://wordpress.org/latest.tar.gz</span><br />
<span style="color: #0000ff;"> gunzip latest.tar.gz</span><br />
<span style="color: #0000ff;"> tar xvf latest.tar</span><br />
<span style="color: #0000ff;"> rm -rf latest.tar</span><br />
<span style="color: #0000ff;"> mv wordpress /home/<span style="color: #ff0000;">yoursitename</span></span><br />
<span style="color: #0000ff;"> chown -R yourFTPusername /home/<span style="color: #ff0000;">yoursitename </span></span><br />
<span style="color: #0000ff;"> mv /home/<span style="color: #ff0000;">yoursitename</span>/wordpress/wp-config-sample.php /home/<span style="color: #ff0000;">yoursitename</span>/wordpress/wp-config.php</span><br />
<span style="color: #0000ff;"> mv /home/<span style="color: #ff0000;">yoursitename</span></span>/<span style="color: #0000ff;">wordpress/* /home/<span style="color: #ff0000;">yoursitename</span></span></p>
<p><span style="color: #0000ff;">nano /home/yoursitename/wp-config.php</span><br />
(and enter your settings from above)</p>
<h3><strong>Set up Apache</strong></h3>
<p><strong> </strong>Create a virtual host for your WordPress site and aim it to /home/<span style="color: #ff0000;">yoursitename</span><br />
Edit /etc/httpd/conf/httpd.conf and add the following directives:</p>
<ul>
<li>ServerAlias (as needed &#8211; usually www.yoursitename in addition to ServerName yoursitename)</li>
<li>Inside the directory section of your virtual server section, be sure to add AllowOverride All or nothing will work.</li>
</ul>
<h3><strong>Run the WordPress Installer</strong></h3>
<p>&nbsp;</p>
<ul>
<li>Navigate to http://<span style="color: #ff0000;">yoursitename</span> in a browser and the installer should load.  It usually runs quickly and with almost no prompts.  Your site should now be live.</li>
<li>Test FTP to your site using host: <span style="color: #ff0000;">yoursitename</span> and user:yourFTPusername.  Test changing permissions on directories using FTP.  This should work if you’ve done the chown above correctly.</li>
</ul>
<h3><strong>Create a .htaccess File</strong></h3>
<p><strong> </strong><span style="color: #0000ff;">cd /home/yoursitename</span><br />
<span style="color: #0000ff;"> touch .htaccess</span><br />
<span style="color: #0000ff;"> chmod 777 .htaccess</span><br />
<span style="color: #0000ff;"> nano .htaccess</span></p>
<p><strong>Paste this:</strong></p>
<p><strong></strong><span style="color: #0000ff;">&lt;IfModule mod_rewrite.c&gt;</span><br />
<span style="color: #0000ff;"> RewriteEngine On</span><br />
<span style="color: #0000ff;"> RewriteBase /</span><br />
<span style="color: #0000ff;"> RewriteRule ^index\.php$ &#8211; [L]</span><br />
<span style="color: #0000ff;"> RewriteCond %{REQUEST_FILENAME} !-f</span><br />
<span style="color: #0000ff;"> RewriteCond %{REQUEST_FILENAME} !-d</span><br />
<span style="color: #0000ff;"> RewriteRule . /index.php [L]</span><br />
<span style="color: #0000ff;"> &lt;/IfModule&gt;</span></p>
<p>Remember to change permalink settings in your wp-admin to not just use a number.</p>
<p>For all eSecureData.com dedicated servers which are highly optimized to run WordPress, visit us at <a href="/">www.esecuredata.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.esecuredata.com/2012/01/08/worpress-installation-and-configuration-on-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>G7 Junior Servers Introduced at $149/mo</title>
		<link>http://www.esecuredata.com/2011/09/29/g7-junior-servers-introduced-at-149mo/</link>
		<comments>http://www.esecuredata.com/2011/09/29/g7-junior-servers-introduced-at-149mo/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 19:40:16 +0000</pubDate>
		<dc:creator>Reg</dc:creator>
				<category><![CDATA[Press Releases]]></category>

		<guid isPermaLink="false">http://www.esecuredata.com/?p=699</guid>
		<description><![CDATA[FOR GENERAL RELEASE. August 16, 2011 eSecureData.com Inc. eSecureData.com is pleased to announce the introduction of G7 Junior servers to complete the G7 lineup. As with all Premium G7 Dedicated Servers, the Juniors will come with permanent KVM/IP and Remote Power On/Off/Reboot.  As usual for eSecureData, we&#8217;ve been able to introduce these servers at the lowest [...]]]></description>
			<content:encoded><![CDATA[<p>FOR GENERAL RELEASE.  August 16, 2011 <a href="http://www.esecuredata.com">eSecureData.com</a> Inc.</p>
<p><img src="http://www.esecuredata.com/images/g7jr.png"  /></p>
<p>eSecureData.com is pleased to announce the introduction of <a href="http://www.esecuredata.com/pricing/premium-dedicated-servers-with-kvm-ip/">G7 Junior servers</a> to complete the G7 lineup. As with all Premium G7 Dedicated Servers, the Juniors will come with permanent KVM/IP and Remote Power On/Off/Reboot.  As usual for eSecureData, we&#8217;ve been able to introduce these servers at the lowest price points in the industry for Intel Xeon KVM/IP Dedicated Servers, starting at $149/mo.</p>
<p>With no-cost SSD upgrades, built-in permanent KVM/IP units, and unmetered bandwidth, these are <em><strong>by far</strong></em> the fastest dedicated servers we&#8217;ve ever offered.  In addition to this, by using the same top-flight Intel motherboards across the entire G7 range, we&#8217;ve made upgrading and downgrading as easy as it can get.  As always, our unique monitoring systems also ensure that your server is always up, 24/7/365, at no additional cost to the client.</p>
<p>By hosting your website or Internet business with eSecureData.com, you present yourself to the world on infrastructure equal to that of Fortune 500 companies, at price points suitable for the smallest of businesses.  We&#8217;d invite you to take a look at our website for more information.   There really isn&#8217;t a better value in the industry.</p>
<p><a href="http://www.esecuredata.com/pricing/budget-servers">http://www.esecuredata.com/pricing/premium-dedicated-servers-with-kvm-ip/</a></p>
<p>eSecureData.com is a leading provider of dedicated servers, managed servers, virtual servers, cloud servers and hosted infrastructure.   The company was founded in 2004 and is based in Surrey, British Columbia, Canada, just outside Vancouver.  It maintains employees and points of presence in Surrey, Vancouver and Toronto, Canada.</p>
<p>eSecureData.com&#8217;s Downtown Surrey Data Center is unique in the industry, with innovations in the areas of cooling, power systems and server housing. Our custom server racks permit unparalleled airflow while giving technicians ease of access to all replaceable components, allowing us to recover from individual hardware component failure faster than competitive services.   Our redundant fiber optic backbone feeds ensure maximum uptime for all servers hosted with us.</p>
<p>You may contact the company at any time via email at info@esecuredata.com or by telephone at +1 (800) 620-1985 or +1 (604) 800-0016.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.esecuredata.com/2011/09/29/g7-junior-servers-introduced-at-149mo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding additional IP&#8217;s to a Linux Server.</title>
		<link>http://www.esecuredata.com/2011/09/29/adding-additional-ips-to-a-linux-server/</link>
		<comments>http://www.esecuredata.com/2011/09/29/adding-additional-ips-to-a-linux-server/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 19:36:35 +0000</pubDate>
		<dc:creator>marks</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>

		<guid isPermaLink="false">http://www.esecuredata.com/?p=671</guid>
		<description><![CDATA[Adding IP’s to your linux machine can be a hard task at first but it can be broken down to these few steps. To implement a temporary solution you can execute the command Command:  ifconfig eth0:1 IP.ADDRESS.HERE. (Note IP.ADDRESS.HERE is the  additional IP you want linked to your machine.) Note that: Main IP: eth0:0 Secondary [...]]]></description>
			<content:encoded><![CDATA[<p>Adding IP’s to your linux machine can be a hard task at first but it can be broken down to these few steps.</p>
<p>To implement a temporary solution you can execute the command</p>
<p>Command:  ifconfig eth0:1 IP.ADDRESS.HERE. (Note IP.ADDRESS.HERE is the  additional IP you want linked to your machine.)</p>
<p>Note that:</p>
<p>Main IP: eth0:0</p>
<p>Secondary IP: eth0:1</p>
<p>Third IP: eth0:2</p>
<p>Fourth IP: eth0:3</p>
<p>Further note that computers start counting at 0 being a element number and up. Meaning 1 = 0 2=1 3=2 etc.</p>
<p>To make these changes Permit we will have to configuration the networking files to reflect these actions.</p>
<p>Starting out make sure that the ifcfg-eth0 file does not consist of any gateway=parameter. If it does remove this statement. The root to find this file is as following: etc/sysconfig/network-scripts/ifcfg-eth0</p>
<p>Next, copy the file ifcfg-eth0 and name it ifcfg-eth0:1</p>
<p>Command: cp /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth0:1</p>
<p>Once you have copied the file edit the ifcfg-eth0:1 and change the statement Device=eth0 to device eth0:1 and change the IPAddr= to the addon IP you want, that is assigned to your machine.  Start the Secondary interface with: ifup eth0:1</p>
<p>&nbsp;</p>
<p>Repeat this step to add as many IP addresses as you desire.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.esecuredata.com/2011/09/29/adding-additional-ips-to-a-linux-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing LAMP on Centos</title>
		<link>http://www.esecuredata.com/2011/09/29/installing-lamp-on-centos/</link>
		<comments>http://www.esecuredata.com/2011/09/29/installing-lamp-on-centos/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 19:35:27 +0000</pubDate>
		<dc:creator>marks</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[Centos web server]]></category>
		<category><![CDATA[Installing LAMP on Centos]]></category>
		<category><![CDATA[Lamp on centos]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://www.esecuredata.com/?p=688</guid>
		<description><![CDATA[Centos is one of the most common Linux OS. &#160; I will be showing you how to install Apache, MySQL ,PHPMyAdmin and PHP. Apache is the a software that responses to enquirys and replies. This means this is the script that displays your website. &#160; To install Apache: yum install httpd httpd-devel If at the [...]]]></description>
			<content:encoded><![CDATA[<p>Centos is one of the most common Linux OS.</p>
<p>&nbsp;</p>
<p>I will be showing you how to install Apache, MySQL ,PHPMyAdmin and PHP.</p>
<p>Apache is the a software that responses to enquirys and replies. This means this is the script that displays your website.</p>
<p>&nbsp;</p>
<p><strong>To install Apache:</strong></p>
<p><em>yum install httpd httpd-devel</em></p>
<p>If at the end of the installation the apache is not running you may need to manually start it.</p>
<p><em>/etc/init.d/httpd start</em></p>
<p>MySQL is a dynamic data stored in a table format. each table, column and rows can be called to display or store information.</p>
<p>&nbsp;</p>
<p><strong>To install MySQL Database Server.</strong></p>
<p><em>yum install mysql mysql-server mysql-devel</em></p>
<p>&nbsp;</p>
<p>This will install MySQL and the Username and password will be on the lines of the default.</p>
<p>&nbsp;</p>
<p>To set the password to a new installed MySQL:</p>
<p><em>mysqladmin -u root password NEWPASSWORD</em></p>
<p>&nbsp;</p>
<p><strong>Install PHP MyAdmin</strong></p>
<p>phpMyAdmin is a web control panel that allows you to manage your SQL databases and users.</p>
<p><em>yum install phpmyadmin</em></p>
<p><em><br />
</em></p>
<p>Access:</p>
<p>http://yourip/phpmyadmin</p>
<p>&nbsp;</p>
<p><strong>Note: pay close attention to the installation process due to a error can easily make this installation very complicated. When it requests username and password these are are the details of the root MySQL which you set earlier.</strong></p>
<p><strong><br />
</strong></p>
<p><em><br />
</em></p>
<p><strong>Installing PHP:</strong></p>
<p>This command installs everything you need for PHP:</p>
<p><em>yum install php php-mysql php-common php-gd php-mbstring php-mcrypt php-devel php-xml</em></p>
<p>&nbsp;</p>
<p>This completes the entire installation of what is computationally stated to be LAMP.</p>
<p>&nbsp;</p>
<p>Your web server is now ready and running.</p>
<p><em><br />
</em></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><em><br />
</em></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.esecuredata.com/2011/09/29/installing-lamp-on-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Going VOIP</title>
		<link>http://www.esecuredata.com/2011/08/19/going-voip/</link>
		<comments>http://www.esecuredata.com/2011/08/19/going-voip/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 08:20:11 +0000</pubDate>
		<dc:creator>Reg</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.esecuredata.com/?p=660</guid>
		<description><![CDATA[I switched our office telephone system to SIP-based VOIP a few weeks ago and I doubt we&#8217;ll ever look back. The office and data center are now connected with one touch dialing, and I just put a Cisco phone in my home on the same system. It&#8217;s all seamless. We could have data centers around [...]]]></description>
			<content:encoded><![CDATA[<p>I switched our office telephone system to SIP-based VOIP a few weeks ago and I doubt we&#8217;ll ever look back.  The office and data center are now connected with one touch dialing, and I just put a Cisco phone in my home on the same system.  It&#8217;s all seamless.  We could have data centers around the world (and I hope we do one day) all on this system.</p>
<p>At the office and data center, I went with Polycom 670s.   Polycom touts its HD Voice technology and rightly so.  They&#8217;re easily the best-sounding phones I&#8217;ve ever heard.  </p>
<p><img src="http://www.bbad.com/forums/images/archive/20110819/3seJqsJ328.jpg"></p>
<p>At home, just to try something different, I got a Cisco SPA525G.  It has a nicer display than the Polycoms, but the voice quality isn&#8217;t quite as good.  It&#8217;s still totally usable, though.  It&#8217;s also nice how well the Polycoms and Ciscos both work together on the same SIP Virtual PBX.</p>
<p><img src="http://www.bbad.com/forums/images/archive/20110819/Vly7jTqYoQ.jpg"></p>
<p>I even configured one line on the customer service phone to answer our Skype calls using their new SIP feature, although I may not bother leaving that up as very few people call us on Skype and our Skype phone works just fine for that.  </p>
<p>The great thing about a system like this for a distributed company like ours is that it makes everyone feel a bit closer to each other.   I just touch one button to talk to the office or the data center, and they do the same to talk to me or each other.   </p>
<p>Improved, easier and higher quality communications can&#8217;t help but improve any organization.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.esecuredata.com/2011/08/19/going-voip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
