createuser.sgml
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:9k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. <refentry id="APP-CREATEUSER">
  2.  <refmeta>
  3.   <refentrytitle>
  4.    <application>createuser</application>
  5.   </refentrytitle>
  6.   <refmiscinfo>Application</refmiscinfo>
  7.  </refmeta>
  8.  <refnamediv>
  9.   <refname>
  10.    <application>createuser</application>
  11.   </refname>
  12.   <refpurpose>
  13.    Create a new <productname>Postgres</productname> user
  14.   </refpurpose>
  15.  </refnamediv>
  16.  <refsynopsisdiv>
  17.   <refsynopsisdivinfo>
  18.    <date>1998-10-02</date>
  19.   </refsynopsisdivinfo>
  20.   <synopsis>
  21. createuser [ <replaceable class="parameter">username</replaceable> ]
  22. createuser [ -h <replaceable class="parameter">host</replaceable> ] [ -p <replaceable class="parameter">port</replaceable> ]
  23.     [ -i <replaceable class="parameter">userid</replaceable> ] [ -d | -D ] [ -u | -U ]
  24.     [ <replaceable class="parameter">username</replaceable> ]
  25.   </synopsis>
  26.   <refsect2 id="R2-APP-CREATEUSER-1">
  27.    <refsect2info>
  28.     <date>1998-10-02</date>
  29.    </refsect2info>
  30.    <title>
  31.     Inputs
  32.    </title>
  33.    <para>
  34.     <variablelist>
  35.      <varlistentry>
  36.       <term>-h <replaceable class="parameter">host</replaceable></term>
  37.       <listitem>
  38.        <para>
  39. Specifies the hostname of the machine on which the 
  40. <application>postmaster</application>
  41. is running.  Defaults to using a local Unix domain socket
  42. rather than an IP connection.
  43.        </para>
  44.       </listitem>
  45.      </varlistentry>
  46.      <varlistentry>
  47.       <term>-p <replaceable class="parameter">port</replaceable></term>
  48.       <listitem>
  49.        <para>
  50. Specifies the Internet TCP/IP port or local Unix domain socket file 
  51. extension on which the <application>postmaster</application>
  52. is listening for connections.  The port number defaults to 5432,
  53. or the value of the <envar>PGPORT</envar>
  54. environment variable (if set).
  55.        </para>
  56.       </listitem>
  57.      </varlistentry>
  58.      <varlistentry>
  59.       <term>-d</term>
  60.       <listitem>
  61.        <para>
  62. Allows the user to create databases.
  63.        </para>
  64.       </listitem>
  65.      </varlistentry>
  66.      <varlistentry>
  67.       <term>-D</term>
  68.       <listitem>
  69.        <para>
  70. Forbids the user to create databases.
  71.        </para>
  72.       </listitem>
  73.      </varlistentry>
  74.      <varlistentry>
  75.       <term>-i <replaceable class="parameter">userid</replaceable></term>
  76.       <listitem>
  77.        <para>
  78. Specifies the numeric identifier to be associated with this user.
  79. This identifier must be unique among all 
  80. <productname>Postgres</productname> users, and is not required
  81. to match the operating system UID.
  82. You will be prompted for an identifier if none is specified on the command line,
  83. and it will suggest an identifier matching the UID.
  84.        </para>
  85.       </listitem>
  86.      </varlistentry>
  87.      <varlistentry>
  88.       <term>-u</term>
  89.       <listitem>
  90.        <para>
  91. Allows the user to create other users.
  92.        </para>
  93.       </listitem>
  94.      </varlistentry>
  95.      <varlistentry>
  96.       <term>-U</term>
  97.       <listitem>
  98.        <para>
  99. Forbids the user to create other users.
  100.        </para>
  101.       </listitem>
  102.      </varlistentry>
  103.      <varlistentry>
  104.       <term><replaceable class="parameter">username</replaceable></term>
  105.       <listitem>
  106.        <para>
  107. Specifies the name of the <productname>Postgres</productname> user to be created. 
  108. This name must be unique among all <productname>Postgres</productname> users.
  109. You will be prompted for a name if none is specified on the command line.
  110.        </para>
  111.       </listitem>
  112.      </varlistentry>  
  113.     </variablelist>
  114.    </para>
  115.   </refsect2>
  116.   <refsect2 id="R2-APP-CREATEUSER-2">
  117.    <refsect2info>
  118.     <date>1998-10-02</date>
  119.    </refsect2info>
  120.    <title>
  121.     Outputs
  122.    </title>
  123.    <para>
  124.     <application>createuser</application> will add an entry in the
  125.     <literal>pg_user</literal> or <literal>pg_shadow</literal> system table.
  126.     <variablelist>
  127.      <varlistentry>
  128.       <term><computeroutput>
  129. Connection to database 'template1' failed.
  130. connectDB() failed: Is the postmaster running and accepting connections at 'UNIX Socket' on port '<replaceable class="parameter">port</replaceable>'?
  131. createuser: database access failed.
  132.        </computeroutput></term>
  133.       <listitem>
  134.        <para>
  135. <application>createuser</application> could not attach to the 
  136. <application>postmaster</application> 
  137. process on the specified host and port.  If you see this message,
  138. ensure that the <application>postmaster</application> 
  139. is running on the proper host and that you have specified the proper
  140. port.  If your site uses an authentication system, ensure that you
  141. have obtained the required authentication credentials.
  142.        </para>
  143.       </listitem>
  144.      </varlistentry>
  145.      <varlistentry>
  146.       <term><computeroutput>
  147. Connection to database 'template1' failed.
  148. FATAL 1:  SetUserId: user '<replaceable class="parameter">username</replaceable>' is not in 'pg_shadow'
  149. createuser: database access failed.
  150.        </computeroutput></term>
  151.       <listitem>
  152.        <para>
  153. You do not have a valid entry in the relation <literal>pg_shadow</literal>
  154. and and will not be allowed to access <productname>Postgres</productname>. Contact your
  155. <productname>Postgres</productname> administrator.
  156.        </para>
  157.       </listitem>
  158.      </varlistentry>
  159.      <varlistentry>
  160.       <term><computeroutput>
  161. createuser: <replaceable class="parameter">username</replaceable> cannot create users.
  162.        </computeroutput></term>
  163.       <listitem>
  164.        <para>
  165. You do not have permission to create new users; contact your
  166. <productname>Postgres</productname> site administrator.
  167.        </para>
  168.       </listitem>
  169.      </varlistentry>
  170.      <varlistentry>
  171.       <term><computeroutput>
  172. createuser: user "<replaceable class="parameter">username</replaceable>" already exists
  173.        </computeroutput></term>
  174.       <listitem>
  175.        <para>
  176. The user to be added already has an entry in the
  177. <literal>pg_shadow</literal> class.
  178.        </para>
  179.       </listitem>
  180.      </varlistentry>
  181.      <varlistentry>
  182.       <term><computeroutput>
  183. database access failed
  184.        </computeroutput></term>
  185.       <listitem>
  186.        <para>
  187. An internal error occurred in <application>psql</application>
  188. or in the backend server.  Ensure that your site administrator has
  189. properly installed <productname>Postgres</productname>and initialized the site with 
  190. <application>initdb</application>.
  191.        </para>
  192.       </listitem>
  193.      </varlistentry>
  194.     </variablelist>
  195.    </para>
  196.    <note>
  197.     <para>
  198.      <application>createuser</application> internally runs
  199.      <command>CREATE USER</command> from <application>psql</application>
  200.      while connected to the <literal>template1</literal> database.
  201.     </para>
  202.    </note>
  203.   </refsect2>
  204.  </refsynopsisdiv>
  205.   
  206.  <refsect1 id="R1-APP-CREATEUSER-1">
  207.   <refsect1info>
  208.    <date>1998-10-02</date>
  209.   </refsect1info>
  210.   <title>
  211.    Description
  212.   </title>
  213.   <para>
  214.    <application>createuser</application> creates a 
  215.    new <productname>Postgres</productname> user.  
  216.    Only users with <literal>usesuper</literal> set in
  217.    the <literal>pg_shadow</literal> class can create 
  218.    new <productname>Postgres</productname> users.  As shipped,
  219.    the user <literal>postgres</literal> can create users.
  220.   </para>
  221.   <para>
  222.    <application>createuser</application> is a shell script that invokes
  223.    <application>psql</application>.
  224.    Hence, a <application>postmaster</application>
  225.    process must be running on the database server host before
  226.    <application>createuser</application> is executed.
  227.    The 
  228.    <envar>PGOPTION</envar>
  229.    and
  230.    <envar>PGREALM</envar>
  231.    environment variables will be passed on to
  232.    <application>psql</application>
  233.    and processed as described in <xref endterm="psql-ref" linkend="app-psql">.
  234.   </para>
  235.   <para>
  236.    Once invoked, <application>createuser</application>
  237.    will ask a series of questions to obtain parameters not specified on
  238.    the command line.  The new user's database login name and a numeric 
  239.    user identifier must be specified.
  240.    
  241.    <note>
  242.     <para>
  243.      The <productname>Postgres</productname> user identifier
  244.      does not need to be the same as the user's Unix UID. However, typically
  245.      they are assigned to be the same.
  246.     </para>
  247.    </note>
  248.   </para>
  249.  
  250.   <para>
  251.    You must also describe the privileges of the new user for security purposes.
  252.    Specifically, you will be asked whether the new user should be able to
  253.    act as <productname>Postgres</productname> super-user,
  254.    whether the new user may create new databases and whether the new user
  255.    is allowed to create other new users.
  256.   </para>
  257.  </refsect1>
  258. </refentry>
  259. <!-- Keep this comment at the end of the file
  260. Local variables:
  261. mode: sgml
  262. sgml-omittag:nil
  263. sgml-shorttag:t
  264. sgml-minimize-attributes:nil
  265. sgml-always-quote-attributes:t
  266. sgml-indent-step:1
  267. sgml-indent-data:t
  268. sgml-parent-document:nil
  269. sgml-default-dtd-file:"../reference.ced"
  270. sgml-exposed-tags:nil
  271. sgml-local-catalogs:"/usr/lib/sgml/catalog"
  272. sgml-local-ecat-files:nil
  273. End:
  274. -->