Changes between Version 5 and Version 6 of installation_QCG_Broker

Show
Ignore:
Timestamp:
05/17/11 16:33:36 (13 years ago)
Author:
bartek
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • installation_QCG_Broker

    v5 v6  
    110110 
    111111* Create new database (e.g. qcg-broker) owned by the `qcg-broker` user: 
     112{{{ 
     113#!div style="font-size: 90%" 
     114{{{#!sh 
    112115 # su - qcg-broker 
    113116 $ createdb -U qcg-broker qcg-broker 
    114117 $ exit 
    115  
     118}}} 
     119}}} 
    116120'''Note:''' The `qcg-broker` user must be allowed to create new databases. 
    117121 
    118122* Depending on the local PostgreSQL configuration you may need to edit the `pg_hba.conf` file  (''host based authentication'' configuration file) to enable password authentication to the `qcg-broker` database for the `qcg-broker` user. 
    119123 
    120 For SL5.x: edit the `/var/lib/pgsql/data/pg_hba.conf` file. 
    121  
    122 If the PostgreSQL installation is fully dedicated for QCG-Broker replace the default configuration with rules (lines) given below, otherwise insert them to the configuration file in a proper place: 
     124 For SL5.x: edit the `/var/lib/pgsql/data/pg_hba.conf` file. 
     125 
     126 If the PostgreSQL installation is fully dedicated for QCG-Broker replace the default configuration with rules (lines) given below, otherwise insert them to the configuration file in a proper place: 
     127{{{ 
     128#!div style="font-size: 90%" 
     129{{{#!default 
    123130 local   qcg-broker   qcg-broker                         md5 
    124131 host    qcg-broker   qcg-broker   127.0.0.1/32          md5 
    125  
    126  
    127 {{Note|}} You must reload the PostgreSQL server in order to make the changes visible e.g: 
    128  
    129  service postgresql reload 
    130  
    131 =Installation= 
     132}}} 
     133}}} 
     134 
     135 '''Note:''' You must reload the PostgreSQL server in order to make the changes visible e.g: 
     136{{{ 
     137#!div style="font-size: 90%" 
     138{{{#!sh 
     139 # service postgresql reload 
     140}}} 
     141}}} 
     142 
     143= Installation = 
    132144 
    133145'''IMPORTANT:''' Perform the installation as the "qcg-broker" user.