CenterView Help

MySQL/MariaDB Database Creation

Login to your database as root and create a database called cview and allow user access

 

    mysql --user=root --password

    (mysql will prompt for a password.)

    create database cview;

    grant all privileges on cview.* to 'myuser'@'%' identified by 'mypass';

    exit

Please let us know if we could improve this page feedback@phixflow.com