-
Notifications
You must be signed in to change notification settings - Fork 2
SwitchingToMySQL
Tapper team edited this page Mar 1, 2016
·
17 revisions
This is a follow-up to HelloWorld. Prepare that first and then come back here.
The example config ~/.tapper/tapper.cfg already comes with commented out configuration for using MySQL.
Here we
-
prepare a MySQL database,
-
modify Tapper config to point to it, and
-
re-run
tapper initto initialize the databases with tables
$ sudo apt-get install mysql-server-5.6 mysql-client-5.6Careful!
If you want to delete an existing database, then do that:
$ mysql -u root -p
$ mysql> drop database tapper; $ mysql -u root -p
$ mysql> create database if not exists tapper;
mysql> create user 'tapper'@'localhost' identified by 'verysecret';
mysql> grant all privileges on tapper.* to 'tapper'@'localhost';
mysql> flush privileges;
mysql> quit;Edit ~/.tapper/tapper.cfg in 2 places:
Find this piece:
database:
TestrunDB:
dsn: dbi:SQLite:dbname=...
#dsn: DBI:mysql:database=tapper
#user: tapper
#password: verysecretand modify it to look like this:
database:
TestrunDB:
#dsn: dbi:SQLite:dbname=...
dsn: DBI:mysql:database=tapper
user: tapper
password: verysecretFind this piece:
benchmarkanything:
backend: local
backends:
http:
base_url: http://localhost:7359
storage:
backend:
sql:
# --- SQLite ---
dsn: dbi:SQLite:/home/ss5/.tapper/benchmarkanything.sqlite
# --- mysql (example) ---
#dsn: DBI:mysql:database=benchmarkanything
#user: benchmarker
#password: secretand modify it to look like this:
benchmarkanything:
backend: local
backends:
http:
base_url: http://localhost:7359
storage:
backend:
sql:
# --- SQLite ---
#dsn: dbi:SQLite:/home/ss5/.tapper/benchmarkanything.sqlite
# --- mysql (example) ---
dsn: DBI:mysql:database=benchmarkanything
user: benchmarker
password: secretCareful!
$ tapper init --defaults
[... many lines with "SKIP...already exists"]
REALLY DROP AND RE-CREATE DATABASE TABLES [DBI:mysql:database=tapper] (y/N)? y
REALLY DROP AND RE-CREATE DATABASE TABLES [DBI:mysql:database=benchmarkanything] (y/N): yYou can now either throw away the benchmarkanything.sqlite and testrundb.sqlite files in ~/.tapper/, or try to migrate their content - which is unfortunately a bit more complicated and not documented here.
- About
- Deployment
- Hello World - easiest start