16 lines
548 B
PHP
16 lines
548 B
PHP
#########################################
|
|
# Author: Serge Kozlov skozlov@mysql.com
|
|
# Date: 07/10/2006
|
|
# Purpose: Showing user info on master and on slave
|
|
# Requirements:
|
|
#########################################
|
|
|
|
--echo ==========MASTER==========
|
|
SELECT host, user, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%';
|
|
sync_slave_with_master;
|
|
--echo ==========SLAVE===========
|
|
USE test_rpl;
|
|
SELECT host, user, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%';
|
|
connection master;
|
|
|