OceanBase4.2.2.1 单机集群在ArmX86安装(自测记录)

OceanBase

        OceanBase就不必多加介绍了,本次主要是分享对于它的安装使用,先说说背景,首先接触是因为信创国产化的要求,为满足支持国产化,安装了Arm架构下版本4.0.0,满足支持通过。后来项目实际使用,重新进行搭建,采用了最新版4.2.2.1,本次是基于X86进行安装部署,经历过Arm和X86两种安装,他们的安装除了RPM包不同,安装过程一样,本次是基于X86安装最新版4.2.2.1,希望能帮到大家~

一:下载想要安装的版本rpm包

OceanBase相关组件很多,能力也很强,如果资源充足,可以安装所有相关东西,本次主要说明最小化使用组件安装,下面内容就可以完成一个数据库,当然OBP(obproxy)如不需要,也可以不安装,但本人还是推荐使用。

  1. observer:oceanbase数据库
  2. obproxy:oceanbase反向代理
  3. obclient:oceanbase客户端
  4. obd:oceanbase deploy

二:安装前的一些准备工作

注:部分内容,单机可跳过,会具体标注

2.1 创建用户

先创建adminy用户

adduser admin

2.2 主机之间配置ssh互信

      集群环境下需要,如果只是部署单机,这一步可以跳过。

        因为机器有限,我这里采用双机部署

  vi /etc/hosts

echo "admin   ALL=(ALL)NOPASSWD:ALL" >>/etc/sudoers

ssh-keygen

ssh-copy-id host1  

ssh-copy-id host2 对应几个host写几个

2.3 修改内核参数

也可以不进行修改,看个人

[root]# vim /etc/sysctl.conf

net.core.somaxconn = 2048

net.core.netdev_max_backlog = 10000

net.core.rmem_default = 16777216

net.core.wmem_default = 16777216

net.core.rmem_max = 16777216

net.core.wmem_max = 16777216



net.ipv4.ip_local_port_range = 3500 65535

net.ipv4.ip_forward = 0

net.ipv4.conf.default.rp_filter = 1

net.ipv4.conf.default.accept_source_route = 0

net.ipv4.tcp_syncookies = 0

net.ipv4.tcp_rmem = 4096 87380 16777216

net.ipv4.tcp_wmem = 4096 65536 16777216

net.ipv4.tcp_max_syn_backlog = 16384

net.ipv4.tcp_fin_timeout = 15

net.ipv4.tcp_max_syn_backlog = 16384

net.ipv4.tcp_tw_reuse = 1

net.ipv4.tcp_tw_recycle = 1

net.ipv4.tcp_slow_start_after_idle=0



vm.swappiness = 0

vm.min_free_kbytes = 2097152

vm.max_map_count=655360

fs.aio-max-nr=1048576

[root]# sysctl –p

2.4 修改全局会话变量

已经登录的会话需要重连,修改句柄数

  1. vi /etc/security/limits.conf

   添加:

* soft nofile 655360

* hard nofile 655360

* soft nproc 655360

* hard nproc 655360

* soft core unlimited

* hard core unlimited

* soft stack unlimited

* hard stack unlimited

  1. vi /etc/sysctl.conf

添加:

fs.file-max = 6553560

  1. 刷新

sysctl -p 

2.5 配置时钟同步

这一步,如果是单机可以跳过,如果是集群环境,就得验证,涉及到集群之间通信同步等问题,保证时间一致

需要同步时间,自行根据系统类型设置同步

  1. 安装chrony

[root]# yum install -y chrony

  1. 配置与阿里时钟同步

    [root]# vi /etc/chrony.conf

server ntp.aliyun.com minpoll 4 maxpoll 10 iburst

allow xxx.xxx.xxx.xxx

allow xxx.xxx.xxx.xxx

local stratum 10

重启chronyd

[root]# systemctl restart chronyd

查看时间同步活动

[root]# chronyc activity

查看时间服务器

[root]# chronyc sources

查看同步状态

[root]# chronyc sources -v

校准时间服务器:

[root]# chronyc tracking

2.6 关闭防火墙

      非集群,只部署单机的话,可以跳过

[root]# systemctl stop firewalld

[root]# systemctl disable firewalld

也可根据端口使用情况,开启对应的端口

2.7 关闭selinux

[root]# vi /etc/selinux/config

          添加

          SELINUX=disabled

[root]# setenforce 0

三:部署

3.1 单机部署

3.1.1安装obd

  1. 安装部署工具

rpm -ivh ob-deploy-2.6.2-2.el7.x86_64.rpm

  1. 设置环境变量

source /etc/profile.d/obd.sh

