Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  freebsd

  Sprache: C
 

#! /bin/sh

PostgreSQL boot time startup script for FreeBSD.  Copy this file to
/usr/local/etc/rc.d/postgresql.

Created through merger of the Linux start script by Ryan Kirkpatrick
and the script in the FreeBSD ports collection.

contrib/start-scripts/freebsd

## EDIT FROM HERE

Installation prefix
prefix=/usr/local/pgsql

Data directory
PGDATA="/usr/local/pgsql/data"

Who to run postgres as, usually "postgres".  (NOT "root")
PGUSER=postgres

Where to keep a log file
PGLOG="$PGDATA/serverlog"

## STOP EDITING HERE

The path that is to be used for the script
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

What to use to start up postgres.  (If you want the script to wait
until the server has started, you could use "pg_ctl start" here.)
DAEMON="$prefix/bin/postgres"

What to use to shut down postgres
PGCTL="$prefix/bin/pg_ctl"

Only start if we can find postgres.
test -x $DAEMON ||
{
 echo "$DAEMON not found"
 exit 0
}

case $1 in
    start)
 su -l $PGUSER -c "$DAEMON -D '$PGDATA' >>$PGLOG 2>&1 &"
 echo -n ' postgresql'
 ;;
    stop)
 su -l $PGUSER -c "$PGCTL stop -D '$PGDATA' -s"
 ;;
    restart)
 su -l $PGUSER -c "$PGCTL stop -D '$PGDATA' -s"
 su -l $PGUSER -c "$DAEMON -D '$PGDATA' >>$PGLOG 2>&1 &"
 ;;
    status)
 su -l $PGUSER -c "$PGCTL status -D '$PGDATA'"
 ;;
    *)
 Print help
 echo "Usage: `basename $0` {start|stop|restart|status}" 1>&2
 exit 1
 ;;
esac

exit 0

Messung V0.5 in Prozent
C=94 H=93 G=93

¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet am  2026-08-08) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Statistik
#Sources=141584
#Domains=738142