Mysql started malfuctioning after update...
Ubuntu (Latest 64 bit (4.9.15-x86_64-linode81))
2017-06-01T00:08:19.429519Z 15 [Note] Aborted connection 15 to db: 'dbname' user: 'myuser' host: 'localhost' (Got an error reading communication packets)
2017-06-01T00:09:05.285527Z 14 [Note] Aborted connection 14 to db: 'dbname' user: 'myuser' host: 'localhost' (Got an error reading communication packets)
2017-06-01T00:09:05.285680Z 13 [Note] Aborted connection 13 to db: 'dbname' user: 'myuser' host: 'localhost' (Got an error reading communication packets)
2017-06-01T00:10:57.277929Z 16 [Note] Aborted connection 16 to db: 'dbname' user: 'myuser' host: 'localhost' (Got an error reading communication packets)
2 Replies
This… $primaryDbServer = '127.0.0.1:3306';
Now gets interpreted as '127.0.0.1:3306:3306';
So, now you have to just use "127.0.0.1" or "localhost"… You can't specify the port number in php anymore?