3.1.2构建本地源

  1. 移动rpm包,构建本地源

  obd mirror clone /home/rpm/*.rpm

  1. 删除远程源

   rm -rf ~/.obd/mirror/remote/

  1. 查看本地源

   obd mirror list local

3.1.3编辑OBD配置文件

  1. 创建mini-local-example.yaml配置文件

获取方式

https://github.com/oceanbase/obdeploy/blob/master/example/mini-local-example.yaml

这里我提供一份

oceanbase-ce:
  servers:
    # Please don't use hostname, only IP can be supported
    - 127.0.0.1
  global:
    #  The working directory for OceanBase Database. OceanBase Database is started under this directory. This is a required field.
    home_path: /root/observer
    # The directory for data storage. The default value is $home_path/store.
    # data_dir: /data
    # The directory for clog, ilog, and slog. The default value is the same as the data_dir value.
    # redo_dir: /redo
    # 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: lo
    mysql_port: 2881 # External port for OceanBase Database. The default value is 2881. DO NOT change this value after the cluster is started.
    rpc_port: 2882 # Internal port for OceanBase Database. The default value is 2882. DO NOT change this value after the cluster is started.
    zone: zone1
    cluster_id: 1
    # please set memory limit to a suitable value which is matching resource. 
    memory_limit: 6G # The maximum running memory for an observer
    system_memory: 1G # The reserved system memory. system_memory is reserved for general tenants. The default value is 30G.
    datafile_size: 20G # Size of the data file. 
    log_disk_size: 24G # The size of disk space used by the clog files.
    cpu_count: 16
    production_mode: false
    syslog_level: INFO # System log level. The default value is INFO.
    enable_syslog_wf: false # Print system logs whose levels are higher than WARNING to a separate log file. The default value is true.
    enable_syslog_recycle: true # Enable auto system log recycling or not. The default value is false.
    max_syslog_file_count: 4 # The maximum number of reserved log files before enabling auto recycling. The default value is 0.
    # root_password: # root user password, can be empty

注意事项:

servers:只能使用ip,不能使用主机名(hostname)

cpu_count:CPU数量可以大于物理CPU的数量。

home_path 是 OceanBase 数据库的工作目录,OceanBase 数据库在此目录下启动,您需提前创建。

内存和CPU核数根据自己的机器进行调整,如果太大资源不够,后面启动时会进行报错,那会更改也可以,需要重新加载,后面问题解决里我会说明如何对于配置修改和加载

  1. 配置文件中的home权限

chown -R admin:admin  /home/observer/(你的home_path路径)

3.1.4部署observer

  1. 进行单机部署observer

obd cluster deploy myob -c mini-local-example.yaml

如果遇到问题,可查看最后一章问题汇总;部署正常显示为:

  1. 查看部署结果

  obd cluster list

OBD 中注册的集群状态有如下几种。

  1. configured:已配置,表示 OBD 中已包含该集群的配置文件,但该集群还未部署,此时可执行 obd cluster deploy 命令部署该集群。
  2. deployed:已部署,表示该集群已部署,但是还未启动,此时可执行 obd cluster start 命令启动该集群。
  3. running:运行中,表示集群正在运行中。
  4. stopped:已停止,表示集群中有组件已被停止,此时可执行 obd cluster start 命令启动该集群。
  5. upgrading:升级中,表示集群中有组件处于升级中。
  6. destroyed:已销毁,表示该集群已被销毁。
  1. 启动集群

  obd cluster start myob

默认的密码就在日志下方,具体可以进到数据库修改

然后再看状态,就是runing状态

3.2集群部署—双主

     该部署方式,先不部署代理,只是部署两台服务器的数据库,数据库之间表数据实时同步,类似于双主数据库,当然,也可以部署多台,效果一致

3.2.1安装obd

  1. 安装部署工具

rpm -ivh ob-deploy-2.6.2-2.el7.x86_64.rpm

  1. 设置环境变量

source /etc/profile.d/obd.sh

3.2.2构建本地源

  1. 移动rpm包,构建本地源

  obd mirror clone /home/rpm/*.rpm

  1. 删除远程源

   rm -rf ~/.obd/mirror/remote/

  1. 查看本地源

   obd mirror list local

3.2.3编辑OBD配置文件

  1. 创建mini-distributed-example.yaml配置文件

获取方式

https://github.com/oceanbase/obdeploy/blob/master/example/mini-distributed-example.yaml

这里我提供一份

## 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
#   port: your ssh port, default 22
#   timeout: ssh connection timeout (second), default 30
oceanbase-ce:
  servers:
    - name: server1
      # Please don't use hostname, only IP can be supported
      ip: ip
    - name: server2
      ip: ip
    #- name: server3
    #  ip: 172.19.33.4
  global:
    # Starting from observer version 4.2, the network selection for the observer is based on the 'local_ip' parameter, and the 'devname' parameter is no longer mandatory.
    # If the 'local_ip' parameter is set, the observer will first use this parameter for the configuration, regardless of the 'devname' parameter.
    # If only the 'devname' parameter is set, the observer will use the 'devname' parameter for the configuration.
    # If neither the 'devname' nor the 'local_ip' parameters are set, the 'local_ip' parameter will be automatically assigned the IP address configured above.
    # devname: eth0
    cluster_id: 1
    # please set memory limit to a suitable value which is matching resource. 
    memory_limit: 6G # The maximum running memory for an observer
    system_memory: 1G # The reserved system memory. system_memory is reserved for general tenants. The default value is 30G.
    datafile_size: 2G # Size of the data file. 
    datafile_next: 2G # the auto extend step. Please enter an capacity, such as 2G
    datafile_maxsize: 20G # the auto extend max size. Please enter an capacity, such as 20G
    log_disk_size: 14G # The size of disk space used by the clog files.
    cpu_count: 8
    production_mode: false
    enable_syslog_wf: false # Print system logs whose levels are higher than WARNING to a separate log file. The default value is true.
    enable_syslog_recycle: true # Enable auto system log recycling or not. The default value is false.
    max_syslog_file_count: 4 # The maximum number of reserved log files before enabling auto recycling. The default value is 0.
    # root_password: # root user password, can be empty
  server1:
    mysql_port: 2881 # External port for OceanBase Database. The default value is 2881. DO NOT change this value after the cluster is started.
    rpc_port: 2882 # Internal port for OceanBase Database. The default value is 2882. DO NOT change this value after the cluster is started.
    #  The working directory for OceanBase Database. OceanBase Database is started under this directory. This is a required field.
    home_path: /home/admin/observer
    # The directory for data storage. The default value is $home_path/store.
    # data_dir: /data
    # The directory for clog, ilog, and slog. The default value is the same as the data_dir value.
    # redo_dir: /redo
    zone: zone1
  server2:
    mysql_port: 2881 # External port for OceanBase Database. The default value is 2881. DO NOT change this value after the cluster is started.
    rpc_port: 2882 # Internal port for OceanBase Database. The default value is 2882. DO NOT change this value after the cluster is started.
    #  The working directory for OceanBase Database. OceanBase Database is started under this directory. This is a required field.
    home_path: /home/admin/observer
    # The directory for data storage. The default value is $home_path/store.
    # data_dir: /data
    # The directory for clog, ilog, and slog. The default value is the same as the data_dir value.
    # redo_dir: /redo
    zone: zone2
  #server3:
  #  mysql_port: 2881 # External port for OceanBase Database. The default value is 2881. DO NOT change this value after the cluster is started.
  #  rpc_port: 2882 # Internal port for OceanBase Database. The default value is 2882. DO NOT change this value after the cluster is started.
    #  The working directory for OceanBase Database. OceanBase Database is started under this directory. This is a required field.
  #  home_path: /root/observer
    # The directory for data storage. The default value is $home_path/store.
    # data_dir: /data
    # The directory for clog, ilog, and slog. The default value is the same as the data_dir value.
    # redo_dir: /redo
  #  zone: zone3

注意事项:

cpu_count:CPU数量可以大于物理CPU的数量。

home_path 是 OceanBase 数据库的工作目录,OceanBase 数据库在此目录下启动,您需提前创建。

内存和CPU核数根据自己的机器进行调整,如果太大资源不够,后面启动时会进行报错,那会更改也可以,需要重新加载,后面问题解决里我会说明如何对于配置修改和加载

  1. 配置文件中的home权限

chown -R admin:admin  /home/admin/observer(你的home_path路径)

3.2.4部署observer

  1. 进行集群部署observer

部署命令:obd cluster deploy [集群名] -c [集群配置文件]

obd cluster deploy peachzones -c mini-distributed-example.yaml

如果遇到问题,可查看最后一章问题汇总;部署正常显示为:

  1. 查看部署结果

  obd cluster list

  myzone忽略,那是之前创建的集群

OBD 中注册的集群状态有如下几种。

  1. configured:已配置,表示 OBD 中已包含该集群的配置文件,但该集群还未部署,此时可执行 obd cluster deploy 命令部署该集群。
  2. deployed:已部署,表示该集群已部署,但是还未启动,此时可执行 obd cluster start 命令启动该集群。
  3. running:运行中,表示集群正在运行中。
  4. stopped:已停止,表示集群中有组件已被停止,此时可执行 obd cluster start 命令启动该集群。
  5. upgrading:升级中,表示集群中有组件处于升级中。
  6. destroyed:已销毁,表示该集群已被销毁。
  7. 启动集群

  obd cluster start peachzones

默认的密码就在日志下方,具体可以进到数据库修改

然后再看状态,就是runing状态

 

3.3集群部署—分开部署proxy

     该部署方式,将proxy进行单独部署,不会通过cluster进行绑定,都需要单独的部署服务,proxy的配置信息和OBD的配置信息分开,如果看过集群部署—不带proxy,那么前面的步骤都是一样的,直接到部署observer以后的步骤看就可以了

3.3.1安装obd

  1. 安装部署工具

rpm -ivh ob-deploy-2.6.2-2.el7.x86_64.rpm

  1. 设置环境变量

source /etc/profile.d/obd.sh

3.3.2构建本地源

  1. 移动rpm包,构建本地源

  obd mirror clone /home/rpm/*.rpm

  1. 删除远程源

   rm -rf ~/.obd/mirror/remote/

  1. 查看本地源

   obd mirror list local

3.3.3编辑OBD配置文件

  1. 创建mini-distributed-example.yaml配置文件

获取方式

https://github.com/oceanbase/obdeploy/blob/master/example/mini-distributed-example.yaml

这里我提供一份

## 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
#   port: your ssh port, default 22
#   timeout: ssh connection timeout (second), default 30
oceanbase-ce:
  servers:
    - name: server1
      # Please don't use hostname, only IP can be supported
      ip: ip
    - name: server2
      ip: ip
    #- name: server3
    #  ip: 172.19.33.4
  global:
    # Starting from observer version 4.2, the network selection for the observer is based on the 'local_ip' parameter, and the 'devname' parameter is no longer mandatory.
    # If the 'local_ip' parameter is set, the observer will first use this parameter for the configuration, regardless of the 'devname' parameter.
    # If only the 'devname' parameter is set, the observer will use the 'devname' parameter for the configuration.
    # If neither the 'devname' nor the 'local_ip' parameters are set, the 'local_ip' parameter will be automatically assigned the IP address configured above.
    # devname: eth0
    cluster_id: 1
    # please set memory limit to a suitable value which is matching resource. 
    memory_limit: 6G # The maximum running memory for an observer
    system_memory: 1G # The reserved system memory. system_memory is reserved for general tenants. The default value is 30G.
    datafile_size: 2G # Size of the data file. 
    datafile_next: 2G # the auto extend step. Please enter an capacity, such as 2G
    datafile_maxsize: 20G # the auto extend max size. Please enter an capacity, such as 20G
    log_disk_size: 14G # The size of disk space used by the clog files.
    cpu_count: 8
    production_mode: false
    enable_syslog_wf: false # Print system logs whose levels are higher than WARNING to a separate log file. The default value is true.
    enable_syslog_recycle: true # Enable auto system log recycling or not. The default value is false.
    max_syslog_file_count: 4 # The maximum number of reserved log files before enabling auto recycling. The default value is 0.
    # root_password: # root user password, can be empty
  server1:
    mysql_port: 2881 # External port for OceanBase Database. The default value is 2881. DO NOT change this value after the cluster is started.
    rpc_port: 2882 # Internal port for OceanBase Database. The default value is 2882. DO NOT change this value after the cluster is started.
    #  The working directory for OceanBase Database. OceanBase Database is started under this directory. This is a required field.
    home_path: /home/admin/observer
    # The directory for data storage. The default value is $home_path/store.
    # data_dir: /data
    # The directory for clog, ilog, and slog. The default value is the same as the data_dir value.
    # redo_dir: /redo
    zone: zone1
  server2:
    mysql_port: 2881 # External port for OceanBase Database. The default value is 2881. DO NOT change this value after the cluster is started.
    rpc_port: 2882 # Internal port for OceanBase Database. The default value is 2882. DO NOT change this value after the cluster is started.
    #  The working directory for OceanBase Database. OceanBase Database is started under this directory. This is a required field.
    home_path: /home/admin/observer
    # The directory for data storage. The default value is $home_path/store.
    # data_dir: /data
    # The directory for clog, ilog, and slog. The default value is the same as the data_dir value.
    # redo_dir: /redo
    zone: zone2
  #server3:
  #  mysql_port: 2881 # External port for OceanBase Database. The default value is 2881. DO NOT change this value after the cluster is started.
  #  rpc_port: 2882 # Internal port for OceanBase Database. The default value is 2882. DO NOT change this value after the cluster is started.
    #  The working directory for OceanBase Database. OceanBase Database is started under this directory. This is a required field.
  #  home_path: /root/observer
    # The directory for data storage. The default value is $home_path/store.
    # data_dir: /data
    # The directory for clog, ilog, and slog. The default value is the same as the data_dir value.
    # redo_dir: /redo
  #  zone: zone3

注意事项:

cpu_count:CPU数量可以大于物理CPU的数量。

home_path 是 OceanBase 数据库的工作目录,OceanBase 数据库在此目录下启动,您需提前创建。

内存和CPU核数根据自己的机器进行调整,如果太大资源不够,后面启动时会进行报错,那会更改也可以,需要重新加载,后面问题解决里我会说明如何对于配置修改和加载

  1. 配置文件中的home权限

chown -R admin:admin  /home/admin/observer(你的home_path路径)

3.3.4部署observer

  1. 进行集群部署observer

部署命令:obd cluster deploy [集群名] -c [集群配置文件]

obd cluster deploy peachzones -c mini-distributed-example.yaml

如果遇到问题,可查看最后一章问题汇总;部署正常显示为:

  1. 查看部署结果

  obd cluster list

  myzone忽略,那是之前创建的集群

OBD 中注册的集群状态有如下几种。

  1. configured:已配置,表示 OBD 中已包含该集群的配置文件,但该集群还未部署,此时可执行 obd cluster deploy 命令部署该集群。
  2. deployed:已部署,表示该集群已部署,但是还未启动,此时可执行 obd cluster start 命令启动该集群。
  3. running:运行中,表示集群正在运行中。
  4. stopped:已停止,表示集群中有组件已被停止,此时可执行 obd cluster start 命令启动该集群。
  5. upgrading:升级中,表示集群中有组件处于升级中。
  6. destroyed:已销毁,表示该集群已被销毁。

  1. 启动集群

  obd cluster start peachzones

默认的密码就在日志下方,具体可以进到数据库修改

然后再看状态,就是runing状态

 

3.3.5安装obproxy

3.3.5.1上传obproxy

  1. 移动rpm包,构建本地源

       //可操作可不操作

             obd mirror clone /home/rpm/ obproxy-ce-4.2.3.0-3.el7.x86_64.rpm

  1. 删除远程源

               rm -rf ~/.obd/mirror/remote/

  1. 查看本地源

               obd mirror list local

3.3.5.2安装obproxy
  1. 安装

rpm -ivh obproxy-ce-4.2.3.0-3.el7.x86_64.rpm

  1. 执行

           [root]# cd /home/admin/obproxy-4.2.3.0

 [root]# bin/obproxy -r "ip:2881;ip:2881" -p 2885 -o "enable_strict_kernel_release=false,enable_cluster_checkout=false,enable_metadb_used=false,skip_proxy_sys_private_check=true,observer_sys_password=pass " -c msp_cluster

3.3.5.3安装obclient

   rpm -ivh obclient-2.2.3-1.el7.x86_64.rpm

3.3.5.4配置操作proxy

使用root@sys用户连接

[admin]# obclient –hxxx.xxx.xxx.xxx -P2881 -D oceanbase -uroot@sys -p –A

1、修改root用户密码

obclient [oceanbase]> alter user root identified by 'peachpass';

2、创建proxyro用户,obproxy连接oceanbase时使用

obclient [oceanbase]> grant select on oceanbase.* to proxyro identified by 'peachproxy';

3、修改proxy密码

用户名:root@proxysys,端口:2883,初始密码:空

[admin]# obclient  -h ip -P2883 -u root@proxysys –p

obclient [oceanbase]> show proxyconfig like '%sys_password%';

修改proxy密码为数据设置的proxyro用户密码

alter proxyconfig set observer_sys_password='peachproxy';

可选择修改proxysys密码

alter proxyconfig set obproxy_sys_password='OceanBase010';

3.3.5.5obproxy连接集群

通过obproxy连接oceanbase集群

obclient –hxxx.xxx.xxx.xxx -P2883 -uroot -p –A

最终访问成功

3.4集群部署—组件部署proxy

     该部署方式,将proxy和db绑定在一起,进行同时部署, proxy的配置信息和OBD的配置信息分开

3.4.1安装obd

  1. 安装部署工具

rpm -ivh ob-deploy-2.6.2-2.el7.x86_64.rpm

  1. 设置环境变量

source /etc/profile.d/obd.sh

3.4.2构建本地源

  1. 移动rpm包,构建本地源

注意:这里截图我没有加proxy,正常应该在开始就将proxy一起放进去构建

  obd mirror clone /home/rpm/*.rpm

  1. 删除远程源

   rm -rf ~/.obd/mirror/remote/

  1. 查看本地源

   obd mirror list local

注意:这里截图我没有加proxy,正常应该在里面有proxy

3.3.3编辑OBD配置文件

  1. 创建mini-distributed-with-obproxy-example.yaml配置文件

获取方式

https://github.com/oceanbase/obdeploy/blob/master/example/ mini-distributed-with-obproxy-example.yaml这里我提供一份

## 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
#   port: your ssh port, default 22
#   timeout: ssh connection timeout (second), default 30
oceanbase-ce:
  servers:
    - name: server1
      # Please don't use hostname, only IP can be supported
      ip: ip
    - name: server2
      ip: ip
    #- name: server3
    #  ip: 192.168.1.4
  global:
    # Starting from observer version 4.2, the network selection for the observer is based on the 'local_ip' parameter, and the 'devname' parameter is no longer mandatory.
    # If the 'local_ip' parameter is set, the observer will first use this parameter for the configuration, regardless of the 'devname' parameter.
    # If only the 'devname' parameter is set, the observer will use the 'devname' parameter for the configuration.
    # If neither the 'devname' nor the 'local_ip' parameters are set, the 'local_ip' parameter will be automatically assigned the IP address configured above.
    # devname: eth0
    cluster_id: 1
    # please set memory limit to a suitable value which is matching resource. 
    memory_limit: 6G # The maximum running memory for an observer
    system_memory: 1G # The reserved system memory. system_memory is reserved for general tenants. The default value is 30G.
    datafile_size: 2G # Size of the data file. 
    datafile_next: 2G # the auto extend step. Please enter an capacity, such as 2G
    datafile_maxsize: 20G # the auto extend max size. Please enter an capacity, such as 20G
    log_disk_size: 14G # The size of disk space used by the clog files.
    cpu_count: 16
    production_mode: false
    enable_syslog_wf: false # Print system logs whose levels are higher than WARNING to a separate log file. The default value is true.
    enable_syslog_recycle: true # Enable auto system log recycling or not. The default value is false.
    max_syslog_file_count: 4 # The maximum number of reserved log files before enabling auto recycling. The default value is 0.
    # observer cluster name, consistent with obproxy's cluster_name
    appname: obcluster
    # root_password: # root user password, can be empty
    # proxyro_password: # proxyro user pasword, consistent with obproxy's observer_sys_password, can be empty
  server1:
    mysql_port: 2881 # External port for OceanBase Database. The default value is 2881. DO NOT change this value after the cluster is started.
    rpc_port: 2882 # Internal port for OceanBase Database. The default value is 2882. DO NOT change this value after the cluster is started.
    #  The working directory for OceanBase Database. OceanBase Database is started under this directory. This is a required field.
    home_path: /home/admin/observer
    # The directory for data storage. The default value is $home_path/store.
    # data_dir: /data
    # The directory for clog, ilog, and slog. The default value is the same as the data_dir value.
    # redo_dir: /redo
    zone: zone1
  server2:
    mysql_port: 2881 # External port for OceanBase Database. The default value is 2881. DO NOT change this value after the cluster is started.
    rpc_port: 2882 # Internal port for OceanBase Database. The default value is 2882. DO NOT change this value after the cluster is started.
    #  The working directory for OceanBase Database. OceanBase Database is started under this directory. This is a required field.
    home_path: /home/admin/observer
    # The directory for data storage. The default value is $home_path/store.
    # data_dir: /data
    # The directory for clog, ilog, and slog. The default value is the same as the data_dir value.
    # redo_dir: /redo
    zone: zone2
#  server3:
#    mysql_port: 2881 # External port for OceanBase Database. The default value is 2881. DO NOT change this value after the cluster is started.
#    rpc_port: 2882 # Internal port for OceanBase Database. The default value is 2882. DO NOT change this value after the cluster is started.
    #  The working directory for OceanBase Database. OceanBase Database is started under this directory. This is a required field.
#    home_path: /root/observer
    # The directory for data storage. The default value is $home_path/store.
    # data_dir: /data
    # The directory for clog, ilog, and slog. The default value is the same as the data_dir value.
    # redo_dir: /redo
#    zone: zone3
obproxy-ce:
  # Set dependent components for the component.
  # When the associated configurations are not done, OBD will automatically get the these configurations from the dependent components.
  depends:
    - oceanbase-ce
  servers:
    - ip
  global:
    listen_port: 2883 # External port. The default value is 2883.
    prometheus_listen_port: 2884 # The Prometheus port. The default value is 2884.
    home_path: /home/admin/obproxy
    # oceanbase root server list
    # format: ip:mysql_port;ip:mysql_port. When a depends exists, OBD gets this value from the oceanbase-ce of the depends.
    # rs_list: 192.168.1.2:2881;192.168.1.3:2881;192.168.1.4:2881
    enable_cluster_checkout: false
    # observer cluster name, consistent with oceanbase-ce's appname. When a depends exists, OBD gets this value from the oceanbase-ce of the depends.
    # cluster_name: obcluster
    skip_proxy_sys_private_check: true
    enable_strict_kernel_release: false
    # obproxy_sys_password: # obproxy sys user password, can be empty. When a depends exists, OBD gets this value from the oceanbase-ce of the depends.
    # proxyro user pasword, consistent with oceanbase-ce's proxyro_password, can be empty. When a depends exists, OBD gets this value from the oceanbase-ce of the depends.
    observer_sys_password: peachpass

注意事项:

cpu_count:CPU数量可以大于物理CPU的数量。

home_path 是 OceanBase 数据库的工作目录,OceanBase 数据库在此目录下启动,您需提前创建。

内存和CPU核数根据自己的机器进行调整,如果太大资源不够,后面启动时会进行报错,那会更改也可以,需要重新加载,后面问题解决里我会说明如何对于配置修改和加载

  1. 配置文件中的home权限

chown -R admin:admin  /home/admin/observer(你的home_path路径)

3.3.4部署observer

    下面的部署内容和单独上节分开部署内容差不了太多,就是直接将proxy进行提前配置和一起安装了,安装过程种截图大差不差,主要看结果,流程是一样的

  1. 进行集群部署observer

部署命令:obd cluster deploy [集群名] -c [集群配置文件]

obd cluster deploy peachzones -c mini-distributed-with-obproxy-example.yaml

如果遇到问题,可查看最后一章问题汇总;部署正常显示为:

  1. 查看部署结果

  obd cluster list

  myzone忽略,那是之前创建的集群

OBD 中注册的集群状态有如下几种。

  1. configured:已配置,表示 OBD 中已包含该集群的配置文件,但该集群还未部署,此时可执行 obd cluster deploy 命令部署该集群。
  2. deployed:已部署,表示该集群已部署,但是还未启动,此时可执行 obd cluster start 命令启动该集群。
  3. running:运行中,表示集群正在运行中。
  4. stopped:已停止,表示集群中有组件已被停止,此时可执行 obd cluster start 命令启动该集群。
  5. upgrading:升级中,表示集群中有组件处于升级中。
  6. destroyed:已销毁,表示该集群已被销毁。

  1. 启动集群

  obd cluster start peachzones

默认的密码就在日志下方,具体可以进到数据库修改

然后再看状态,就是runing状态

 

3.3.5配置操作proxy

使用root@sys用户连接

[admin]# obclient –hxxx.xxx.xxx.xxx -P2881 -D oceanbase -uroot@sys -p –A

1、修改root用户密码

obclient [oceanbase]> alter user root identified by 'peachpass';

2、创建proxyro用户,obproxy连接oceanbase时使用

obclient [oceanbase]> grant select on oceanbase.* to proxyro identified by 'peachproxy';

3、修改proxy密码

用户名:root@proxysys,端口:2883,初始密码:空

[admin]# obclient  -h ip -P2883 -u root@proxysys –p

obclient [oceanbase]> show proxyconfig like '%sys_password%';

修改proxy密码为数据设置的proxyro用户密码

alter proxyconfig set observer_sys_password='peachproxy';

可选择修改proxysys密码

alter proxyconfig set obproxy_sys_password='OceanBase010';

3.3.6obproxy连接集群

通过obproxy连接oceanbase集群

obclient –hxxx.xxx.xxx.xxx -P2883 -uroot -p –A

最终访问成功

三:问题汇总

3.1 重复部署

再次执行 obd cluster display myob

   

可忽略,说明已部署,至于至于部署状态是什么,单独看了

3.2 重新部署

    obd cluster destroy

销毁已部署的集群。如果集群处于运行中的状态,该命令会先尝试执行 stop,成功

再执行 destroy。

3.3 enp0s3 fail to ping ……

enp0s3 fail to ping 127.0.0.1,please check ‘devname’

  此问题单机部署出现,配置IP地址为网卡地址,非loopback地址。

解决方案:编辑配置文件,重新部署集群myob 。

3.4 修改配置文件yaml,但是没生效

Deplay以后,配置文件就被加载进去了,原始的文件修改不生效,需要命令修改

[wuhs@s153 ~]$ sudo obd cluster edit-config myob

#如将devname参数改为:devname: eth0

[wuhs@s153 ~]$ sudo obd cluster redeploy myob

3.5 fail to init xxx.xxx.xxx.xxx home path : /home/admin/observer is not empty

fail to init xxx.xxx.xxx.xxx home path : /home/admin/observer is not empty

之前已经部署过集群,目录里面存在文件

解决:1、删除里面内容,

      2、修改原配置文件home_path,加载创建新的集群

3.6 The value of the ulimit parameter "max user processes"……

The value of the ulimit parameter "max user processes" must not be less than 120000 (Current value: 4096), Please execute `echo -e "* soft nproc 120000\n* hard nproc 120000" >> /etc/security/limits.d/nproc.conf` as root in 127.0.0.1. if it dosen't work, please check whether UsePAM is yes in /etc/ssh/sshd_config.

按提示操作

 echo -e "* soft nproc 120000\n* hard nproc 120000" >> /etc/security/limits.d/nproc.conf

3.7 no authentication methods available

解决:主机之间配置ssh互信,具体看准备工作2.2

3.8长时间停留在Initialize oceanbase-ce \

长时间停留在这,集群环境中防火墙端口没放开,关闭防火墙

[root]# systemctl stop firewalld

[root]# systemctl disable firewalld

3.9 defaultuser@ip connect failed:timeout

Ssh端口不是默认的,需要在配置文件手动配置

打开yaml配置文件种user属性,配置用户名,密码,Port,如果配置证书,可不配置密码

3.10 Fail check_uid_before_start, please use the initial user to start observer!

出现这个报错,可以查看启动日志,里面是否有

current user(uid=0) that starts observer is not the same with the original one(uid=1000), observer starts failed!

说明部署用户uid和启动用户uid存在差异,不让启动,

   

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mfbz.cn/a/486788.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

Oracle数据库入门第二课(查询)

前面二白详细讲了一下如何下载安装Oracle以及插件,下面咱们正式学习一下Oracle数据库的查询语言。 DQL:数据库查询语言 一、简单查询 关键字:oracle数据库定义好的有特殊含义的字符 我们的sql语句就是由多种关键字组合而成 语法: select 要查询的内容 from 数…

操作系统入门框架

博主b站入口:Uncertanity的个人空间 参考资料 王道计算机网络课程 电子科技大学操作系统课件

玩具蛇(蓝桥杯)

文章目录 玩具蛇题目描述答案:552dfs 玩具蛇 题目描述 本题为填空题,只需要算出结果后,在代码中使用输出语句将所填结果输出即可。 小蓝有一条玩具蛇,一共有 16 节,上面标着数字 1 至 16。每一节都是一个正方形的形…

学习人工智能:Attention Is All You Need-1-介绍;Transformer模型架构;编码器,解码器

Transformer模型是目前最成功的chatGPT,Sora,文心一言,LLama,Grok的基础模型。 《Attention Is All You Need》是一篇由Google DeepMind团队在2017年发表的论文,该论文提出了一种新的神经网络模型,即Trans…

QT 信号(Signal)与槽(Slot)机制

一、信号(signal)与槽(slot) 在QT中,信号(signal)与槽(slot)机制是一种用于对象间通信的重要机制。它允许一个对象发出信号,而其他对象可以通过连接到该信号…

电容笔品牌排行榜:2024五款便宜好用的电容笔极力推荐!

iPad作为我们最常使用的平板,我们想体验iPad的高效使用,丝滑体验,电容笔已经成为许多人的必备工具之一。Apple Pencil适用于专业绘图,一千的售价着实太高,如果普通学生党,用户使用选一款好的电容笔平替&…

多进程编程及相关函数

文章目录 查看系统中的进程进程标识进程创建进程终止僵尸进程守护进程和孤儿进程wait函数exec函数system函数 程序是存放在磁盘文件中的可执行文件。程序的执行实例被称为进程,进程具有独立的权限与职责。 每个进程运行在其各自的虚拟地址空间中,进程之间…

数智赋能|智慧变电站数字孪生解决方案

当今世界,绿色发展已经成为一个重要趋势,中国、欧盟、北美纷纷发布了通过低碳化、电气化、网络化、智能化全面进行能源结构变革,推进碳达峰、碳中和进程的战略举措。落实绿色发展目标,能源是主战场,电力是主力军&#…

用DataGrip连接hive时报错:User: root is not allowed to impersonate plck5,解决方法

你可以尝试关闭主机校验 修改hive安装目录下conf/hive-site.xml,将hive.server2.enable.doAs设置成false <property><name>hive.server2.enable.doAs</name><value>false</value><description>Setting this property to true will have H…

python 处理png图片无损压缩

代码利用了Pillow库来处理图片的压缩&#xff0c;并使用了 glob 模块来搜索所有的 .png 文件。这个脚本应该能够按照当前的编写来完成预期的工作。 请注意&#xff0c;compress_level9 指定了Pillow保存PNG图片时采用的最大压缩等级。这确保了每张图片都被以可能的最小文件大小…

二叉搜索树(二叉排序树,二叉查找树)(附图详解+代码实现+应用分析)

最近学习了有关搜索二叉树的相关知识&#xff0c;在此特意将该知识进行总结分享&#xff0c;希望对大家有所帮助。 文章目录 一.二叉搜索树1.1二叉搜索树的概念1.2二叉搜索树的操作&#xff08;含思路分析代码实现&#xff09;1.2.1二叉搜索树的查找&#xff08;递归实现看最后…

如何在Ubuntu系统使用Docker搭建MongoDB结合内网穿透实现公网连接

文章目录 前言1. 安装Docker2. 使用Docker拉取MongoDB镜像3. 创建并启动MongoDB容器4. 本地连接测试5. 公网远程访问本地MongoDB容器5.1 内网穿透工具安装5.2 创建远程连接公网地址5.3 使用固定TCP地址远程访问 前言 本文主要介绍如何在Linux Ubuntu系统使用Docker快速部署Mon…

城市排涝与海绵城市规划设计中的水文水动力模拟技术应用

随着计算机的广泛应用和各类模型软件的发展&#xff0c;将排水系统模型作为城市洪灾评价与防治的技术手段已经成为防洪防灾的重要技术途径。本次培训将聚焦于综合利用GIS及CAD等工具高效地进行大规模城市排水系统水力模型的建立&#xff0c;利用SWMM实现排水系统水力模拟。讲解…

如何本地部署Imagewheel并实现无公网IP远程连接打造个人云图床

文章目录 1.前言2. Imagewheel网站搭建2.1. Imagewheel下载和安装2.2. Imagewheel网页测试2.3.cpolar的安装和注册 3.本地网页发布3.1.Cpolar临时数据隧道3.2.Cpolar稳定隧道&#xff08;云端设置&#xff09;3.3.Cpolar稳定隧道&#xff08;本地设置&#xff09; 4.公网访问测…

Linux文件系列:磁盘,文件系统,软硬链接

Linux文件系列:磁盘,文件系统,软硬链接 一.磁盘相关知识1.磁盘机械构成2.磁盘物理存储3.磁盘逻辑存储1.LBA地址2.磁盘的分区和分组 二.文件系统和inode1.inode结构体2.文件系统1.Super Block(超级块)2.Group Descriptor Table(块组描述表GDT)3.inode Table4.Data Blocks5.Block…

vue3+threejs新手从零开发卡牌游戏(八):关联卡组和手牌区、添加初始化卡组和初始化手牌逻辑

首先我们优化下之前的代码&#xff0c;先加载游戏资源&#xff0c;然后再初始化场景&#xff0c;由于目前只有一个font字体需要加载&#xff0c;所以我们将之前game/deck/p1.vue中的font相关代码迁移到game/index.vue下&#xff0c;同时使用async和await处理异步加载&#xff0…

基于Scapy国内城市空气质量数据采集系统设计与实现

代码和完整的报告在文章最后 城市空气质量数据采集系统设计与实现 &#x1f3d9;️ 研究背景 &#x1f32c;️ 城市化与环境挑战&#xff1a;随着城市化进程的加快&#xff0c;环境污染问题&#xff0c;尤其是空气质量问题&#xff0c;已成为公众关注的焦点。数据监测的重要性…

Windows安装配置国产达梦数据库、配置Python接口

文章目录 前言1.下载安装达梦数据库2.配置达梦环境变量3.安装Microsoft Visual C 14.04.安装达梦Python接口dmpython5.测试验证 总结 前言 达梦数据库&#xff08;Dameng Database&#xff09;是由武汉达梦数据库股份有限公司开发的一款高性能的关系型数据库管理系统。该数据库…

关于短群签名论文阅读

参考文献为2004年发表的Short Group Signatures 什么群签名&#xff1f; 群签名大致就是由一组用户组成一个群&#xff0c;其中用户对某条消息的签名&#xff0c;改签名不会揭示是哪一个用户签署的&#xff0c;签名只能表明该消息确实是来自该群的签名。对于群还有一个群管理者…

蓝桥杯算法 - DP

上一篇&#xff1a;[[蓝桥杯算法-排序、递归、全排列]] 动态规划&#xff08;dp&#xff09; dp即动态规划&#xff0c;常用于&#xff1a;数学&#xff0c;计算机科学&#xff0c;管理学&#xff0c;经济和生物信息学。 dp在生活中也很常见&#xff0c;如&#xff1a;你今天…
最新文章