Thanks for your resposne ushastry.
on my slave box, it looks like i can connect fine to my master:
C:\Program Files\MySQL\MySQL Server 5.0\bin>mysql.exe -h10.0.0.233 -udrayer -pmypass
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.0.67-community-nt-log MySQL Community Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> show schemas;
+--------------------+
| Database |
+--------------------+
| information_schema |
+--------------------+
1 row in set (0.00 sec)
mysql>
I believe my slave is now connected to my master. I ran this command:
mysql> show slave status\G;
ERROR 1227 (42000): Access denied; you need the SUPER,REPLICATION CLIENT privil
ge for this operation
ERROR:
No query specified
Looks like a permission issue? But I also re-ran the grant replication... command on my slave.
Main Topics
Browse All Topics





by: ushastryPosted on 2009-08-06 at 04:14:26ID: 25031978
First - Check whether or not you are able to connect the Master server from the slave server thru the command line utility mysql... change host/user/pass details
mysql -hMaster_Host_ip -uUserName -pSecretPassword
If you are able to connect the Master server then question comes did you create the replicateion account on Master server? if not then run below sql command on master server
# On Master - change user/pass details
grant replication slave on *.* to 'repuser'@'%' identified by 'reppass';
flush privileges;
Once the above steps are done.. on slave
stop slave ;
start slave;
show slave status\G