up vote 9 down vote favorite
share [g+] share [fb]

Staring JBoss server from within Eclipse Ganymede gives me the following problem: "Server JBoss v4.0 at localhost was unable to start within 120 seconds. If the server requires more time, try increasing the timeout in the server editor."

The console shows JBoss has started in so and so minutes but soon after, there is a pop up if the above message. I can also start the JBoss externally.

link|improve this question
2  
The other comments are right, JUST DOUBLE CLICK SERVER in the SERVER VIEW.... – Salvin Francis Mar 21 '11 at 10:17
feedback

12 Answers

I had a similar problem, but it was with a Tomcat 5.5 server. The startup time was quite important, so I got this error.

To solve this problem, I did that steps: In Preferences, Server, I changed the property "Server timeout delay" to "Unlimited".

Edit:

For Eclipse Ganymede, you must do that: In the server view, double-click on your server JBoss. In the overview, you have a "Timeouts" panel (by default, it is collapsed). You can define the timeouts for server start and stop operations.

link|improve this answer
Well...I have tried doing that already...increasing the server timeout from 50 sec to 2 min made no difference... BTW...could it be a problem that I use jdk 1.5 with JBoss 4.0.1 – Atlantis Nov 19 '08 at 10:09
6  
That double click is extremely well hidden :( – Thorbjørn Ravn Andersen Mar 17 '10 at 17:46
feedback

Well, I had a similar problem. It turned out that eclipse's server default port was set to 8080 while my JBoss was working from 8180. By changing the server's configuration in eclipse (double-click on the server and edit server property), it worked.

link|improve this answer
I had the same issue and this was the resolution for me. When I created a new JBoss server within Ecilpse, it asked me what Port to use, so I chose 8081. However, that doesn't actually affect what Port JBoss will start on, JBoss still starts on 8080. So, it was checking for the server to start on 8081 which never happened, but JBoss did actually successfully start on 8080. Silly mistake. – JasonStoltz Dec 23 '10 at 20:58
same here: for me the problem was that port 8080 was entered in config, but it was actually running on port 80 – räph Oct 18 '11 at 12:57
feedback

I've seen this behavior when I've changed JBoss to run via SSL on port 8443 instead of unencrypted on port 8080. It is my theory that the Eclipse plugin is checking on port 8080 to confirm that JBoss has started, and that this check is hardcoded and does not respect changes you make to the configuration to specify that the server runs on a different port.

Our workaround is to start JBoss from the debug pulldown menu, which apparently disables the timeout.

link|improve this answer
feedback

Increasing the timeout doesn't solve the problem. Eclipse never recognizes that the server has started (not sure if that's a big deal), just irritated me. I had this problem for weeks and finally figured out that (at least for me) the host name and address had to be identical. I had hostname:localhost; address"127.0.0.1" and it would not work. I changed both to 127.0.0.1 and voila!

link|improve this answer
feedback

In my Eclipse with Jboss Tools, that ocurred too, I change the "Host name", on General information of JbossServer, from my machine name to 127.0.0.1 .

Than works fine...

Tks for all !

link|improve this answer
feedback

You may check whether you are running Jboss version 4.0.4 or version 4.2.2. You might get this error when you have installed Jboss 4.2.2 but configured Jboss 4.0.4 in Eclipse.

link|improve this answer
feedback
  1. I am running v4.0.1 and that is what shows up in my server listing in Eclipse too

  2. This is Eclipse Ganymede v3.4.0 and I don't see a "Server timeout delay" property in Windows->Preferences->Servers

Thanks

link|improve this answer
Indeed, the timeout option has been moved in another place in Ganymede. I've edited my post for Ganymede. – romaintaz Nov 18 '08 at 13:14
feedback

Double click on the jboss server icon in the server view ...a window pops up with "Timeout" collapsed..click on arrow and increase start time.

link|improve this answer
feedback

Are yoy runing on Linux? If so, check if jBoss has write privileges over /tmp ...

I had the same problem, and I fixed creating a temp directory with RW privileges to User, Group and others, and adding this line to eclipse.ini

-Djava.io.tmpdir=yourTempDirectory

where your temp directory is the absolute addres of the Temp directory that you created.

link|improve this answer
feedback

I've come upon the same problem and found the explanation. For Eclipse, JBoss is expected to support the jboss-web service (tomcat.sar) which implies an HTTP port to be opened at the end of the process. In my case, as this service is disabled, no HTTP port is opened when the server is running...

Solution: simply double click on the jboss server in the Servers panel and copy the JNDI port to the Port field, in Server Properties section. This makes it.

This way, it is no more necessary to change host name to 127.0.0.1, you may let it be what you want (e.g. localhost is the default).

link|improve this answer
feedback

Yes I had similar problem Jboss could not start from Eclipse Galileo within default 50 secs so just changed server startup time by double clicking Jboss server icon in Server window near console & error log (NOT at windows->preferences->server). It opens server editor and then increased the start up time to 300 It worked then. !!!

link|improve this answer
feedback

You have to change ports defined in JBoss configuration panel. I have used -Djboss.service.binding.set=ports-01 to upgrade port numbers - and forgot to change Eclipse/JBoss configuration - and Eclipse failed to notice JBoss is already running.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown