mirror of
https://gitlab.com/manzerbredes/paper-lowrate-iot.git
synced 2025-06-07 15:17:40 +00:00
Debug
This commit is contained in:
parent
026a84902c
commit
1ab4a6a97a
19 changed files with 95601 additions and 4 deletions
8
energyCloud/g5k/setup-mysql.sql
Normal file
8
energyCloud/g5k/setup-mysql.sql
Normal file
|
@ -0,0 +1,8 @@
|
|||
create DATABASE IF NOT EXISTS experiment;
|
||||
use experiment;
|
||||
create TABLE IF NOT EXISTS temperature (id INTEGER,stamp INTEGER, val INTEGER);
|
||||
|
||||
use mysql;
|
||||
CREATE USER 'user'@'%' IDENTIFIED BY 'mysql';
|
||||
GRANT ALL ON experiment.* TO 'user'@'%';
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue