<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Installing_PostgreSQL</title><link>https://sourceforge.net/p/dpr/wiki/Installing_PostgreSQL/</link><description>Recent changes to Installing_PostgreSQL</description><atom:link href="https://sourceforge.net/p/dpr/wiki/Installing_PostgreSQL/feed" rel="self"/><language>en</language><lastBuildDate>Mon, 29 Jul 2013 06:05:34 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/dpr/wiki/Installing_PostgreSQL/feed" rel="self" type="application/rss+xml"/><item><title>Installing_PostgreSQL modified by Kirti Chennareddy</title><link>https://sourceforge.net/p/dpr/wiki/Installing_PostgreSQL/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v16
+++ v17
@@ -55,7 +55,7 @@

 9\. Change the postgres password: 

-    ALTER USER postgres WITH PASSWORD '&amp;lt;enter postgres password&amp;gt;';
+    ALTER USER postgres WITH PASSWORD '

 **Result:** If _ALTER ROLE_ is displayed, you have successfully changed the postgres database superuser password. 
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kirti Chennareddy</dc:creator><pubDate>Mon, 29 Jul 2013 06:05:34 -0000</pubDate><guid>https://sourceforge.net9095d957da43fcfb010d3ee80b1a4ec3293fe08a</guid></item><item><title>Installing_PostgreSQL modified by Allan Cunliffe</title><link>https://sourceforge.net/p/dpr/wiki/Installing_PostgreSQL/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v15
+++ v16
@@ -48,19 +48,24 @@
     su - postgres

-8\. Log into the database and change the postgres password: 
+8\. Log into the database: 

-    psql ALTER USER postgres WITH PASSWORD '&amp;lt;enter postgres password&amp;gt;';
+    psql 
+    
+
+9\. Change the postgres password: 
+    
+    ALTER USER postgres WITH PASSWORD '&amp;lt;enter postgres password&amp;gt;';

 **Result:** If _ALTER ROLE_ is displayed, you have successfully changed the postgres database superuser password. 

-9\. Exit: 
+10\. Exit: 

     \q

-10\. Exit back to the root shell: 
+11\. Exit back to the root shell: 

     exit

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Allan Cunliffe</dc:creator><pubDate>Tue, 11 Jun 2013 18:26:04 -0000</pubDate><guid>https://sourceforge.net436f9b0837e29ab348b86826d922aa572a3a8ae0</guid></item><item><title>Installing_PostgreSQL modified by Allan Cunliffe</title><link>https://sourceforge.net/p/dpr/wiki/Installing_PostgreSQL/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v14
+++ v15
@@ -50,8 +50,7 @@

 8\. Log into the database and change the postgres password: 

-    psql
-    ALTER USER postgres WITH PASSWORD '&amp;lt;enter postgres password&amp;gt;';
+    psql ALTER USER postgres WITH PASSWORD '&amp;lt;enter postgres password&amp;gt;';

 **Result:** If _ALTER ROLE_ is displayed, you have successfully changed the postgres database superuser password. 
@@ -65,9 +64,6 @@

     exit

-
-  
-

 ## Windows

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Allan Cunliffe</dc:creator><pubDate>Tue, 11 Jun 2013 18:26:04 -0000</pubDate><guid>https://sourceforge.net642ac1993c66f765401bbd4c7558efb268d82998</guid></item><item><title>Installing_PostgreSQL modified by Allan Cunliffe</title><link>https://sourceforge.net/p/dpr/wiki/Installing_PostgreSQL/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v13
+++ v14
@@ -66,19 +66,6 @@
     exit

-11\. Edit pg_hba.conf file: 
-    
-    sudo su -
-    
-    
-    vim /var/lib/pgsql/data/pg_hba.conf
-    
-
-12\. Restart postgresql service: 
-    
-    sudo service postgresql restart
-    
-

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Allan Cunliffe</dc:creator><pubDate>Tue, 11 Jun 2013 18:26:04 -0000</pubDate><guid>https://sourceforge.net84a6222742a83d460b2102a73d6a4573a11e2026</guid></item><item><title>Installing_PostgreSQL modified by Allan Cunliffe</title><link>https://sourceforge.net/p/dpr/wiki/Installing_PostgreSQL/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v12
+++ v13
@@ -34,7 +34,6 @@
 4\. Test the server is running on port 5432:

     netstat -ltn
