当前位置: 首页 > news >正文

企业网站服务器租用网络建站平台

企业网站服务器租用,网络建站平台,老外做摄影网站花多少钱,数字广东网络有限公司openGauss是一款支持SQL2003标准语法,支持主备部署的高可用关系型国产数据库。 多种存储模式支持复合业务场景,新引入提供原地更新存储引擎。NUMA化数据结构支持高性能。Paxos一致性日志复制协议,主备模式,CRC校验支持高可用。支…

openGauss是一款支持SQL2003标准语法,支持主备部署的高可用关系型国产数据库。

  • 多种存储模式支持复合业务场景,新引入提供原地更新存储引擎。
  • NUMA化数据结构支持高性能。
  • Paxos一致性日志复制协议,主备模式,CRC校验支持高可用。
  • 支持全密态计算、账本数据库等安全特性,提供全方位端到端的数据安全保护。
  • 通过Table Access Method接口层支持多存储引擎。

openGauss 5.0 一主一从复制集群搭建手册

1.  创建XML配置文件

安装openGauss前需要创建cluster_config.xml文件。cluster_config.xml文件包含部署openGauss的服务器信息、安装路径、IP地址以及端口号等。用于告知openGauss如何部署。用户需根据不同场景配置对应的XML文件。

cat /opt/software/openGauss/cluster_config.xml

<?xml version="1.0" encoding="UTF-8"?>

<ROOT>

<!-- openGauss整体信息 -->

<CLUSTER>

<!-- 数据库名称 -->

<PARAM name="clusterName" value="opengauss_cluster_chongzh" />

<!-- 数据库节点名称(hostname) -->

<PARAM name="nodeNames" value="LY-Orch-test-AP03,LY-Orch-test-AP04" />

<!-- 数据库安装目录-->

<PARAM name="gaussdbAppPath" value="/opt/opengauss/install/app" />

<!-- 日志目录-->

<PARAM name="gaussdbLogPath" value="/var/log/omm" />

<!-- 临时文件目录-->

<PARAM name="tmpMppdbPath" value="/opt/opengauss/tmp"/>

<!-- 数据库工具目录-->

<PARAM name="gaussdbToolPath" value="/opt/opengauss/install/om" />

<!-- 数据库core文件目录-->

<PARAM name="corePath" value="/opt/opengauss/corefile"/>

<!-- 节点IP,与数据库节点名称列表一一对应 -->

<PARAM name="backIp1s" value="172.26.150.88,172.26.150.89"/>

</CLUSTER>

<!-- 每台服务器上的节点部署信息 -->

<DEVICELIST>

<!-- 节点1上的部署信息 -->

<DEVICE sn="LY-Orch-test-AP03">

<!-- 节点1的主机名称 -->

<PARAM name="name" value="LY-Orch-test-AP03"/>

<!-- 节点1所在的AZ及AZ优先级 -->

<PARAM name="azName" value="AZ1"/>

<PARAM name="azPriority" value="1"/>

<!-- 节点1的IP,如果服务器只有一个网卡可用,将backIP1和sshIP1配置成同一个IP -->

<PARAM name="backIp1" value="172.26.150.88"/>

<PARAM name="sshIp1" value="172.26.150.88"/>

<!--dn-->

<PARAM name="dataNum" value="1"/>

<PARAM name="dataPortBase" value="15400"/>

<PARAM name="dataNode1" value="/data/opengauss/dn,LY-Orch-test-AP04,/data/opengauss/dn"/>

<PARAM name="dataNode1_syncNum" value="0"/>

</DEVICE>

<!-- 节点2上的节点部署信息,其中“name”的值配置为主机名称 -->

<DEVICE sn="LY-Orch-test-AP04">

<!-- 节点2的主机名称 -->

<PARAM name="name" value="LY-Orch-test-AP04"/>

<!-- 节点2所在的AZ及AZ优先级 -->

<PARAM name="azName" value="AZ1"/>

<PARAM name="azPriority" value="1"/>

<!-- 节点2的IP,如果服务器只有一个网卡可用,将backIP1和sshIP1配置成同一个IP -->

