一篇文章讲明白HVR数据复制软件部署之(一)

简介: 一篇文章讲明白HVR数据复制软件部署之(一)

HVR数据复制软件部署之(一)--HUB端部署

本文环境:

OS: RHEL5.9 x86-64bit

DB: Oracle 12.1.0.2 x86-64bit

HVR:highgohvr-4.7.3_7-linux_glibc2.5-x64-64bit.tar.gz

sqlplus / as sysdba

create user c##hvrhub identified by mypass

default tablespace users

temporary tablespace temp

quota unlimited on users;

grant create session to c##hvrhub;

grant create table to c##hvrhub;

grant create trigger to c##hvrhub;

grant create procedure to c##hvrhub;

grant execute on dbms_alert to c##hvrhub;

mkdir -p /u04/hvr

chown -R oracle:oinstall /u04/hvr

mkdir -p /u04/hvr/hvr_home

mkdir -p /u04/hvr/hvr_config

mkdir -p /u04/hvr/hvr_tmp

su - oracle

cat //代码效果参考:http://www.zidongmutanji.com/bxxx/425326.html

.bash_profile

export HVR_HOME=/u04/hvr/hvr_home

export HVR_CONFIG=/u04/hvr/hvr_config

export HVR_TMP=/u04/hvr/hvr_tmp

export PATH=$HVR_HOME/bin:$PATH

上传介质到/u04/hvr/hvr_home,并解压

上传lic到/u04/hvr/hvr_home/lib---只对hub。

vi /etc/services

加入例如以下一行:

hvr 4343/tcp

vi /etc/inetd.conf

加入例如以下一行:

hvr stream tcp nowait root /u04/hvr/hvr_home/bin/hvr hvr -r -EHVR_HOME=/u04/hvr/hvr_home -EHVR_CONFIG=/u04/hvr/hvr_config -EHVR_TMP=/u04/hvr/hvr_tmp

vi /etc/xinet.d/hvr

service hvr

{

socket_type = stream

wait = no

user = root

server = /u04/hvr/hvr_home/bin/hvr

server_args = -r

env += HVR_HOME=/u04/hvr/hvr_home

env += HVR_CONFIG=/u04/hvr/hvr_config

env += HVR_TMP=/u04/hvr/hvr_tmp

disable = no

cps = 10000 30

per_source = 100

instances = 500

}

#/etc/init.d/xinetd force reload

【root@rhel59 ~】# /etc/init.d/xinetd force reload

Usage: /etc/init.d/xinetd {start|stop|status|restart|condrestart|reload}

【root@rhel59 ~】# /etc/init.d/xinetd reload

Reloading configuration: //代码效果参考:http://www.zidongmutanji.com/zsjx/447201.html

【 OK 】

【root@rhel59 ~】#

【root@rhel59 ~】# lsof -i :4343

COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME

xinetd 3285 root 5u IPv4 18389 0t0 TCP *:unicall (LISTEN)

【root@rhel59 ~】#

相关文章
|
5月前
|
安全 关系型数据库 MySQL
揭秘MySQL海量数据迁移终极秘籍:从逻辑备份到物理复制,解锁大数据迁移的高效与安全之道
【8月更文挑战第2天】MySQL数据量很大的数据库迁移最优方案
840 17
|
5月前
|
存储 Kubernetes 中间件
软件环境管理问题之保证环境的一致性如何解决
软件环境管理问题之保证环境的一致性如何解决
|
5月前
|
存储 测试技术 块存储
阿里云块存储问题之有顺序依赖的测试导致不稳定如何解决
阿里云块存储问题之有顺序依赖的测试导致不稳定如何解决
42 0
|
7月前
|
网络协议 Oracle 关系型数据库
一篇文章讲明白HVR数据复制软件部署之(一)
一篇文章讲明白HVR数据复制软件部署之(一)
32 0
|
8月前
|
NoSQL 测试技术 Redis
六步操作教你轻松搭建Redis集群
Redis 是我们目前大规模使用的缓存中间件,由于它强大高效而又便捷的功能,得到了广泛的使用。单节点的Redis已经就达到了很高的性能,为了提高可用性我们可以使用Redis集群。本文参考了Rdis的官方文档和使用Redis官方提供的Redis Cluster工具搭建Rdis集群。
170 0
|
应用服务中间件 Linux nginx
Linux服务器之间迁移数据的窍门
Linux之间复制数据其实很简单,只需运行rsync命令即可
238 0
|
存储 运维 资源调度
二十一、HadoopHA工作机制(高可用)
二十一、HadoopHA工作机制(高可用)
二十一、HadoopHA工作机制(高可用)