| Apache VCL > Index > Documentation > VCL Installation > Database Configuration |
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';
svn export https://svn.apache.org/repos/asf/incubator/vcl/trunk/mysql/vcl.sql
mysql vcl < vcl.sql