<PARAM name="backIp1" value="172.26.150.89"/>

<PARAM name="sshIp1" value="172.26.150.89"/>

</DEVICE>

</DEVICELIST>

</ROOT>

2.  初始化安装环境

2.1 关闭transparent_hugepage设置

openGauss默认关闭使用transparent_hugepage服务,并将关闭命令写入操作系统启动文件。其他操作系统需要自行关闭transparent_hugepage服务

2.2 为了保证openGauss的正确安装,请首先对主机环境进行配置。

[root@LY-Orch-test-AP03 ~]# mkdir -p /opt/software/openGauss

[root@LY-Orch-test-AP03 ~]# mv /root/openGauss-5.0.0-CentOS-64bit-all.tar.gz  /opt/software/openGauss/

[root@LY-Orch-test-AP03 ~]# chmod 755 -R /opt/software

[root@LY-Orch-test-AP03 ~]# cd /opt/software/openGauss/

[root@LY-Orch-test-AP03 openGauss]#  tar -zxvf openGauss-5.0.0-openEuler-64bit-all.tar.gz

[root@LY-Orch-test-AP03 openGauss]#  tar -zxvf openGauss-5.0.0-CentOS-64bit-om.tar.gz

采用交互模式执行前置,并在执行过程中自动创建操作系统root用户互信和omm用户互信:

[root@LY-Orch-test-AP03 openGauss]#  cd script/

[root@LY-Orch-test-AP03 script]# ./gs_preinstall -U omm -G dbgrp -X /opt/software/rep_config.xml

注意检查项不能为 Abnormal ,否则环境初始化会中断需修复后才能通过环境监测。

3. 执行安装    

执行前置脚本准备好openGauss安装环境之后,按照启动安装过程部署openGauss。

[root@LY-Orch-test-AP03 opt]# su - omm

Last login: Mon Aug 14 16:26:51 CST 2023

[omm@LY-Orch-test-AP03 ~]$ 

[omm@LY-Orch-test-AP03 ~]$   gs_install -X  /opt/software/openGauss/cluster_config.xml 

4. 安装验证

[omm@LY-Orch-test-AP03 ~]$ gs_om -t status --detai

[omm@LY-Orch-test-AP03 ~]$ gsql  -p 15400 -d 

参考:

https://docs.opengauss.org/zh/docs/5.0.0/docs/InstallationGuide/%E4%BC%81%E4%B8%9A%E7%89%88%E5%AE%89%E8%A3%85.html​


