|
Home > Archive > PostgreSQL Discussion > August 2005 > Start up script for Fedora Core 3
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Start up script for Fedora Core 3
|
|
| Chris Guo 2005-08-24, 8:24 pm |
| Dear all,
We are using Fedora Core 3 in our company, and we installed postgresql 8.0.3
as the database system. I wonder if anybody has the start up script for this
version so we can start postgresql service automatically after we reboot the
server.
Any help will be highly appreciated.
Chris
| |
| Dianne Yumul 2005-08-24, 8:24 pm |
| Hello,
We have Fedora Core 4, but I'm pretty sure it's the same. To start the
service we use
/etc/rc.d/init.d/postgresql start
Now if you want postgresql to start automatically on boot you do:
chkconfig postgresql on
Read the man pages for chkconfig for more details.
Hope this helps.
On Aug 24, 2005, at 11:31 AM, Chris Guo wrote:
> Dear all,
> _
> We are using Fedora Core 3 in our company, and we installed postgresql
> 8.0.3 as the database system. I wonder if anybody has the start up
> script for this version so we can start postgresql service
> automatically after we reboot the server.
> Any help will be highly appreciated.
> _
> Chris
---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql
.org so that your
message can get through to the mailing list cleanly
| |
| Tom Lane 2005-08-24, 8:24 pm |
| "Chris Guo" <cguo@at-sd.com> writes:
> We are using Fedora Core 3 in our company, and we installed postgresql =
> 8.0.3
> as the database system. I wonder if anybody has the start up script for =
> this
> version so we can start postgresql service automatically after we reboot =
> the
> server.
If you install the RPM distribution of Postgres (which is the way I'd
recommend, on RPM-based platforms), it comes with a suitable init
script.
regards, tom lane
---------------------------(end of broadcast)---------------------------
TIP 2: Don't 'kill -9' the postmaster
| |
| Joshua D. Drake 2005-08-24, 8:24 pm |
| Chris Guo wrote:
> -->
>
> Dear all,
>
>
>
> We are using Fedora Core 3 in our company, and we installed postgresql
> 8.0.3 as the database system. I wonder if anybody has the start up
> script for this version so we can start postgresql service
> automatically after we reboot the server.
>
If you installed it from rpm then the startup script should already be
there. If you install it from src look
in postgresql-8.0.3/contrib/start-scripts
Sincerely,
Joshua D. Drake
> Any help will be highly appreciated.
>
>
>
> Chris
>
---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql
.org so that your
message can get through to the mailing list cleanly
| |
| Alexandre Barros 2005-08-24, 8:24 pm |
| Chris Guo wrote:
> Dear all,
>
>
>
> We are using Fedora Core 3 in our company, and we installed postgresql
> 8.0.3 as the database system. I wonder if anybody has the start up
> script for this version so we can start postgresql service
> automatically after we reboot the server.
>
> Any help will be highly appreciated.
>
>
>
> Chris
>
personally i use something like this on my rc.local:
rm -f /opt/pgsql-8.0.3/dbdata/postmaster.pid
sudo -u pgsql /opt/pgsql-8.0.3/bin/pg_ctl -o -i -D
/opt/pgsql-8.0.3/dbdata/ -l /opt/pgsql-8.0.3/dbdata/logfile start
does the job, but i'm not sure i'd recommend it... ;)
best regards.
---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql
.org so that your
message can get through to the mailing list cleanly
| |
| Chris Guo 2005-08-24, 8:24 pm |
| Thanks, I found it.
-----Original Message-----
From: pgsql-general-owner@postgresql.org
[mailto:pgsql-general-owner@postgresql.org] On Behalf Of Joshua D. Drake
Sent: Wednesday, August 24, 2005 12:18 PM
To: Chris Guo
Cc: pgsql-general@postgresql.org
Subject: Re: [GENERAL] Start up script for Fedora Core 3
Chris Guo wrote:
> -->
>
> Dear all,
>
>
>
> We are using Fedora Core 3 in our company, and we installed postgresql
> 8.0.3 as the database system. I wonder if anybody has the start up
> script for this version so we can start postgresql service
> automatically after we reboot the server.
>
If you installed it from rpm then the startup script should already be
there. If you install it from src look
in postgresql-8.0.3/contrib/start-scripts
Sincerely,
Joshua D. Drake
> Any help will be highly appreciated.
>
>
>
> Chris
>
---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql
.org so that your
message can get through to the mailing list cleanly
---------------------------(end of broadcast)---------------------------
TIP 5: don't forget to increase your free space map settings
|
|
|
|
|