
(As root create the database and grant access to user root or the user that will run vproweather.)

cd vproweather-1.0.8c/mySQL-DB/

~/: # mysql

mysql> CREATE DATABASE Weather;

mysql> GRANT ALL PRIVILEGES ON Weather TO 'root'@MyMachine.MyDomain.com IDENTIFIED BY 'MYPASSWORD!' WITH GRANT OPTION;

mysql> SOURCE CREATE_NEW_WeatherDB.sql;

mysql> exit

(Add this section to /root/.my.cnf or the user that will run vproweather.)

[vproweather]
user=root
password=MYPASSWORD
host=localhost
database=Weather

(If not running vproweather as root be sure that the user that is running vproweather has
access to the serial device in /dev/)


