~ubuntu-branches/ubuntu/trusty/postgresql-8.4/trusty

« back to all changes in this revision

Viewing changes to doc/src/sgml/start.sgml

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-07-11 16:59:35 UTC
  • mfrom: (5.1.1 karmic)
  • Revision ID: james.westby@ubuntu.com-20090711165935-jfwin6gfrxf0gfsi
Tags: 8.4.0-2
* debian/libpq-dev.install: Ship catalog/genbki.h. (Closes: #536139)
* debian/rules: Drop --enable-cassert for final release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!-- $PostgreSQL: pgsql/doc/src/sgml/start.sgml,v 1.49 2009/04/27 16:27:36 momjian Exp $ -->
 
1
<!-- $PostgreSQL: pgsql/doc/src/sgml/start.sgml,v 1.50 2009/06/17 21:58:49 tgl Exp $ -->
2
2
 
3
3
 <chapter id="tutorial-start">
4
4
  <title>Getting Started</title>
74
74
      <para>
75
75
       A server process, which manages the database files, accepts
76
76
       connections to the database from client applications, and
77
 
       performs database actions on the behalf of the clients.  The
 
77
       performs database actions on behalf of the clients.  The
78
78
       database server program is called
79
79
       <filename>postgres</filename>.
80
80
       <indexterm><primary>postgres</primary></indexterm>
164
164
createdb: command not found
165
165
</screen>
166
166
    then <productname>PostgreSQL</> was not installed properly.  Either it was not
167
 
    installed at all or your shell's search path was not set correctly.  Try
168
 
    calling the command with an absolute path instead:
 
167
    installed at all or your shell's search path was not set to include it.
 
168
    Try calling the command with an absolute path instead:
169
169
<screen>
170
170
<prompt>$</prompt> <userinput>/usr/local/pgsql/bin/createdb mydb</userinput>
171
171
</screen>
177
177
   <para>
178
178
    Another response could be this:
179
179
<screen>
180
 
createdb: could not connect to database postgres: could not connect
181
 
to server: No such file or directory
 
180
createdb: could not connect to database postgres: could not connect to server: No such file or directory
182
181
        Is the server running locally and accepting
183
182
        connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
184
183
</screen>