DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
This page describes how to create the VCL MySQL database and import the VCL database schema.
yum install mysql-server -y /sbin/chkconfig --level 345 mysqld on /sbin/service mysqld start
CREATE DATABASE vcl;
GRANT SELECT,INSERT,UPDATE,DELETE ON vcl.* TO 'vcluser'@'localhost' IDENTIFIED BY 'vcluserpassword';
mysql vcl < vcl.sql