-    

 5\. Become root: 
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Allan Cunliffe</dc:creator><pubDate>Tue, 11 Jun 2013 18:26:04 -0000</pubDate><guid>https://sourceforge.nete3534d7c1b33ffd20fbedb7af0500a699265ecee</guid></item><item><title>Installing_PostgreSQL modified by Allan Cunliffe</title><link>https://sourceforge.net/p/dpr/wiki/Installing_PostgreSQL/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v11
+++ v12
@@ -10,24 +10,46 @@
   * download PostgreSQL from [PostgreSQL downloads page](http://www.postgresql.org/download)
   * install it via your distribution's package management system 
   * run the following from the command-line: 
+
+Ubuntu

-    sudo apt-get install postgresql-8.3
+    sudo apt-get install postgresql-8.3 

-  
-2\. Become root: 
+Fedora 
+    
+    sudo yum groupinstall "PostgreSQL Database"
+    
+
+2\. Fedora only. Initialise the database system: 
+    
+    sudo service postgresql initdb
+    
+
+3\. Fedora only. Start the postgres service: 
+    
+    sudo service postgresql start
+    
+
+4\. Test the server is running on port 5432: 
+    
+    netstat -ltn
+    
+    
+
+5\. Become root: 

     sudo su -

-3\. Enter your root password 
+6\. Enter your root password 

-4\. Switch to the postgres user: 
+7\. Switch to the postgres user: 

     su - postgres

-5\. Log into the database and change the postgres password: 
+8\. Log into the database and change the postgres password: 

     psql
     ALTER USER postgres WITH PASSWORD '&amp;lt;enter postgres password&amp;gt;';
@@ -35,15 +57,31 @@

 **Result:** If _ALTER ROLE_ is displayed, you have successfully changed the postgres database superuser password. 

-6\. Exit: 
+9\. Exit: 

     \q

-6\. Exit back to the root shell: 
+10\. Exit back to the root shell: 

     exit

+
+11\. Edit pg_hba.conf file: 
+    
+    sudo su -
+    
+    
+    vim /var/lib/pgsql/data/pg_hba.conf
+    
+
+12\. Restart postgresql service: 
+    
+    sudo service postgresql restart
+    
+
+  
+

 ## Windows

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Allan Cunliffe</dc:creator><pubDate>Tue, 11 Jun 2013 18:26:04 -0000</pubDate><guid>https://sourceforge.net0c066aab8f19eb568625f36ad3a651b4abcd1b1d</guid></item><item><title>Installing_PostgreSQL modified by Allan Cunliffe</title><link>https://sourceforge.net/p/dpr/wiki/Installing_PostgreSQL/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v10
+++ v11
@@ -33,7 +33,7 @@
     ALTER USER postgres WITH PASSWORD '&amp;lt;enter postgres password&amp;gt;';

-**Result:** _ALTER ROLE_ is displayed. 
+**Result:** If _ALTER ROLE_ is displayed, you have successfully changed the postgres database superuser password. 

 6\. Exit: 

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Allan Cunliffe</dc:creator><pubDate>Tue, 11 Jun 2013 18:26:04 -0000</pubDate><guid>https://sourceforge.net3a899cb9f16044c61e9667421d9052da705444af</guid></item><item><title>Installing_PostgreSQL modified by Allan Cunliffe</title><link>https://sourceforge.net/p/dpr/wiki/Installing_PostgreSQL/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v9
+++ v10
@@ -20,7 +20,7 @@
     sudo su -

-3\. Enter password 
+3\. Enter your root password 

 4\. Switch to the postgres user: 

@@ -30,7 +30,7 @@
 5\. Log into the database and change the postgres password: 

     psql
-    ALTER USER postgres WITH PASSWORD 'postgres';
+    ALTER USER postgres WITH PASSWORD '&amp;lt;enter postgres password&amp;gt;';

 **Result:** _ALTER ROLE_ is displayed. 
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Allan Cunliffe</dc:creator><pubDate>Tue, 11 Jun 2013 18:26:04 -0000</pubDate><guid>https://sourceforge.netfccd8931b6f99b27fae4ccc36329ff6e4de0d9d9</guid></item><item><title>Installing_PostgreSQL modified by Allan Cunliffe</title><link>https://sourceforge.net/p/dpr/wiki/Installing_PostgreSQL/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v8
+++ v9
@@ -3,13 +3,9 @@

-[TOC]
-
 ## Linux

-### Install PostgreSQL
-
-In Linux you can do one of the following: 
+1\. Get the PostgreSQL installation package by doing one of the following: 

   * download PostgreSQL from [PostgreSQL downloads page](http://www.postgresql.org/download)
   * install it via your distribution's package management system 
@@ -18,21 +14,20 @@
     sudo apt-get install postgresql-8.3

-### Create Users
-
-1\. Become root: 
+  
+2\. Become root: 

     sudo su -

-2\. Enter password 
+3\. Enter password 

-3\. Switch to the postgres user: 
+4\. Switch to the postgres user: 

     su - postgres

-4\. Log into the database and change the postgres password: 
+5\. Log into the database and change the postgres password: 

     psql
     ALTER USER postgres WITH PASSWORD 'postgres';
@@ -40,7 +35,7 @@

 **Result:** _ALTER ROLE_ is displayed. 

-5\. Exit: 
+6\. Exit: 

     \q

@@ -51,8 +46,6 @@

 ## Windows
-
-### Install PostgreSQL

 1\. Download PostgreSQL from [PostgreSQL downloads page](http://www.postgresql.org/download)

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Allan Cunliffe</dc:creator><pubDate>Tue, 11 Jun 2013 18:26:04 -0000</pubDate><guid>https://sourceforge.netf881db9cd9184b92e5725d38474da640a00254a9</guid></item><item><title>Installing_PostgreSQL modified by Allan Cunliffe</title><link>https://sourceforge.net/p/dpr/wiki/Installing_PostgreSQL/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v7
+++ v8
@@ -50,7 +50,7 @@
     exit

-### Windows
+## Windows

 ### Install PostgreSQL

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Allan Cunliffe</dc:creator><pubDate>Tue, 11 Jun 2013 18:26:03 -0000</pubDate><guid>https://sourceforge.net5e89bc5c2bf62e1f9ef2c285d4bea50be75484ec</guid></item></channel></rss>