-
1. Re: Informatica upgrade from 9.5.1 to 9.6.1 on same Unix box
Reza Joemrati Sep 14, 2018 5:42 AM (in response to user193227)Hi Sreenesh,
It's possible to run multiple versions of Informatica on Unix. Keep in mind,you have to use different port number ranges, otherwise the domain will not start up. Also, create different installation folders under different Unix users. If you have done that, you should safe to run multiple Informatica versions..
-
2. Re: Informatica upgrade from 9.5.1 to 9.6.1 on same Unix box
Nico Heinze Sep 17, 2018 8:56 AM (in response to Reza Joemrati)To add to Reza's response, make sure that the environment variables (such as $PATH, $LD_LIBRARY_PATH or whatever is appropriate in your environment, $ODBCHOME, $ODBCINI, $INFA_HOME, etc.) are all set differently for the two environments.
As of my experience - as stated by Reza - you can run two different versions under the same user account, but there are quite a few ways to mess up either installation if you do not pay extreme care.
The safest way I found (and even this way you can easily foul up everything) is to insert some statements in your .profile such that you are asked whether you want to run in environment 9.5.1 or in environment 9.6.1; for example, "read" a shell variable and invoke
. env951.sh
if the answer was "log on to 9.5.1 environment", resp. invoke
. env961.sh
if the answer was "log on to 9.6.1 environment".
This also has the advantage that you can easily "switch" between these two environments from the shell prompt by simply issuing either of the two commands above.
Again, it can be done, but it is dangerous. Even though I know what to do, I once almost messed up the older installation: I started a certain shell script which (I don't recall why) needed some absolute paths, and so I accidently changed some files in the older environment (because I wanted to start this script in the second installation). Be careful.
Regards,
Nico
-
3. Re: Informatica upgrade from 9.5.1 to 9.6.1 on same Unix box
user193227 Sep 18, 2018 3:15 AM (in response to Nico Heinze)Thanks Nico for your reply, I will try the same way as you have mentioned and will see how it goes and let you know.