Como configurar o Cygnus para salvar no mysql

Estou tentando configurar o Cygnus para persistir os dados de contexto do Orion em um banco de dados MySQL. Instalei o phpmyadmin e estou tentando usar esse banco de dados para salvar os dados. Todo o fluxo de trabalho é o seguinte: O Orion recebe alguns dados, depois é enviado para o Cygnus e, finalmente, o Cygnus os envia para o banco de dados SQL.

Esta é a minha configuração:

# OrionMySQLSink configuration
# channel name from where to read notification events
cygnusagent.sinks.mysql-sink.channel = mysql-channel
# sink class, must not be changed
cygnusagent.sinks.mysql-sink.type = com.telefonica.iot.cygnus.sinks.OrionMySQLSink
# the FQDN/IP address where the MySQL server runs 
cygnusagent.sinks.mysql-sink.mysql_host = x.y.z.w
# the port where the MySQL server listens for incomming connections
cygnusagent.sinks.mysql-sink.mysql_port = 3306
# a valid user in the MySQL server
cygnusagent.sinks.mysql-sink.mysql_username = root
# password for the user above
cygnusagent.sinks.mysql-sink.mysql_password = xxxxxxxxxxxx
# how the attributes are stored, either per row either per column (row, column)
cygnusagent.sinks.mysql-sink.attr_persistence = column

questionAnswers(1)

yourAnswerToTheQuestion