Changeset 2695

Show
Ignore:
Timestamp:
02/15/06 16:19:27 (18 years ago)
Author:
matt
Message:

Clarify mysql user passwords

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/initscripts/mysql/pykota-mysql.sql

    r2694 r2695  
    3535-- 
    3636-- Create the print quota database users 
     37-- NOTE: Change the "IDENTIFIED BY" string to the password you would like. 
    3738--  
    38 GRANT USAGE ON *.* TO 'pykotauser'@'localhost' IDENTIFIED BY 'readonly'; 
    39 GRANT USAGE ON *.* TO 'pykotaadmin'@'localhost' IDENTIFIED BY 'readwrite'; 
     39GRANT USAGE ON *.* TO 'pykotauser'@'localhost' IDENTIFIED BY 'readonlypw'; 
     40GRANT USAGE ON *.* TO 'pykotaadmin'@'localhost' IDENTIFIED BY 'readwritepw'; 
    4041 
    4142--