From: dbs Date: Tue, 25 Jan 2011 19:18:02 +0000 (+0000) Subject: Update README to include --admin-user / --admin-pass options for eg_db_config.pl X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=418a7a4f1681ed0edc4df340c27ea31326fcd007;p=evergreen%2Ftadl.git Update README to include --admin-user / --admin-pass options for eg_db_config.pl As the default Evergreen administrator account is now created with a randomized user name and password, we have added the options to eg_db_config.pl to reset those to something known and specific to a given instance. Also, Fedora 13 is getting close to retirement, update to Fedora 14 for supported distros. git-svn-id: svn://svn.open-ils.org/ILS/trunk@19283 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/README b/README index aa9d0d5d1f..cc8edf4fd5 100644 --- a/README +++ b/README @@ -5,7 +5,7 @@ Installing prerequisites: Evergreen has a number of prerequisite packages that must be installed before you can successfully configure, compile, and install Evergreen. -1. Begin by installing the most recent version of OpenSRF (1.4.0 or later). +1. Begin by installing the most recent version of OpenSRF (1.6.2 or later). You can download OpenSRF releases from http://evergreen-ils.org/downloads @@ -15,7 +15,7 @@ installer. Issue the following commands as the root user to install prerequisites using the Makefile.install prerequisite installer, substituting -"debian-etch", "debian-lenny", "fedora-13", "ubuntu-hardy", "ubuntu-lucid", +"debian-etch", "debian-lenny", "fedora-14", "ubuntu-hardy", "ubuntu-lucid", "centos", or "rhel" for below: make -f Open-ILS/src/extras/Makefile.install @@ -144,17 +144,20 @@ Once you have created the Evergreen database, you also need to create the database schema and configure your configuration files to point at the database server. Issue the following command as root from inside the Evergreen source directory, replacing , , , , and -with the appropriate values for your PostgreSQL database: +with the appropriate values for your PostgreSQL database, and and + with the values you want for the default Evergreen administrator +account: perl Open-ILS/src/support-scripts/eg_db_config.pl --update-config \ --service all --create-schema --create-offline \ --user --password --hostname --port \ - --database + --database --admin-user --admin-pass This will create the database schema and configure all of the services in your /openils/conf/opensrf.xml configuration file to point to that database. It also creates the configuration files required by the Evergreen cgi-bin -administration scripts. +administration scripts, and set the user name and password for the default +Evergreen administrator account to your requested values. Developer instructions: ======================