<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Install and Configure PostgreSQL in openSUSE 11.0</title>
	<atom:link href="http://www.susegeek.com/database/install-and-configure-postgresql-in-opensuse-110/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.susegeek.com/database/install-and-configure-postgresql-in-opensuse-110/</link>
	<description>Tips,Tricks, Tutorials,How Tos and Troubleshooting suse linux</description>
	<lastBuildDate>Wed, 08 Sep 2010 00:19:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Problem Zugriff auf eine Postgresql-DB mit Java</title>
		<link>http://www.susegeek.com/database/install-and-configure-postgresql-in-opensuse-110/comment-page-1/#comment-3363</link>
		<dc:creator>Problem Zugriff auf eine Postgresql-DB mit Java</dc:creator>
		<pubDate>Fri, 25 Jun 2010 16:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=111#comment-3363</guid>
		<description>[...]  [...]</description>
		<content:encoded><![CDATA[<p>[...]  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: siri</title>
		<link>http://www.susegeek.com/database/install-and-configure-postgresql-in-opensuse-110/comment-page-1/#comment-2758</link>
		<dc:creator>siri</dc:creator>
		<pubDate>Tue, 20 Oct 2009 03:24:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=111#comment-2758</guid>
		<description>Hi ,I installed postgresql from yast2,but didn&#039;t get pg_hba.conf &amp; postgresql.conf files in /var/lib/pgsql/data

Any luck on this</description>
		<content:encoded><![CDATA[<p>Hi ,I installed postgresql from yast2,but didn&#8217;t get pg_hba.conf &amp; postgresql.conf files in /var/lib/pgsql/data</p>
<p>Any luck on this</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Perypetie przy migracji z MySQL do PostgreSQL &#171; Java vs. Me</title>
		<link>http://www.susegeek.com/database/install-and-configure-postgresql-in-opensuse-110/comment-page-1/#comment-1685</link>
		<dc:creator>Perypetie przy migracji z MySQL do PostgreSQL &#171; Java vs. Me</dc:creator>
		<pubDate>Fri, 21 Nov 2008 17:18:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=111#comment-1685</guid>
		<description>[...] user &quot;system&quot;. Długo się zastanawiałem o co chodziło z tym słówkiem IDENT, aż trafiłem na wpis w blogu który mnie oświecił  Okazało się, że domyślnym sposobem autoryzacji jest IDENT, co oznacza [...]</description>
		<content:encoded><![CDATA[<p>[...] user &#8220;system&#8221;. Długo się zastanawiałem o co chodziło z tym słówkiem IDENT, aż trafiłem na wpis w blogu który mnie oświecił  Okazało się, że domyślnym sposobem autoryzacji jest IDENT, co oznacza [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: roland</title>
		<link>http://www.susegeek.com/database/install-and-configure-postgresql-in-opensuse-110/comment-page-1/#comment-1629</link>
		<dc:creator>roland</dc:creator>
		<pubDate>Thu, 13 Nov 2008 02:06:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=111#comment-1629</guid>
		<description>On my install of SuSE 11.x, password is an uppercase P not lower as you have here:

postgresql@opensuse:~&gt; createuser -D -p </description>
		<content:encoded><![CDATA[<p>On my install of SuSE 11.x, password is an uppercase P not lower as you have here:</p>
<p>postgresql@opensuse:~&gt; createuser -D -p</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flexpadawan</title>
		<link>http://www.susegeek.com/database/install-and-configure-postgresql-in-opensuse-110/comment-page-1/#comment-1610</link>
		<dc:creator>flexpadawan</dc:creator>
		<pubDate>Sun, 09 Nov 2008 19:38:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=111#comment-1610</guid>
		<description>System:
* openSuse 11 64bit (Installed with postgres during set-up)
* uuid-1.6.2.tar.gz into /usr/share/postgresql/contrib/uuid-ossp/
     o tar xvzf uuid....
     o cd uuid...
     o ./configure --with-pgsql
     o make
     o make install

At this point everything is successful.

Now I add this:
/usr/bin/psql -d postgres -U postgres -f /usr/share/postgresql/contrib/uuid-ossp/uuid-1.6.2/pgsql/uuid.sql

Basically it fails.

When I look at the script the functions are already in postgres when I look through it in pgAdmin.

So I&#039;m assuming I can skip that part??

Now for the fun part......
I&#039;m a Windows guy and for me to get this to work was easy. In the ../share/contib folder I ran the file uuid-ossp.sql file and ran the script. All the uuid functions work perfectly!

They have functions written in there like this:

-- Adjust this setting to control where the objects get created.
SET search_path = public;

CREATE OR REPLACE FUNCTION uuid_nil()
RETURNS uuid
AS &#039;$libdir/uuid-ossp&#039;, &#039;uuid_nil&#039;
IMMUTABLE STRICT LANGUAGE C;


I try running the same script and:
ERROR: could not access file &quot;$libdir/uuid-ossp&quot;: No such file or directory


Of course this script was for a windows box and I&#039;m sure the linux version will look a little different.


Got any ideas?</description>
		<content:encoded><![CDATA[<p>System:<br />
* openSuse 11 64bit (Installed with postgres during set-up)<br />
* uuid-1.6.2.tar.gz into /usr/share/postgresql/contrib/uuid-ossp/<br />
     o tar xvzf uuid&#8230;.<br />
     o cd uuid&#8230;<br />
     o ./configure &#8211;with-pgsql<br />
     o make<br />
     o make install</p>
<p>At this point everything is successful.</p>
<p>Now I add this:<br />
/usr/bin/psql -d postgres -U postgres -f /usr/share/postgresql/contrib/uuid-ossp/uuid-1.6.2/pgsql/uuid.sql</p>
<p>Basically it fails.</p>
<p>When I look at the script the functions are already in postgres when I look through it in pgAdmin.</p>
<p>So I&#8217;m assuming I can skip that part??</p>
<p>Now for the fun part&#8230;&#8230;<br />
I&#8217;m a Windows guy and for me to get this to work was easy. In the ../share/contib folder I ran the file uuid-ossp.sql file and ran the script. All the uuid functions work perfectly!</p>
<p>They have functions written in there like this:</p>
<p>&#8211; Adjust this setting to control where the objects get created.<br />
SET search_path = public;</p>
<p>CREATE OR REPLACE FUNCTION uuid_nil()<br />
RETURNS uuid<br />
AS &#8216;$libdir/uuid-ossp&#8217;, &#8216;uuid_nil&#8217;<br />
IMMUTABLE STRICT LANGUAGE C;</p>
<p>I try running the same script and:<br />
ERROR: could not access file &#8220;$libdir/uuid-ossp&#8221;: No such file or directory</p>
<p>Of course this script was for a windows box and I&#8217;m sure the linux version will look a little different.</p>
<p>Got any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flexpadawan</title>
		<link>http://www.susegeek.com/database/install-and-configure-postgresql-in-opensuse-110/comment-page-1/#comment-1606</link>
		<dc:creator>flexpadawan</dc:creator>
		<pubDate>Sun, 09 Nov 2008 15:07:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=111#comment-1606</guid>
		<description>Any idea how to get uuid to install and work?  In the past I&#039;d configure postgres ./configure --with-perl --with-ossp-uuid
I used the openSuse installation of postgres and didn&#039;t get to option to configure it the way I wanted to.

I&#039;m also running the 64bit version of openSuse.

Any help would be great!...I&#039;m not a linux guy.</description>
		<content:encoded><![CDATA[<p>Any idea how to get uuid to install and work?  In the past I&#8217;d configure postgres ./configure &#8211;with-perl &#8211;with-ossp-uuid<br />
I used the openSuse installation of postgres and didn&#8217;t get to option to configure it the way I wanted to.</p>
<p>I&#8217;m also running the 64bit version of openSuse.</p>
<p>Any help would be great!&#8230;I&#8217;m not a linux guy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flexpadawan</title>
		<link>http://www.susegeek.com/database/install-and-configure-postgresql-in-opensuse-110/comment-page-1/#comment-1591</link>
		<dc:creator>flexpadawan</dc:creator>
		<pubDate>Thu, 06 Nov 2008 04:33:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=111#comment-1591</guid>
		<description>Autostart Issue:

I&#039;ve always used this procedure to have postgres autostart on reboots.  
Procedure I&#039;ve used during set-up:
-   Copy file linux from /root/postgres…/contrib/start-scripts to /etc/rc.d/
-   Rename file from linux to postgresql
-   Log in is root
-   chmod 744 /etc/init.d/postgresql
-   insserv /etc/init.d/postgresql
-   Reboot system, Postgres should start automatically

With opensuse 11 I get an error when I use the insserv command

insserv: warning: script &#039;postgresql&#039; missing LSB tags and overrides</description>
		<content:encoded><![CDATA[<p>Autostart Issue:</p>
<p>I&#8217;ve always used this procedure to have postgres autostart on reboots.<br />
Procedure I&#8217;ve used during set-up:<br />
-   Copy file linux from /root/postgres…/contrib/start-scripts to /etc/rc.d/<br />
-   Rename file from linux to postgresql<br />
-   Log in is root<br />
-   chmod 744 /etc/init.d/postgresql<br />
-   insserv /etc/init.d/postgresql<br />
-   Reboot system, Postgres should start automatically</p>
<p>With opensuse 11 I get an error when I use the insserv command</p>
<p>insserv: warning: script &#8216;postgresql&#8217; missing LSB tags and overrides</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shyam</title>
		<link>http://www.susegeek.com/database/install-and-configure-postgresql-in-opensuse-110/comment-page-1/#comment-1475</link>
		<dc:creator>Shyam</dc:creator>
		<pubDate>Tue, 21 Oct 2008 13:30:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=111#comment-1475</guid>
		<description>Wow... perfect tutorial to configure postgres. You made my day! Thanks. I would kiss u for sure if u were sitting next to me</description>
		<content:encoded><![CDATA[<p>Wow&#8230; perfect tutorial to configure postgres. You made my day! Thanks. I would kiss u for sure if u were sitting next to me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Driven Crazy</title>
		<link>http://www.susegeek.com/database/install-and-configure-postgresql-in-opensuse-110/comment-page-1/#comment-1464</link>
		<dc:creator>Driven Crazy</dc:creator>
		<pubDate>Mon, 20 Oct 2008 17:29:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=111#comment-1464</guid>
		<description>I would kiss you when you sitting next to me this IDENT shit has driven me crazy</description>
		<content:encoded><![CDATA[<p>I would kiss you when you sitting next to me this IDENT shit has driven me crazy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PhyrePhox</title>
		<link>http://www.susegeek.com/database/install-and-configure-postgresql-in-opensuse-110/comment-page-1/#comment-99</link>
		<dc:creator>PhyrePhox</dc:creator>
		<pubDate>Mon, 04 Aug 2008 11:08:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=111#comment-99</guid>
		<description>Hej,

as I did not want to mix two installations of postgresql, I did not try to follow this instruction. So I can just follow it - or shall I remove stuff before I start anew?

Moreover, I still wonder if files are missing in my current /var/lib/pgsql directory...


TIA
Axel</description>
		<content:encoded><![CDATA[<p>Hej,</p>
<p>as I did not want to mix two installations of postgresql, I did not try to follow this instruction. So I can just follow it &#8211; or shall I remove stuff before I start anew?</p>
<p>Moreover, I still wonder if files are missing in my current /var/lib/pgsql directory&#8230;</p>
<p>TIA<br />
Axel</p>
]]></content:encoded>
	</item>
</channel>
</rss>
