Following are the steps to remove DB2 from Unix/Linux:
cyper: Ubuntu 12.04LTS测试通过
1.Remove DB[首先删除数据库]
(1)su - db2inst1
(2)db2 list db directory
(3)db2 drop db <db name>
2.Remove Instance【删除实例】
(1)su - root
(2)cd <db2 dir>/instance
(3)./db2ilist
(4)./db2idrop -f <instance name>
3.Remove das【删除das】
(1)su - root
(2)cd <db2 dir>/instance
(3)./daslist
(4)./dasdrop <das user>
4.Uninstall【卸载】
(1)su - root
(2)cd <db2 dir>/install
(3)./db2_deinstall -a
5.Remove user ( db2inst1,db2fenc1,dasusr1)【删除用户】
userdel -r <username>
please lookinto the file /etc/passwd before and after you deleted users
Cyper windows7下:
1)DB2命令窗口 - Administrator
C:\IBM\SQLLIB\BIN>
db2 list db directory
db2start
db2 drop database <database name>
db2stop
db2ilist
db2idrop DB2
db2unins
删除目录C:/DB2
删除目录:C:\ProgramData\IBM\DB2
删除目录C:/program files/SQLLIB如果存在(我的是c:/IBM/SQLLIB),
## 2017更新, 直接使用db2_deinstall删除db2
参考: https://www.ibm.com/support/knowledgecenter/SSEPGG_9.7.0/com.ibm.db2.luw.admin.cmd.doc/doc/r0023670.html
最终使用了/opt/ibm/db2/v10.5/install/db2_deinstall -a
.
Example
To uninstall all the DB2 database products that are installed in a location (DB2DIR), issue the db2_deinstall command located in the DB2DIR/install directory:
DB2DIR/install/db2_deinstall -a
Usage notes
- If you run db2_deinstall -a -f sqllib, the $HOME/sqllib directory will be removed. Be certain to backup any files, that require saving, from this directory prior to running the command.