Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 608422 Details for
Bug 853353
unix_socket_directory configuration parameter is not recognized
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
Test case script
breakpg.sh (text/plain), 939 bytes, created by
Joonas Sarajärvi
on 2012-08-31 08:24:08 UTC
(
hide
)
Description:
Test case script
Filename:
MIME Type:
Creator:
Joonas Sarajärvi
Created:
2012-08-31 08:24:08 UTC
Size:
939 bytes
patch
obsolete
>#!/bin/sh > ># Tries to ensure that PWD is the project root. >cd $(dirname $0) > >testdbpath="${PWD}/breakdb" >datadir="${testdbpath}/data" >pidfile="${datadir}/postmaster.pid" >iodir="${testdbpath}/io" >logfile="${testdbpath}/log" > > ># Start the postgresql server and wait until it is online. >start_and_wait() { > echo "Starting database server at ${datadir}" > > > while test ! -f "${pidfile}" > do > sleep 1 > done > > while test $(find ${iodir} -name .s.PGSQL.5432 | wc -l) -eq 0 > do > sleep 1 > done > > echo "Server seems to have started succesfully" >} > ># Initialize the database file structures >pg_ctl initdb -D "${datadir}" > >echo "listen_addresses = ''" > "${datadir}/postgresql.conf" >echo "unix_socket_directory='${iodir}'" >> "${datadir}/postgresql.conf" > >mkdir -pv "${iodir}" > >pg_ctl start -D "${datadir}" -l "${logfile}" >sleep 1 > > >if pg_ctl status -D "${datadir}" >then > echo "ok" >else > echo "nay" >fi > >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 853353
:
608422
|
608426