~ubuntu-branches/ubuntu/precise/mysql-5.5/precise-201203300109

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/t/rpl_ipv6.cnf

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2011-11-08 11:31:13 UTC
  • Revision ID: package-import@ubuntu.com-20111108113113-3ulw01fvi4vn8m25
Tags: upstream-5.5.17
ImportĀ upstreamĀ versionĀ 5.5.17

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