How to solve TPTP Monitor (IWAT0435E) error in Eclipse, on Debian based Linux?

After installing the Test and Performance Tools platform in Eclipse Ganymede, when I tried to profile the Java application, I ran into the launch configuration dialog, which contained an error in the following lines:

Error IWAT0435E could not connect to host 

How is this problem fixed?

+6
ubuntu debian eclipse-tptp
source share
4 answers

After searching for a while, I found a solution on several blogs, so thanks to Pablo and Shimi . They contain a more detailed background if you are interested.

A problem with something called Agent Controller related to the old version of libstdc ++. To solve it, you can run the following two commands:

 wget mirrors.kernel.org/ubuntu/pool/universe/g/gcc-2.95/libstdc++2.10-glibc2.2_2.95.4-24_i386.deb sudo dpkg --install libstdc++2.10-glibc2.2_2.95.4-24_i386.deb 

Although your mileage may vary depending on the version of the distribution, etc.

Then you should be able to successfully profile in Eclipse, I found that I do not even need to restart Eclipse.

+3
source share

Use the following if you are using Ubuntu 9.10 Karmic Koala 64 bit

 wget http://mirrors.kernel.org/ubuntu/pool/universe/g/gcc-3.3/libstdc++5_3.3.6-17ubuntu1_amd64.deb sudo dpkg -i libstdc++5_3.3.6-17ubuntu1_amd64.deb 

Running eclipse and viola ... you're in business :)

+3
source share

Just install the libstdc ++ 5 package from the repositories. No need to worry about manually extracting the deb file. (I am using Ubuntu 10.10 64 bit)

eg. enter the following in the terminal:

sudo apt-get install libstdc ++ 5

+2
source share

Problem: you need to install libstdC ++ - libc6.2-2.so.3. To solve this problem on the openSUSE "compat" installation package.

0
source share

All Articles