Quote:
Originally posted by gemini95117
Hi guys,
I have a DB2 7.1 on AIX. I have a requirement where-in i have to install DB2 8 also on the same machine. I was able to install the DB2 8 and also create a new db2inst8 db2 8.x instance.
I got the following messages when i did the db2icrt.
I could make out just that its referring to the das of db2 7.x version for sure with the /home/db2as directory something....
Any ideas if this is a error or just a warning ..
|
I searched for db2ftok on the
IBM Technical Support site and found a technote which could solve your problem.
Hope this helps.
Copied from that technote:
========================================
The problem here is that the DB2 V8 binary is trying to use the DB2 V7 library.
db2iexec runs db2ftok as the instance owner which gets the environment from the instance owner's .profile and then from the db2profile. As per the db2profile, it will pickup correct migrated path for all binaries and libraries. However, many times a manual update in .profile might create an unwanted problem. In this case the following were entered in .profile:
---------------------------------
LIBPATH=$LIBPATH:/usr/lib:/usr/lpp/db2_07_01/lib
export LIBPATH
---------------------------------
So, in .profile of the instance owner, there should not be any DB2 libpath entry.
Similar problems also might be faced if following are done:
Unwanted DB2 references are manually entered in .profile of root user.
Links to DB2 libraries are created from /usr/lib either accidentally or by some tools.
db2profile is manually updated to make quick fix of path problems.
/lib does not point to /usr/lib
========================================