在red hat linux上安裝DB2 v8

2021-08-30 18:28:03 字數 1577 閱讀 3159

看了這個帖子

提到 "很多人不知道db2的fixpack的包比db2的該版本的原始版本和前乙個版本都要大的原因,其實是因為fixpack中包含所有的內容

因此不需要從原始版本開始安裝,你直接安裝fixpack就可以

db2 v8 fixpack:

db2 v9 fixpack:

步驟如下:

以下均為linux環境下。

安裝軟體,用root使用者執行db2_install,然後按照以下步驟一步一步執行

1.建立使用者和組

groupadd -g 200 dasadm

groupadd -g 201 db2fenc

groupadd -g 202 db2grp

useradd -d /home/dasusr -g 200 -u 200 dasusr

useradd -d /home/db2fenc -g 201 -u 201 db2fenc

useradd -d /home/testdb -g 202 -u 202 testdb

passwd testdb

輸入密碼testdb

2.建立管理機

./dascrt dasusr

3.建立例項

./db2icrt -s ese -u db2fenc testdb

4.在/etc/service中加入:

testdb           50006/tcp

db2_testdb       60000/tcp

db2_testdb_1     60001/tcp

db2_testdb_2     60002/tcp

db2_testdb_end   60003/tcp

5.切換使用者

su - testdb

6.啟動資料庫

db2start

7.修改dbm引數

db2db2 => update dbm cfg using svcename testdb

8.建立資料庫

create database testdb on /home/testdb alias testdb using codeset gbk territory cn

9.連線資料庫

db2 => connect to testdb user testdb using testdb

10.列出所有的系統表

db2 => list tables for system

11.檢視表結構

db2 => describe select * from user.tables

例如describe select * from sysibm.tables

12.讀資料庫管理程式配置

db2 => get dbm cfg

15.備份資料庫testdb

db2 => backup db testdb to /home/testdb/db2data_bak

backup successful. the timestamp for this backup image is : 20090614162851

16.停止資料庫

db2stop

RedHat Linux 下安裝Python3步驟

redhat下安裝python3步驟 wget tar zxvf python 3.4.1.tgz 2.進入解壓後的目錄,執行安裝配置 configure 或指定安裝目錄 configure prefix opt python3 3.build make 4.install make install...

RedHat Linux 下安裝Python3步驟

redhat下安裝python3步驟 wget tar zxvf python 3.4.1.tgz 2.進入解壓後的目錄,執行安裝配置 configure 或指定安裝目錄 configure prefix opt python3 3.build make 4.install make install...

RedHat Linux 下安裝Python3步驟

redhat下安裝python3步驟 wget tar zxvf python 3.4.1.tgz 2.進入解壓後的目錄,執行安裝配置 configure 或指定安裝目錄 configure prefix opt python3 3.build make 4.install make install...