Setup MyLVS

From MyLVS
Revision as of 17:38, 14 June 2015 by Admin (talk | contribs) (Created page with "=Setup mySQL= At the very step we need to setup the database with all the required tables, please use the import script '''mylvs.sql''' to do so. You'll find the script withi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Setup mySQL

At the very step we need to setup the database with all the required tables, please use the import script mylvs.sql to do so. You'll find the script within the download archive in /scripts or on the reference vm in /var/www/mylvs/scripts

mysql -u root -p < lvs.sql

Create Database and Users

Create the database, login into myslq:

# mysql -u root -p 

On the SQL prompt type:

mysql> create database mylvs;

Create the default mylvs user:

GRANT ALL PRIVILEGES ON mylvs.* TO mylvsuser@localhost IDENTIFIED BY 'demo';

Then exit mysql on run:

mysql -u root -p < lvs.sql