/* Creates DB and opens it to any user */ /* Run this mysql macro as root! */ DROP DATABASE IF EXISTS GiantDisc; CREATE DATABASE GiantDisc; use GiantDisc; grant all privileges on GiantDisc.* to music@'%'; grant all privileges on GiantDisc.* to music@localhost; grant all privileges on GiantDisc.* to apache@localhost with grant option;