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.
| Excerpt |
|---|
This page describes how to create the VCL MySQL database and import the VCL database schema. |
| Code Block |
|---|
yum install mysql-server -y /sbin/chkconfig --level 345 mysqld on /sbin/service mysqld start |
| Code Block |
|---|
CREATE DATABASE vcl; |
| Code Block |
|---|
GRANT SELECT,INSERT,UPDATE,DELETE ON vcl.* TO 'vcluser'@'localhost' IDENTIFIED BY 'vcluserpassword'; |
| Code Block |
|---|
mysql vcl < vcl.sql |