`
guoyanxi
  • 浏览: 275805 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

DB2 DPF 测试环境搭建

    博客分类:
  • db2
 
阅读更多
克服了无数小问题后,终于搭建起来测试环境了
总的教程:
http://www.ibm.com/developerworks/data/library/techarticle/dm-0504mcarthur/index.html

1.Server准备
2.文件系统
3.建立实例
4.rsh
5.测试


环境:
Server:
test64bit00
test64bit01

node:
0 test64bit00 0
1 test64bit00 1
2 test64bit01 0
3 test64bit01 1

User ID:
dpfinst1:x:1004:999::/db2home/dpfinst1:/bin/bash
dpffen1:x:1003:998::/db2home/dpffen1:/bin/bash
dpfdas1:x:1002:997::/home/dpfdas1:/bin/bash

Share home path:
/db2home


1.Server准备

现在vmware装好DB2,建好用户,然后使用clone功能复制多一台

然后更新各自的IP就好

因为DB2安装路径、版本,用户和组的ID都必须一样,所以这样做既省事又准确

--添加用户
groupadd -g 999 db2iadm1
groupadd -g 998 db2fadm1
groupadd -g 997 dasadm1
useradd -u 1004 -g db2iadm1 -m -d /db2home/dpfinst1 dpfinst1 -p manager1
useradd -u 1003 -g db2fadm1 -m -d /db2home/dpffen1 dpffen1 -p manager1
useradd -u 1002 -g dasadm1 -m -d /home/dpfdas1 dpfdas1 -p manager1
passwd db2inst1
passwd db2fenc1
passwd dasusr1

--补齐包
rpm -ivh rsh-server-0.17-40.el5.x86_64.rpm 


--相应的服务
service portmap start
service nfs start
chkconfig rsh on

--更新/etc/hosts
192.168.221.137 test64bit01
192.168.221.136 test64bit00



2.文件系统
在test64bit00上

mkdir /db2home

--在/etc/fstab里面添加:
/dev/sdc	/db2home	ext3	defaults	0	0

--在/etc/exports里面添加:
/db2home test64bit00(rw,sync,no_root_squash) test64bit01(rw,sync,no_root_squash)
--允许相应的server进行读写

--应用更改
/usr/sbin/exportfs -a



在test64bit01上
mkdir /db2home

--在/etc/fstab里面添加:
test64bit00:/db2home /db2home nfs rw,timeo=300,retrans=5,hard,intr,bg,nolock,suid

--刷新最新的挂载点
mount -a


现在NFS就弄好了
[root@test64bit00 db2home]# touch a

[root@test64bit01 db2home]# ll a
-rw-r--r-- 1 root root 0 Nov 23 16:58 a



3.建立实例
--建立一次就好了
[root@test64bit00 db2home]# /opt/ibm/db2/V9.5/instance/db2icrt -u dpffen1 dpfinst1
DBI1070I  Program db2icrt completed successfully.

--把db2profile加到bash profile里面
[dpfinst1@test64bit01 ~]$ tail -1 .bash_profile
/db2home/dpfinst1/sqllib/db2profile

--更新相应的连接配置
--在/etc/services里面保证两边相同
[root@test64bit01 db2home]# grep -i dpf /etc/services 
DB2_dpfinst1    60020/tcp
DB2_dpfinst1_1  60021/tcp
DB2_dpfinst1_2  60022/tcp
DB2_dpfinst1_END        60023/tcp


db2 update dbm cfg using SVCENAME DB2_dpfinst1


db2set DB2COMM=tcpip



4.rsh
更新nodes列表:
[dpfinst1@test64bit00 ~]$ cat sqllib/db2nodes.cfg 
0 test64bit00 0
1 test64bit00 1
2 test64bit01 0
3 test64bit01 1


添加rhost
vi /db2home/dpfinst1/.rhosts

test64bit00 dpfinst1
test64bit01 dpfinst1

chmod 600 /db2home/dpfinst1/.rhosts


5.测试
[dpfinst1@test64bit00 ~]$ db2_all date
 
Wed Nov 23 17:06:19 CST 2011
test64bit00: date completed ok
 
Wed Nov 23 17:06:19 CST 2011
test64bit00: date completed ok
 
Wed Nov 23 17:06:19 CST 2011
test64bit01: date completed ok
 
Wed Nov 23 17:06:19 CST 2011
test64bit01: date completed ok




PS:途中遇到许多问题,整理了一些:
1.rsh 544 connection refused

connect to address 192.168.221.137 port 544: Connection refused
Trying krb4 rsh...
connect to address 192.168.221.137 port 544: Connection refused
trying normal rsh (/usr/bin/rsh)
test64bit01: Connection refused


A.首先确保iptables没有打开
B.在/etc/securetty里面添加
rexec
rsh
rlogin
C.去除多余的krb4
cd /usr/kerberos/bin
mv rsh rsh.bak20110602
ln -s /usr/bin/rsh rsh

http://www.manotes.net/?tag=redhat-linux-ssh-port-544-connection-refused

2.各种NFS的配置
因为第一次配这个,所以要从头开始
http://www.liusuping.com/ubuntu-linux/Redhat-Linux-NFS-setting.html
http://server.zdnet.com.cn/server/2007/0831/482007.shtml

3.SQL5005C,SQL1042C
在NFS的client端必须要使用nolock的模式mount
不然db2_all反应很慢,报出以下错误:
[root@test64bit01 ~]# dmesg -c
lockd: server 192.168.221.136 not responding, timed out
lockd: server 192.168.221.136 not responding, timed out

[dpfinst1@test64bit01 ~]$ db2 list db directory
SQL5005C  System Error.

[dpfinst1@test64bit01 ~]$ db2start
SQL1042C  An unexpected system error occurred.  SQLSTATE=58004

http://newyue.blog.51cto.com/174760/562926
http://linux.die.net/man/5/nfs
http://publib.boulder.ibm.com/infocenter/db2luw/v8/index.jsp?topic=/com.ibm.db2.udb.doc/core/r0012308.htm
http://publib.boulder.ibm.com/infocenter/db2luw/v8/index.jsp?topic=/com.ibm.db2.udb.rn.doc/rn/r0021677.htm
http://publib.boulder.ibm.com/infocenter/tivihelp/v2r1/index.jsp?topic=%2Fcom.ibm.tsiem.doc%2Ftg%2Fkp_sql5005cerrors.html
分享到:
评论

相关推荐

    搭建DB2 DPF(多分区) for LinuxUnix操作步骤

    搭建 DB2 DPF(多分区) for Linux/Unix 操作步骤 ...搭建 DB2 DPF 环境需要满足高的机器配置要求,包括多个 CPU、高内存和多个硬盘。但是,DB2 DPF 环境可以提供高性能和高可扩展性的数据库解决方案。

    DB2 DPF分区库搭建手册

    本手册主要聚焦于如何在AIX操作系统环境下搭建和迁移DB2 DPF分区库,并提供了Linux环境下的迁移参考。 在开始之前,确保你对AIX和Linux操作系统有一定的了解,包括磁盘管理、用户及权限设置以及系统优化。以下是...

    DB2 DPF原理应用

    DB2 数据库分区功能(DPF)是 DB2 企业版的一个重要特性,旨在处理大规模数据和高并发访问。DPF 采用 Share-nothing 体系结构,即将数据库分解为独立的分区,每个分区都有自己的计算资源(CPU、内存、磁盘),以及...

    DB2 数据库分区特性(DPF)

    DB2数据库分区特性(DPF)是DB2数据库中一种重要的技术,通过该技术可以将数据分散存储在不同的物理分区上,同时保证数据的一致性和完整性,从而提升数据库的性能和可伸缩性。下面是关于DB2数据库分区特性(DPF)的...

    构建DB2+DPF大型数据仓库经验谈

    ### 构建DB2+DPF大型数据仓库关键知识点解析 #### 一、DB2 DPF简介 **DB2 DPF**(DB2 Distributed Partitioned File)是一种多分区数据库技术,其核心特性在于采用了**非共享架构**(Share-nothing architecture),这...

    DB2 基于内置盘的DPF集群方案

    【DB2 基于内置盘的DPF集群...总之,这个方案利用了DB2 DPF的分布式处理能力,结合GPFS的高速文件系统,提供了高可用的数据库集群环境。同时,通过TSA设置,确保了在硬件故障时服务的连续性,增强了整个系统的稳定性。

    DB2-DPF配置验证说明书V0.1.docx

    在测试环境配置阶段,需要确保满足以下条件: 1. 硬件:有足够的处理器核心和内存来支持并行处理。 2. 操作系统:通常要求是支持IBM DB2的Linux、Unix或Windows系统。 3. 网络:所有参与节点间需有稳定、高速的网络...

    DB2数据库分区DPF

    ### DB2数据库分区DPF详解 ...通过上述步骤和命令,我们可以有效地管理和监控DB2 DPF环境,确保数据库的高效运行。此外,DB2 DPF还提供了丰富的工具和命令,帮助用户更好地理解和优化数据库性能。

    db2v9 dpf 安装过程

    db2v9 dpf 安装 for HP-UX

    DB2分区数据库简介-DPF

    ### DB2分区数据库简介-DPF #### 一、DB2分区数据库概述 DB2分区数据库是一种高级特性,尤其适用于处理大规模的数据集与高并发访问需求。该特性属于DB2企业版的一部分,即Data Partitioning Feature (DPF),主要...

    dpf搭建过程

    详细的dpf搭建过程,记录了整个搭建流程。已经验证通过了

    db2top命令详解

    它不仅适用于多分区数据库(Database Partitioning Feature,简称DPF)环境,同时也适用于非DPF环境下的单一数据库。通过收集各个数据库分区的数据快照,db2top能够简化数据库监控任务,并为用户提供一个统一的系统...

    DPF阅读器.rar

    8. **自定义设置**:用户可以根据个人喜好调整字体、背景色、亮度等参数,还可以设置自动翻页、全屏模式等,打造个性化的阅读环境。 9. **更新与支持**:开发商通常会定期更新DPF阅读器,修复已知问题,增加新功能...

    DB2培训资料——详细、中文

    2. **DB2 Personal Edition**:适用于单用户环境,在Windows和Linux平台上运行。 3. **DB2 Express-C**:免费版本,支持Windows和Linux平台。不支持高可用性灾难恢复(HADR)、表分区等功能,并且缺乏24x7 PPA支持。...

    最优化dpf算法(matlab)

    在MATLAB环境中,DPF算法通常用于解决连续或离散的优化问题,尤其是在处理多阶段决策过程和资源分配问题时效果显著。本文将深入探讨DPF算法的核心概念、实现原理以及在MATLAB中的应用。 DPF算法基于动态规划的思想...

    db2top资源查看命令详解

    `db2top` 是 IBM DB2 数据库管理系统中的一个性能监控工具,它主要用于监控和诊断 DB2 UDB(Universal Database)数据库在 DPF(Distributed Partitioned File System)环境下的运行情况。通过 `db2top`,用户可以...

    DB2数据库系统管理入门

    db2set用于设置环境变量,db2 get snapshot用于获取数据库快照,db2 list db directory列出数据库目录,db2 catalog和db2 connect用于节点注册和数据库连接。 在存储方面,DB2数据库的存储结构主要包括数据库、表...

    Oracle to DB2 Conversion Guide for Linux, UNIX, and Windows

    - **DB2 Universal Database**:提供了一种通用的数据存储方式,支持多种操作系统环境。 - **DB2 Warehouse Manager**:专注于数据仓库和商业智能(BI)应用。 - **DB2 Connect**:主要用于连接和访问DB2数据库的工具...

    DB2 8.1 和9.5 在aix平台的安装和配置

    在配置DB2时,还需要关注一些重要概念,如数据库分区(DPF)、数据库群集(PureScale)、以及性能监控工具如DB2 Performance Expert。对于高可用性和灾难恢复,可以考虑设置镜像数据库、远程复制或者利用HADR(High ...

Global site tag (gtag.js) - Google Analytics