程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> DB2數據庫 >> DB2教程 >> REDHAT 7.3 DB2 安裝記錄

REDHAT 7.3 DB2 安裝記錄

編輯:DB2教程

最近在自己的Linux平台安裝了一套DB2 PE 7.2,做研究用。在安裝過程還是出了一些問題,所以把安裝記錄貼上來,給大家做個參考。

由於Linux的中文問題,所以為英文的,較為簡單
1.before
readhat : need pdksh*.rpm - donwload from redhat
user: db2inst1/db2fenc1/db2as
.bash_profile :
export DB2DIR=/usr/IBMdb2/V7.1
export PATH=$PATH:$DB2DIR/bin

!!!!!above is err
chage user's shell -> ksh

2.db2setup
DB2SYSTEM set to test
install on /usr/IBMdb2

3.postinst
3.1 /usr/IBMdb2/V7.1/instance/db2icrt -a AuthType -u FencedID InstName
3.2 /usr/IBMdb2/V7.1/instance/dasicrt ASName
 (use /usr/IBMdb2/V7.1/install/db2setup)
3.3 /usr/IBMdb2/V7.1/adm/db2licm -a /cdrom/db2/license/db2udbpe.lic
3.4 /usr/IBMdb2/V7.1/cfg/db2ln

check /tmp/db2setup.log :
/usr/IBMdb2/V7.1/instance/db2icrt -a SERVER -u db2fenc1 db2inst1

Output log of the above command:
DBI1768W Unable to modify the .profile or the .login file of
     user db2inst1.

Explanation: DB2 has failed to modify the .profile file or the
.login file of this user. These files may not exist, or you may
not have write permission to them. Without the modification you
need to set your environment manually each time when you log in
as this user to use DB2.

User Response: Add the following line to the .profile file or
the .login file:
. sqllib/db2profile  to the .profile file, or
source sqllib/db2cshrc to the .login file

See the Quick Beginning Guide for more details on how to set the
DB2 environment automatically.


DBI1070I Program db2icrt completed successfully.

4.verify
1.su - db2inst1
  db2sampl
  db2 connect to sample
  db2 "select * from staff where dept = 20"
  db2 connect reset

have err msg but OK AFTER . sqllib/db2profile  to the .profile file

5. stop
su - db2inst1 ; db2stop
su - db2as  ; db2admin stop
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved