Incorrect DB name in Installation guide
Brought to you by:
kwolstencroft,
nsharman
# mysql --user root
mysql> create database mygrid_kave;
mysql> create database mygrid_mir;
mysql> connect mygrid-mir; <-- Wrong DB name
mysql> \. schema/mir-schema.sql
mysql> create database mygrid-lsid;
mysql> connect mygrid-lsid;
mysql> \. schema/lsid-schema.sql
mysql> quit
This is from the installation guide. Please note that
the DB name in line 4 (connect statement) does not
match with the name with which the DB was
created.
Logged In: NO
Also mygrid-lsid should be changed to mygrid_lsid
(mygrid-lsid is an illegal database name)
Logged In: YES
user_id=1159486
In MySQL, DB names can contain underscores but not hyphens.
Both occurrences of DB name mygrid-lsid need fixing too.