Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
ed7910ef
Commit
ed7910ef
authored
Jan 30, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update /contrib README and add init.d from Ryan.
parent
8255fc17
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
73 additions
and
0 deletions
+73
-0
contrib/README
contrib/README
+21
-0
contrib/init.d/README
contrib/init.d/README
+8
-0
contrib/init.d/postgresql
contrib/init.d/postgresql
+44
-0
No files found.
contrib/README
View file @
ed7910ef
...
@@ -47,6 +47,11 @@ fulltextindex -
...
@@ -47,6 +47,11 @@ fulltextindex -
Full text indexing using triggers
Full text indexing using triggers
by Maarten Boekhold <maartenb@dutepp0.et.tudelft.nl>
by Maarten Boekhold <maartenb@dutepp0.et.tudelft.nl>
init.d -
Scripts for starting and stopping the PostgreSQL server on
a non-Linux systems
by Ryan Kirkpatrick <pgsql@rkirkpat.net>
intarray -
intarray -
Index support for arrays of int4, using GiST
Index support for arrays of int4, using GiST
by Teodor Sigaev <teodor@stack.net> and Oleg Bartunov
by Teodor Sigaev <teodor@stack.net> and Oleg Bartunov
...
@@ -77,9 +82,17 @@ miscutil -
...
@@ -77,9 +82,17 @@ miscutil -
PostgreSQL assert checking and various utility functions
PostgreSQL assert checking and various utility functions
by Massimo Dal Zotto <dz@cs.unitn.it>
by Massimo Dal Zotto <dz@cs.unitn.it>
mysql -
utility to convert MySQL schema dumps to SQL92 and PostgreSQL
by Thomas Lockhart <lockhart@alumni.caltech.edu>
noupdate -
noupdate -
trigger to prevent updates on single columns
trigger to prevent updates on single columns
oid2name -
maps numeric files to table names
by B Palmer <bpalmer@crimelabs.net>
pg_dumplo -
pg_dumplo -
Dump large objects
Dump large objects
by Karel Zak <zakkr@zf.jcu.cz>
by Karel Zak <zakkr@zf.jcu.cz>
...
@@ -92,6 +105,14 @@ pgcrypto -
...
@@ -92,6 +105,14 @@ pgcrypto -
Cryptographic hash functions
Cryptographic hash functions
by Marko Kreen <marko@l-t.ee>
by Marko Kreen <marko@l-t.ee>
retep -
tools to build retep tools packages
by Peter T Mount <peter@retep.org.uk>
rserv -
replication server
by Vadim B. Mikheev <vadim4o@email.com>
seg -
seg -
Confidence-interval datatype (GiST indexing example)
Confidence-interval datatype (GiST indexing example)
by Gene Selkov, Jr. <selkovjr@mcs.anl.gov>
by Gene Selkov, Jr. <selkovjr@mcs.anl.gov>
...
...
contrib/init.d/README
0 → 100644
View file @
ed7910ef
postgresql -> This is a Linux distribution independent (or so I
hope) init.d/rc.d script that makes use of pg_ctl. There is currently a
few in ./contrib/linux of the pgsql source tree, but they are RedHat
specific. This one is simple and self contained.
---------------------------------------------------------------------------
| Ryan Kirkpatrick | Boulder, Colorado | http://www.rkirkpat.net/ |
---------------------------------------------------------------------------
contrib/init.d/postgresql
0 → 100644
View file @
ed7910ef
#! /bin/sh
#
# PostgreSQL Start the pgsql RDMBS.
PATH
=
/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON
=
/home/postgres/bin/pg_ctl
NAME
=
postmaster
FILE
=
postgresql
ARGS
=
"-w -D /home/postgres/data -o -i -o -F"
USER
=
"postgres:postgres"
LOG
=
"/home/postgres/server.log"
DESC
=
"PostgreSQL RDBMS"
test
-f
$DAEMON
||
exit
0
set
-e
case
"
$1
"
in
start
)
echo
-n
"Starting
$DESC
: "
su - postgres sh
-c
"
$DAEMON
start
$ARGS
>&
$LOG
"
echo
"
$NAME
."
;;
stop
)
echo
-n
"Stopping
$DESC
: "
su - postgres sh
-c
"
$DAEMON
stop >& /dev/null"
echo
"
$NAME
."
;;
restart
)
/etc/init.d/
$FILE
stop
sleep
5
/etc/init.d/
$FILE
start
;;
status
)
su - postgres
$DAEMON
status
;;
*
)
N
=
/etc/init.d/
$FILE
echo
"Usage:
$N
{start|stop|restart|status}"
>
&2
exit
1
;;
esac
exit
0
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment