Can anyone help me out here? This is a localhost mysql db. User is root, pass is blank, as I am logged in as root on the server.
Installed version is percona-toolkit-2.2.6-1.noarch
Database version is Percona-Server-server-56-5.6.15-rel63.0.519.rhel6.x86_64
root@server1 [~]# pt-online-schema-change --alter “ENGINE=InnoDB” D=test,t=alterme,u=root --execute
Use of uninitialized value $host in string eq at /usr/bin/pt-online-schema-change line 4112.
root@server1 [~]# pt-online-schema-change --alter “ENGINE=InnoDB” D=test,t=alterme --execute
Use of uninitialized value $host in string eq at /usr/bin/pt-online-schema-change line 4112.
root@server1 [~]# pt-online-schema-change --alter “ENGINE=InnoDB” D=test,t=alterme,h=localhost --execute
Use of uninitialized value $host in string eq at /usr/bin/pt-online-schema-change line 4112.
root@server1 [~]# pt-online-schema-change --alter “ENGINE=InnoDB” D=test,t=alterme,h=server1 --execute
Use of uninitialized value $host in string eq at /usr/bin/pt-online-schema-change line 4112.
On the other hand, --dry-run always works, but of course executes nothing.