user896692
user896692

Reputation: 2371

Glassfish starting up

I tried to start with JSF programming today, working with Netbeans 7.0.1. Now, I made my first application with the help of a tutorial, but my glassfish server does not start.

If I click in Netbeans at Servers on Start (See here), nothing happens. If I run my application, it tells me Starting GlassFish Server 3.1, but also after about ten minutes, nothing happens.

So what can I do to solve this problem? I also tried to install netbeans once again, but it doesn´t helped.

Upvotes: 0

Views: 1328

Answers (1)

Matt Handy
Matt Handy

Reputation: 30025

I assume that a Glassfish server is installed on your system, otherwise Netbeans wouldn't show the GF node as shown in your picture.

Try to start Glassfish from the command line. Find your GF installation directory. There is a subfolder bin.

Inside this folder there is the asadmin tool. Try the following command:

asadmin start-domain

This will start GF's standard domain domain1. It should end up with something like "Domain started successfully". If not, we could look further.

Upvotes: 1

Related Questions