distributed-with-obproxy-example.yaml 2.1 KB
Newer Older
O
oceanbase-admin 已提交
1 2 3 4 5
## Only need to configure when remote login is required
# user:
#   username: your username
#   password: your password if need
#   key_file: your ssh-key file path if need
6 7
#   port: your ssh port, default 22
#   timeout: ssh connection timeout (second), default 30
O
oceanbase-admin 已提交
8 9 10 11
oceanbase-ce:
  servers:
    - name: z1
      # Please don't use hostname, only IP can be supported
R
Rongfeng Fu 已提交
12
      ip: 192.168.1.2
O
oceanbase-admin 已提交
13
    - name: z2
R
Rongfeng Fu 已提交
14
      ip: 192.168.1.3
O
oceanbase-admin 已提交
15
    - name: z3
R
Rongfeng Fu 已提交
16
      ip: 192.168.1.4
O
oceanbase-admin 已提交
17 18 19 20 21 22 23 24
  global:
    # Please set devname as the network adaptor's name whose ip is  in the setting of severs.
    # if set severs as "127.0.0.1", please set devname as "lo"
    # if current ip is 192.168.1.10, and the ip's network adaptor's name is "eth0", please use "eth0"
    devname: eth0
    # if current hardware's memory capacity is smaller than 50G, please use the setting of "mini-single-example.yaml" and do a small adjustment.
    memory_limit: 64G
    datafile_disk_percentage: 20
25 26 27
    syslog_level: INFO
    enable_syslog_recycle: true
    max_syslog_file_count: 4
O
oceanbase-admin 已提交
28
    cluster_id: 1
R
Rongfeng Fu 已提交
29 30
    root_password: # root user password, can be empty
    proxyro_password: # proxyro user pasword, consistent with obproxy's observer_sys_password, can be empty
O
oceanbase-admin 已提交
31 32 33
  # In this example , support multiple ob process in single node, so different process use different ports.
  # If deploy ob cluster in multiple nodes, the port and path setting can be same. 
  z1:
34
    mysql_port: 2881
O
oceanbase-admin 已提交
35 36 37 38
    rpc_port: 2882
    home_path: /root/observer
    zone: zone1
  z2:
39
    mysql_port: 2881
O
oceanbase-admin 已提交
40 41 42 43
    rpc_port: 2882
    home_path: /root/observer
    zone: zone2
  z3:
44
    mysql_port: 2881
O
oceanbase-admin 已提交
45 46 47 48 49 50 51 52
    rpc_port: 2882
    home_path: /root/observer
    zone: zone3
obproxy:
  servers:
    - 192.168.1.5
  global:
    listen_port: 2883
53
    prometheus_listen_port: 2884
O
oceanbase-admin 已提交
54 55 56
    home_path: /root/obproxy
    # oceanbase root server list
    # format: ip:mysql_port,ip:mysql_port
57 58
    rs_list: 192.168.1.2:2881;192.168.1.3:2881;192.168.1.4:2881
    enable_cluster_checkout: false
R
Rongfeng Fu 已提交
59 60
    obproxy_sys_password: # obproxy sys user password, can be empty
    observer_sys_password: # proxyro user pasword, consistent with oceanbase-ce's proxyro_password, can be empty