Show
Ignore:
Timestamp:
09/27/08 22:02:37 (16 years ago)
Author:
jerome
Message:

Removed unnecessary spaces at EOL.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/initscripts/mysql/README.mysql

    r3279 r3413  
    2525DataBase using MySQL as a backend. 
    2626 
    27         - edit the pykota-mysql.sql file and modify the passwords at  
     27        - edit the pykota-mysql.sql file and modify the passwords at 
    2828          the end of the 'GRANT USAGE' lines. 
    29            
     29 
    3030        - As MySQL's administrative user, usually root, 
    3131          do the following : 
    32            
     32 
    3333            # mysql <pykota-mysql.sql 
    34              
     34 
    3535        - If no error message appear, your MySQL PyKota storage 
    3636          is now ready for use. 
    37            
     37 
    3838        - In ~pykota/pykota.conf, ensure that the following lines 
    3939          are present and unique inside the [global] section : 
    40          
     40 
    4141            storagebackend : mysqlstorage 
    4242            storageserver : localhost 
     
    4444            storageuser : pykotauser 
    4545            storageuserpw : readonlypw 
    46              
     46 
    4747            NB : replace 'readonlypw' with the password you chose 
    4848            for user 'pykotauser' when you modified pykota-mysql.sql 
    49              
     49 
    5050        - In ~pykota/pykotadmin.conf ensure that the following lines 
    5151          are present and unique inside the [global] section : 
    52          
     52 
    5353            storageadmin : pykotaadmin 
    5454            storageadminpw : readwritepw 
    55              
     55 
    5656            NB : replace 'readwritepw' with the password you chose 
    5757            for user 'pykotaadmin' when you modified pykota-mysql.sql 
    58              
    59         - IMPORTANT : if your database is not located on the print server,  
    60           replace 'localhost' in the lines above with your database server's  
     58 
     59        - IMPORTANT : if your database is not located on the print server, 
     60          replace 'localhost' in the lines above with your database server's 
    6161          hostname or IP address. If your database server doesn't listen on 
    6262          its standard port, add the port number at the end of the hostname 
    6363          with a colon to separate the hostname from the port. 
    6464          See pykota/conf/pykota.conf.sample for examples. 
    65          
     65 
    6666============================================================