~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/rpl_1slave_base.cnf

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2013-12-22 10:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20131222102705-mndw7s12mz0szrcn
Tags: upstream-5.5.32
Import upstream version 5.5.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Use default setting for mysqld processes
 
2
!include include/default_mysqld.cnf
 
3
!include include/default_client.cnf
 
4
 
 
5
[mysqld.1]
 
6
 
 
7
# Run the master.sh script before starting this process
 
8
#!run-master-sh
 
9
 
 
10
log-basename=            master
 
11
# log-bin=                 master-bin
 
12
# relay-log=               master-relay-bin
 
13
 
 
14
[mysqld.2]
 
15
# Run the slave.sh script before starting this process
 
16
#!run-slave-sh
 
17
 
 
18
# Append <testname>-slave.opt file to the list of argument used when
 
19
# starting the mysqld
 
20
#!use-slave-opt
 
21
 
 
22
log-basename=               slave
 
23
# relay-log=                  slave-relay-bin
 
24
 
 
25
init-rpl-role=              slave
 
26
log-slave-updates
 
27
master-retry-count=         10
 
28
 
 
29
# Values reported by slave when it connect to master
 
30
# and shows up in SHOW SLAVE STATUS;
 
31
report-host=                127.0.0.1
 
32
report-port=                @mysqld.2.port
 
33
report-user=                root
 
34
 
 
35
skip-slave-start
 
36
 
 
37
# Directory where slaves find the dumps generated by "load data"
 
38
# on the server. The path need to have constant length otherwise
 
39
# test results will vary, thus a relative path is used.
 
40
slave-load-tmpdir=          ../../tmp
 
41
 
 
42
loose-innodb
 
43
 
 
44
 
 
45
[ENV]
 
46
MASTER_MYPORT=              @mysqld.1.port
 
47
MASTER_MYSOCK=              @mysqld.1.socket
 
48
 
 
49
SLAVE_MYPORT=               @mysqld.2.port
 
50
SLAVE_MYSOCK=               @mysqld.2.socket
 
51