Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. create a database in mysql named for use with VCL
    Code Block
    CREATE DATABASE vcl;
    
  2. create a user with SELECT, INSERT, UPDATE, and DELETE privileges on the database you just created
    NOTE: Replace vcluserpassword with your own password!
    Code Block
    GRANT SELECT,INSERT,UPDATE,DELETE ON vcl.* TO 'vcluser'@'localhost' IDENTIFIED BY 'vcluserpassword';
    
  3. get vcl.sql file
    Code Block
    svn export https://svn.apache.org/repos/asf/incubator/vcl/trunk/mysql/vcl.sql
    
  4. import vcl.sql file into database
    Code Block
    mysql vcl < vcl.sql