Its hung at "importConfigArchive" stage for a long time, not looking good so far.
Time to do a bit of searching...
Update
Found this on the IBM site seems that sh is linked to dash instead of bash might be the problem. So I've linked sh to bash and going to try installing again.
Update 2
Success changing the sh to be linked to bash allowed WebSphere 7 to install. To do this you need to enter the following commands in a terminal window.
cd /bin
sudo rm sh
sudo ln -s bash sh
It might be a good idea to change it back once your install has finished.
cd /bin
sudo rm sh
sudo ln -s dash sh



9 comments:
Thanks so much. That did the trick.
Worked! Thanks man!
Thanks Al'str.. It Works!!!
Ubuntu way to change the Link:
dpkg-reconfigure dash
I apologize for the stupid question, but I'm a total noob. How would I go about changing it back?
Thanks!
To change it back after installing,
cd /bin
sudo rm sh
sudo ln -s dash sh
Thanks!!!! :D
Greath Job Men!
It resolve my problem,
Thanks a lot
So sweet. Used to many hours on this one, so hard to figure out, and yet so simple to solve.
Post a Comment