<?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>VpsLook.com &#187; Centos</title>
	<atom:link href="http://vpslook.com/tag/centos/feed" rel="self" type="application/rss+xml" />
	<link>http://vpslook.com</link>
	<description>Find coupons, discounts, promotion codes or tutorials for vps.</description>
	<lastBuildDate>Fri, 05 Aug 2011 06:44:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Install YUM onto your centos vps</title>
		<link>http://vpslook.com/tutorials/install-yum-onto-your-centos-vps.html</link>
		<comments>http://vpslook.com/tutorials/install-yum-onto-your-centos-vps.html#comments</comments>
		<pubDate>Fri, 05 Aug 2011 06:44:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[YUM]]></category>

		<guid isPermaLink="false">http://vpslook.com/?p=115</guid>
		<description><![CDATA[Sometimes YUM is not included in the system. So you need manual installation.
In order to use the &#8220;Yellow dog Updater Modified&#8221; (YUM) application to install software onto your VPS, you&#8217;ll first need to configure this software. This article will assist you in the setup and configuration of the YUM installer.
1. Download the following packages (using [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes YUM is not included in the system. So you need manual installation.</p>
<p>In order to use the &#8220;Yellow dog Updater Modified&#8221; (YUM) application to install software onto your VPS, you&#8217;ll first need to configure this software. This article will assist you in the setup and configuration of the YUM installer.</p>
<p><span id="more-115"></span>1. Download the following packages (using wget or similar) from the CentOS mirror into a directory of your choice (eg ~/temp)</p>
<p><span style="color: #0000ff;">http://ftp.monash.edu.au/pub/linux/CentOS/5.2/os/x86_64/CentOS/yum-3.2.8-9.el5.centos.1.noarch.rpm</p>
<p>http://ftp.monash.edu.au/pub/linux/CentOS/5.2/os/x86_64/CentOS/python-elementtree-1.2.6-5.x86_64.rpm</p>
<p>http://ftp.monash.edu.au/pub/linux/CentOS/5.2/os/x86_64/CentOS/python-sqlite-1.1.7-1.2.1.x86_64.rpm</p>
<p>http://ftp.monash.edu.au/pub/linux/CentOS/5.2/os/x86_64/CentOS/python-urlgrabber-3.1.0-2.noarch.rpm</p>
<p>http://ftp.monash.edu.au/pub/linux/CentOS/5.2/os/x86_64/CentOS/sqlite-3.3.6-2.x86_64.rpm</span></p>
<p>2. When you finish downloaded, run the command:</p>
<p><span style="color: #0000ff;">rpm -ivh ~/temp/*rpm</span></p>
<p>You should see an output similar to:</p>
<p><span style="color: #0000ff;">[root@server ~]# rpm -ivh ~/temp/*rpm<br />
Preparing&#8230; ########################################### [100%]<br />
1:sqlite ########################################### [ 20%]<br />
2:python-sqlite ########################################### [ 40%]<br />
3:python-urlgrabber ########################################### [ 60%]<br />
4:python-elementtree ########################################### [ 80%]<br />
5:yum ########################################### [100%]</span></p>
<p>You can now start to use YUM to manage software on your server.</p>
]]></content:encoded>
			<wfw:commentRss>http://vpslook.com/tutorials/install-yum-onto-your-centos-vps.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install kloxo on 128MB CentOS VPS</title>
		<link>http://vpslook.com/tutorials/how-to-install-kloxo-on-128mb-centos-vps.html</link>
		<comments>http://vpslook.com/tutorials/how-to-install-kloxo-on-128mb-centos-vps.html#comments</comments>
		<pubDate>Wed, 03 Aug 2011 12:00:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[kloxo]]></category>

		<guid isPermaLink="false">http://vpslook.com/?p=112</guid>
		<description><![CDATA[If you have a low memory vps, and you want to running wordpress or other blog or cms system, I recommend you chose kloxo.
1. Frist installing and configuring mysql
run the following command to install mysql.:
yum install mysql-server
then edit the /etc/my.cnf file:
vi /etc/my.cnf
delete every thing else and put this in here:
[mysqld]
default-storage-engine = myisam
key_buffer = 8M
query_cache_size = [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a low memory vps, and you want to running wordpress or other blog or cms system, I recommend you chose kloxo.</p>
<p>1. Frist installing and configuring mysql<br />
run the following command to install mysql.:</p>
<p><span style="color: #0000ff;">yum install mysql-server</span></p>
<p><span id="more-113"></span>then edit the /etc/my.cnf file:</p>
<p><span style="color: #0000ff;">vi /etc/my.cnf</span></p>
<p>delete every thing else and put this in here:</p>
<p><span style="color: #0000ff;">[mysqld]<br />
default-storage-engine = myisam<br />
key_buffer = 8M<br />
query_cache_size = 8M<br />
query_cache_limit = 4M<br />
max_connections=25<br />
thread_cache=1<br />
skip-innodb<br />
query_cache_min_res_unit=0<br />
tmp_table_size = 4M<br />
max_heap_table_size = 4M<br />
table_cache=256<br />
concurrent_insert=2</span></p>
<p>then set mysql password:</p>
<p><span style="color: #0000ff;">mysqladmin -u root password NEWPASSWORD</span></p>
<p>2. Installing and configuring kloxo<br />
run the following command to install kloxo :</p>
<p><span style="color: #0000ff;">setenforce 0<br />
wget http://download.lxcenter.org/download/kloxo/production/kloxo-install-master.shsh ./kloxo-install-master.sh &#8211;db-rootpassword=PASSWORD</span></p>
<p>After kloxo has been installed<br />
Go to <span style="color: #0000ff;">youripaddress:7778</span> or <span style="color: #0000ff;">yourdomain:7778</span><br />
the default login user/pass is<span style="color: #0000ff;"> admin/admin</span></p>
<p>you must change it when your first login in it.</p>
<p>then go on the left had side to the tab servers<br />
then go to localhost<br />
then go to switch programs<br />
then change<br />
Web (drop down box) apache ==&gt; Web (drop down box) lighttpd<br />
Dns (drop down box) bind ==&gt; Dns (drop down box) djbdns<br />
Spam (drop down box) spamassasin ==&gt; Spam (drop down box) bojofilter</p>
<p>Finally, It running with less than 100Mb memory.</p>
]]></content:encoded>
			<wfw:commentRss>http://vpslook.com/tutorials/how-to-install-kloxo-on-128mb-centos-vps.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install and configure Vsftpd on Centos</title>
		<link>http://vpslook.com/tutorials/how-to-install-and-configure-vsftpd-on-centos.html</link>
		<comments>http://vpslook.com/tutorials/how-to-install-and-configure-vsftpd-on-centos.html#comments</comments>
		<pubDate>Fri, 29 Jan 2010 09:04:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Vsftpd]]></category>

		<guid isPermaLink="false">http://vpslook.com/?p=68</guid>
		<description><![CDATA[Install Vsftpd

1.Frist, use yum to install it.
yum install vsftpd
When the install is done, you can start vsftpd using following command:

service vsftpd start
Then you can login anonymous ftp server using any ftp software like FlashFXP.
Note: The default anonymous ftp user home is &#8220;/var/ftp/&#8221;.
Configure Vsftpd and add FTP user

2.Open the file /etc/vsftpd/vsftpd.conf
vi /etc/vsftpd/vsftpd.conf

Edit the configure file
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
chown_uploads=NO
xferlog_std_format=YES
listen=YES
pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES
chroot_local_user=YES
3.Add ftp user
adduser [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Install Vsftpd<br />
</strong><br />
1.Frist, use yum to install it.</p>
<p><span style="color: #0000ff;">yum install vsftpd</span></p>
<p><span style="color: #000000;">When the install is done, you can start vsftpd using following command:<br />
</span><span style="color: #000000;"><br />
<span style="color: #0000ff;">service vsftpd start</span></span></p>
<p><span style="color: #000000;">Then you can login anonymous ftp server using any ftp software like FlashFXP.<br />
Note: The default anonymous ftp user home is &#8220;/var/ftp/&#8221;.</span></p>
<p><strong><span id="more-68"></span>Configure Vsftpd and add FTP user<br />
</strong><br />
2.Open the file /etc/vsftpd/vsftpd.conf</p>
<p><span style="color: #0000ff;">vi /etc/vsftpd/vsftpd.conf<br />
</span><br />
Edit the configure file</p>
<p><span style="color: #0000ff;">anonymous_enable=NO<br />
local_enable=YES<br />
write_enable=YES<br />
local_umask=022<br />
dirmessage_enable=YES<br />
xferlog_enable=YES<br />
connect_from_port_20=YES<br />
chown_uploads=NO<br />
xferlog_std_format=YES<br />
listen=YES<br />
pam_service_name=vsftpd<br />
userlist_enable=YES<br />
tcp_wrappers=YES<br />
chroot_local_user=YES</span></p>
<p>3.Add ftp user</p>
<p><span style="color: #0000ff;">adduser -d /var/ftp/<span style="color: #ff0000;">ftpuser</span> -g ftp -s /sbin/nologin <span style="color: #ff0000;">ftpuser</span></span></p>
<p>You can change &#8220;ftpuser&#8221; to another name you like.<br />
And you can also change the user root dir &#8220;/var/ftp/ftpuser&#8221; to another one.</p>
<p>4.Restart the vsftpd service</p>
<p><span style="color: #0000ff;">service vsftpd restart<br />
</span><br />
5.Finally, you can login ftp server using your own username and password.</p>
]]></content:encoded>
			<wfw:commentRss>http://vpslook.com/tutorials/how-to-install-and-configure-vsftpd-on-centos.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Installing PPTP VPN on Xen VPS with Centos 5.4</title>
		<link>http://vpslook.com/tutorials/installing-pptp-vpn-on-xen-vps-with-centos-5-4.html</link>
		<comments>http://vpslook.com/tutorials/installing-pptp-vpn-on-xen-vps-with-centos-5-4.html#comments</comments>
		<pubDate>Fri, 29 Jan 2010 06:25:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[XEN]]></category>

		<guid isPermaLink="false">http://vpslook.com/?p=66</guid>
		<description><![CDATA[I have been used pptp vpn on my Quickweb vps at least a month ago, my vps is base on XEN, 256M memory, 12G harddisk, it work fine with the pptp vpn, if your vps is OpenVZ, you can only run openvpn on it, you can&#8217;t run pptp vpn on OpenVZ.
In the following tutorial, I will explain how to set up [...]]]></description>
			<content:encoded><![CDATA[<p>I have been used pptp vpn on my <a href="http://secure.quickweb.co.nz/system/aff.php?aff=013" target="_blank">Quickweb</a> vps at least a month ago, my vps is base on XEN, 256M memory, 12G harddisk, it work fine with the pptp vpn, if your vps is OpenVZ, you can only run openvpn on it, you can&#8217;t run pptp vpn on OpenVZ.</p>
<p>In the following tutorial, I will explain how to set up a pptp vpn server on CentOS 5.4.</p>
<p>1.Frist, make sure you have ppp installed</p>
<p><span style="color: #0000ff;">yum install -y ppp</span></p>
<p>2.Download lastest version pptpd rpm package</p>
<p><span style="color: #0000ff;">wget </span><a href="http://poptop.sourceforge.net/yum/stable/packages/pptpd-1.3.4-1.rhel5.1.i386.rpm"><span style="color: #0000ff;">http://poptop.sourceforge.net/yum/stable/packages/pptpd-1.3.4-1.rhel5.1.i386.rpm</span></a></p>
<p>3.Installing the rpm</p>
<p><span style="color: #0000ff;">rpm -ivh pptpd-1.3.4-1.rhel5.1.i386.rpm</span></p>
<p><span id="more-66"></span>4.Open the file /etc/ppp/options.pptpd</p>
<p><span style="color: #0000ff;">vi /etc/ppp/options.pptpd<br />
</span><br />
Uncomment the ms-dns lines (by removing the &#8216;#&#8217; in front of them) and change them to the dns servers provided by your ISP or to public DNS servers like ones provided by OpenDNS.</p>
<p><span style="color: #0000ff;">ms-dns 208.67.222.222<br />
ms-dns 208.67.220.220</span></p>
<p>5.Open the file /etc/ppp/chap-secrets</p>
<p><span style="color: #0000ff;">vi /etc/ppp/chap-secrets</span></p>
<p>Add usernames and passwords for your clients. You need to enter the usernames and passwords in the following format.<br />
<span style="color: #0000ff;"><br />
myusername pptpd mypassword *</span></p>
<p>6.Open the file /etc/pptpd.conf</p>
<p><span style="color: #0000ff;">vi /etc/pptpd.conf</span></p>
<p><span style="color: #000000;">Go to the end of the file where you can see examples of localip and remoteip. Below them add your own values for localip and remoteip.<br />
</span><br />
localip 192.168.8.1<br />
remoteip 192.168.8.101-200</p>
<p>7.Open the file /etc/sysctl.conf</p>
<p><span style="color: #0000ff;">vi /etc/sysctl.conf</span></p>
<p><span style="color: #000000;">Enable IP forwarding and make the changes to sysctl.conf take effect</span>net.ipv4.ip_forward = 1<br />
/sbin/sysctl -p</p>
<p>8.Configure iptables to do NAT.</p>
<p><span style="color: #0000ff;">/sbin/service iptables start<br />
/sbin/iptables -t nat -A POSTROUTING -o eth0 -s 192.168.8.0/24 -j MASQUERADE<br />
service iptables save</span></p>
<p>9.Finally, Start the pptp service</p>
<p><span style="color: #0000ff;">/sbin/service pptpd start<br />
chkconfig pptpd on</span></p>
]]></content:encoded>
			<wfw:commentRss>http://vpslook.com/tutorials/installing-pptp-vpn-on-xen-vps-with-centos-5-4.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

