Description
Please define server and port for mysql database separately, because of poller-wrapper.py could not connect to server which is specified as fqdn.tld:port .
I modified the connect statement to the following :
try:
db = MySQLdb.connect (host=db_server, user=db_username , passwd=db_password, db=db_dbname, port = 3309)
cursor = db.cursor()
except:
thank you have a nice day