cylence (owner)

Fork Of

Revisions

  • dcac78 cylence Mon May 04 17:30:01 -0700 2009
  • de5eb4 jimiray Thu Apr 30 13:20:59 -0700 2009
  • 4dd045 jimiray Thu Apr 30 13:06:16 -0700 2009
gist: 106751 Download_button fork
public
Public Clone URL: git://gist.github.com/106751.git
Embed All Files: show embed
Postgresql Launchd #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
This file: /Library/LaunchDaemons/org.postgresql.dbms.plist
 
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
        "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Label</key>
    <string>org.postgresql.dbms</string>
    <key>UserName</key>
    <string>postgres</string>
    <key>GroupName</key>
    <string>postgres</string>
    <key>ProgramArguments</key>
    <array>
      <string>/usr/local/postgres/bin/postmaster</string>
      <string>-D</string>
      <string>/usr/local/postgres/data</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
</dict>
</plist>