<?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>Learning is an Art &#187; database server</title>
	<atom:link href="http://www.singhvishwajeet.com/tag/database-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.singhvishwajeet.com</link>
	<description>My experiences</description>
	<lastBuildDate>Sun, 24 Jul 2011 18:03:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Installing PostgreSQL on Centos/RHEL</title>
		<link>http://www.singhvishwajeet.com/2010/05/07/installing-postgresql-on-centosrhel/</link>
		<comments>http://www.singhvishwajeet.com/2010/05/07/installing-postgresql-on-centosrhel/#comments</comments>
		<pubDate>Thu, 06 May 2010 20:13:13 +0000</pubDate>
		<dc:creator>Vishwajeet Singh</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[database server]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[RHEL]]></category>

		<guid isPermaLink="false">http://www.singhvishwajeet.com/?p=380</guid>
		<description><![CDATA[ [...]]]></description>
			<content:encoded><![CDATA[<p>To install latest version of postgresql we first we need to add pgdg repository to list of repositories open terminal and fire following commands, you need to be root.</p>
<div class="codesnip-container" >
<p>wget http://yum.pgsqlrpms.org/reporpms/8.4/pgdg-redhat-8.4-1.noarch.rpm<br />rpm -Uhv pgdg-redhat-8.4-1.noarch.rpm</div>
</p>
<p>Once repository is installed properly use yum to install postgresql as shown below</p>
<div class="codesnip-container" >
<p>yum install postgresql<br />yum install postgresql-server</div>
</p>
<p>You can do above in a single line choice is yours.</p>
<p>Initialize the database</p>
<div class="codesnip-container" >
<p>initdb -D /usr/local/pgsql/data</p>
</div>
<p>Start the database server</p>
<div class="codesnip-container" >
<p>pg_ctl start -D /usr/local/pgsql/data</p>
</div>
<p>Voila your database server is setup and ready to use.</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.singhvishwajeet.com/2010/05/07/installing-postgresql-on-centosrhel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

