Home > Database > Mysql Tutorial > Linux下安装多个DB2副本

Linux下安装多个DB2副本

WBOY
Release: 2016-06-07 17:24:08
Original
1160 people have browsed it

由于系统上已存在DB2副本,并且安装时使用了缺省安装路径/opt/ibm/db2/V9.7,所以必须为即将安装的DB2副本指定安装路径。如果使用

1、查看系统上当前存在的DB2副本:

[root@localhost home]# db2ls

 

Install Path                      Level  Fix Pack  Special Install Number  Install Date                Installer UID

---------------------------------------------------------------------------------------------------------------------

/opt/ibm/db2/V9.7                9.7.0.7      7                          Fri Dec 7 01:58:51 2012 CST            0

当前系统上的DB2版本为9.7.0.7,副本安装路径为/opt/ibm/db2/V9.7.

 

2、查看系统上当前DB2实例的用户和组信息:

[db2inst@localhost home]$ ls -l

总用量20

drwxr-xr-x. 4 dasusr dasadm 4096 12月 7 02:05 dasusr

drwx------. 3 db2fenc db2fgrp 4096 11月30 21:46 db2fenc

drwxr-xr-x. 10 db2inst db2grp 4096 12月12 05:26 db2inst

drwxr-xr-x. 3 root  root  4096 12月12 05:28 db2install

可知,当前实例所有者db2inst所在组为db2grp。DAS用户为dasusr,组为dasadm。受防护的用户为db2fenc,组为db2fgrp。

 

由于每台计算机上只能有一个DAS,,所以不用为新的副本创建DAS,也就不用创建相应的DAS用户。

 

3、为新DB2副本实例创建实例所有者用户和组:

[root@localhost home]# groupadd db2grp2

[root@localhost home]# useradd -g db2grp2 -d /home/db2inst2 -s /bin/bash db2inst2

[root@localhost home]# passwd db2inst2

 

4、由于系统上已存在DB2副本,并且安装时使用了缺省安装路径/opt/ibm/db2/V9.7,所以必须为即将安装的DB2副本指定安装路径。如果使用“DB2安装”向导安装新的副本,可以不用指定安装路径,会使用缺省路径:/opt/ibm/db2/V9.7_##,其中##范围是01到99,。此处创建安装路径为:

[root@localhost ~]# mkdir /opt/ibm/db2/V9.7_01

 

5、使用root用户安装新的DB2副本。注意,非root用户安装不支持多个DB2副本。

[root@localhost db2install]# ls

server v9.7fp5_linuxia32_server.tar.gz

--此处安装包已经解压过。

 

[root@localhost server]# ./db2_install -b /opt/ibm/db2/V9.7_01 -p ESE -n

 

-b:指定安装路径。

-p productShotName:指定要安装的DB2数据库产品。此参数不区分大小写。当指定-n参数时,必须指定-p参数。可以在/home/db2install/server/db2/linux目录下的ComponentList.htm文件中找到产品短名称(productShotName)。下面是相应产品的短名称:

DB2 Enterprise Server Edition:ESE

DB2 Connect Server:CONSV

DB2 Workgroup Server Edition:WSE

DB2 Express:EXP

DB2 Personal Edition:PE

IBM Data Server Client:CLIENT

IBM Data Server Runtime Client:RTCL

-n:指示非交互安装方式。当指定了此参数,必须指定-b和-p。

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template