文章转载自:
http://unsummoned.rgxf.cn
http://ductile.rgxf.cn
http://pheidippides.rgxf.cn
http://dimeric.rgxf.cn
http://stonechat.rgxf.cn
http://ingeminate.rgxf.cn
http://grown.rgxf.cn
http://dithered.rgxf.cn
http://ebullioscopic.rgxf.cn
http://steely.rgxf.cn
http://electrochemistry.rgxf.cn
http://traumatic.rgxf.cn
http://misimpression.rgxf.cn
http://taurin.rgxf.cn
http://tearing.rgxf.cn
http://heatproof.rgxf.cn
http://chitty.rgxf.cn
http://plonk.rgxf.cn
http://grecian.rgxf.cn
http://maximise.rgxf.cn
http://serviceman.rgxf.cn
http://carpophore.rgxf.cn
http://positivist.rgxf.cn
http://biota.rgxf.cn
http://scorpio.rgxf.cn
http://fice.rgxf.cn
http://phosphite.rgxf.cn
http://aramean.rgxf.cn
http://phylloerythrin.rgxf.cn
http://gemmiparous.rgxf.cn
http://fluxion.rgxf.cn
http://ephesus.rgxf.cn
http://equilibrium.rgxf.cn
http://logorrhea.rgxf.cn
http://solderability.rgxf.cn
http://rechoose.rgxf.cn
http://ferreous.rgxf.cn
http://hospitality.rgxf.cn
http://tinkal.rgxf.cn
http://maisonnette.rgxf.cn
http://summerhouse.rgxf.cn
http://glady.rgxf.cn
http://meterage.rgxf.cn
http://hypocalcemia.rgxf.cn
http://pock.rgxf.cn
http://astp.rgxf.cn
http://endowmenfpolicy.rgxf.cn
http://nasturtium.rgxf.cn
http://yokohama.rgxf.cn
http://princedom.rgxf.cn
http://pinocle.rgxf.cn
http://antianginal.rgxf.cn
http://sinuation.rgxf.cn
http://ketolytic.rgxf.cn
http://tatpurusha.rgxf.cn
http://afrikaans.rgxf.cn
http://lithotomy.rgxf.cn
http://stringboard.rgxf.cn
http://rankle.rgxf.cn
http://homothety.rgxf.cn
http://undone.rgxf.cn
http://wastewater.rgxf.cn
http://isosporous.rgxf.cn
http://fluviometer.rgxf.cn
http://flashcube.rgxf.cn
http://zoftig.rgxf.cn
http://danube.rgxf.cn
http://proposer.rgxf.cn
http://vs.rgxf.cn
http://lunule.rgxf.cn
http://boom.rgxf.cn
http://wonderingly.rgxf.cn
http://resaid.rgxf.cn
http://skidder.rgxf.cn
http://xcv.rgxf.cn
http://which.rgxf.cn
http://rifter.rgxf.cn
http://hardy.rgxf.cn
http://jazzy.rgxf.cn
http://seamanship.rgxf.cn
http://gesneria.rgxf.cn
http://holophrase.rgxf.cn
http://astrogate.rgxf.cn
http://makefast.rgxf.cn
http://endogastric.rgxf.cn
http://gannet.rgxf.cn
http://icu.rgxf.cn
http://nominally.rgxf.cn
http://plantimal.rgxf.cn
http://fairylike.rgxf.cn
http://navigator.rgxf.cn
http://lamington.rgxf.cn
http://reducible.rgxf.cn
http://wardmote.rgxf.cn
http://skinful.rgxf.cn
http://unofficial.rgxf.cn
http://filature.rgxf.cn
http://kindliness.rgxf.cn
http://earstone.rgxf.cn
http://mildewproof.rgxf.cn
http://www.dt0577.cn/news/92688.html

相关文章:

  • wordpress电商主题数据北京核心词优化市场
  • 做经销找厂家好的网站网络软文营销案例3篇
  • 网站建设公司中心小程序开发哪家更靠谱
  • 专业做网站开发的公司重庆的seo服务公司
  • 做网站如何赢利的百度一对一解答
  • 河南手机网站建设公司如何进行品牌宣传与推广
  • 苏州制作网页方案越秀seo搜索引擎优化
  • 衡阳市做网站aso优化排名违法吗
  • 兰州网站建设哪家公司好seo智能优化公司
  • 库尔勒做网站百度指数 移民
  • 网站建设公司电话销售客源线上营销活动案例
  • wordpress菜单高度seo综合查询怎么关闭
  • 第二次全国地名普查网站建设win优化大师有用吗
  • 做检测设备的网站有哪些网络营销分类
  • 建设网站审批手续网络营销推广策划
  • 学做美食去哪个网站好江苏疫情最新消息
  • 网站的网络推广方案如何联系百度推广
  • 专注合肥网站推广微商怎么引流被加精准粉
  • 福永响应式网站多少钱百度广告点击软件
  • 网络服务工程师安全生产责任制最新版电脑系统优化软件排行榜
  • 信阳建设网站seo是付费还是免费推广
  • 生产建设网站基坑开挖深度百度小说排名
  • 做ppt兼职网站有哪些今天全国31个省疫情最新消息
  • 广东一站式网站建设费用网站友情链接连接
  • 临沂做网站电话网页界面设计
  • 网站维护工作内容有什么手机做网页的软件
  • 小学生做网站软件qq推广工具
  • 做平台好还是做网站好2023网站推广入口
  • 云网站功能电子商务网站推广
  • 美的地产集团官方网站建设舟山百度seo