From 7d99cd658d28f7065776d59e0f14751a8f059499 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Mon, 1 May 2006 03:35:15 +0000 Subject: Bug 335999: Remove documentation specific to MySQL 3.x and to Pg 7.4.x - Patch by Frédéric Buclin r=Colin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/xml/installation.xml | 64 +++-------------------------------------------- 1 file changed, 4 insertions(+), 60 deletions(-) (limited to 'docs') diff --git a/docs/xml/installation.xml b/docs/xml/installation.xml index c67b27c3f..75928058b 100644 --- a/docs/xml/installation.xml +++ b/docs/xml/installation.xml @@ -1,5 +1,5 @@ - + Installing Bugzilla @@ -678,20 +678,10 @@ to modify your /etc/my.cnf as below. - - If you are using MySQL 4.0 or newer, enter: - [mysqld] # Allow packets up to 1M max_allowed_packet=1M - - If you are using an older version of MySQL, enter: - - [mysqld] - # Allow packets up to 1M - set-variable = max_allowed_packet=1M - There is also a parameter in Bugzilla called 'maxattachmentsize' (default = 1000 Kb) that controls the maximum allowable attachment @@ -729,12 +719,6 @@ Rebuilding the indexes can be done based on documentation found at . - - - - The ft_min_word_len parameter is only supported in MySQL v4 or higher. - -
@@ -795,11 +779,7 @@ - Run the mysql command-line client. - - - - If you are using MySQL 4.0 or newer, enter: + Run the mysql command-line client and enter: mysql> GRANT SELECT, INSERT, @@ -808,32 +788,11 @@ TO bugs@localhost IDENTIFIED BY '$db_pass'; mysql> FLUSH PRIVILEGES; - - If you are using an older version of MySQL,the - LOCK TABLES and - CREATE TEMPORARY TABLES - permissions will be unavailable and should be removed from - the permissions list. In this case, the following command - line can be used: - - - mysql> GRANT SELECT, INSERT, - UPDATE, DELETE, INDEX, ALTER, CREATE, DROP, - REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY - '$db_pass'; - mysql> FLUSH PRIVILEGES;
PostgreSQL - - If you are using PostgreSQL 8.0.1 or higher, then you - will require to use a version of DBD::Pg which is equal to or - greater than version 1.41 - - -
Add a User to PostgreSQL @@ -868,28 +827,13 @@ you will need to add a new line to it as follows: - host all bugs 127.0.0.1 255.255.255.255 md5 + host all bugs 127.0.0.1 255.255.255.255 md5 - + This means that for TCP/IP (host) connections, allow connections from '127.0.0.1' to 'all' databases on this server from the 'bugs' user, and use password authentication (md5) for that user. - If you are using versions of PostgreSQL - before version 8, you may also need to edit postgresql.conf - , also usually found in the /var/lib/pgsql/data/ folder. - You will need to make a single line change, changing - - - # tcpip_socket = false - - - to - - - tcpip_socket = true - - Now, you will need to restart PostgreSQL, but you will need to fully stop and start the server rather than just restarting due to the possibility of a change to postgresql.conf. After the server has -- cgit v1.2.3-24-g4f1b