Changes between Version 5 and Version 6 of installation_QCG_Broker
- Timestamp:
- 05/17/11 16:33:36 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
installation_QCG_Broker
v5 v6 110 110 111 111 * Create new database (e.g. qcg-broker) owned by the `qcg-broker` user: 112 {{{ 113 #!div style="font-size: 90%" 114 {{{#!sh 112 115 # su - qcg-broker 113 116 $ createdb -U qcg-broker qcg-broker 114 117 $ exit 115 118 }}} 119 }}} 116 120 '''Note:''' The `qcg-broker` user must be allowed to create new databases. 117 121 118 122 * 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. 119 123 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 123 130 local qcg-broker qcg-broker md5 124 131 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 = 132 144 133 145 '''IMPORTANT:''' Perform the installation as the "qcg-broker" user.