Updated HACKING instructions for Fedora 17 and above.

FEA: ItEr77S04BugFixing
This commit is contained in:
Jacobo Aragunde Pérez 2012-11-08 13:17:55 +01:00
parent c563997424
commit 7d2f6f3a19

11
HACKING
View file

@ -87,10 +87,19 @@ Fedora
* Install requirements:: * Install requirements::
# yum install git maven java-1.7.0-openjdk-devel postgresql postgresql-server python-docutils make gettext gnu-free-fonts-compat
.. WARNING:: Use the following command in Fedora 16 or below::
# yum install git maven java-1.6.0-openjdk postgresql postgresql-server python-docutils make gettext gnu-free-fonts-compat # yum install git maven java-1.6.0-openjdk postgresql postgresql-server python-docutils make gettext gnu-free-fonts-compat
* Start database service:: * Start database service::
# su - postgres -c "PGDATA=/var/lib/pgsql/data initdb"
# systemctl start postgresql.service
.. WARNING:: Use the following commands in Fedora 16 or below::
# service postgresql initdb # service postgresql initdb
# service postgresql start # service postgresql start
@ -110,6 +119,8 @@ Fedora
ALTER USER postgres WITH PASSWORD 'postgres'; ALTER USER postgres WITH PASSWORD 'postgres';
.. WARNING:: These steps are only for Fedora 16 and below:
* Edit ``/var/lib/pgsql/data/pg_hba.conf`` and replace ``ident`` by ``md5`` * Edit ``/var/lib/pgsql/data/pg_hba.conf`` and replace ``ident`` by ``md5``
* Reload database configuration:: * Reload database configuration::