views:

2250

answers:

2

I imagine this is a pretty generic error. I cant seem to find any documentation on it.

I am simply attempting to run a java web project with jsp's and beans... using netbeans 6.8 on windows xp.

Thoughts? apologies for such a newb question.

-Kirb

+1  A: 

you need to know who occupied the port. run in cmd netstat -aon | find ":80" | find "LISTENING" you will see process id. go to Task Manager and drop it.

Andrey
>netstat -aon | find ":80" | find "LISTENING" TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 4028
Kirby
that's it. open Task Manager, then click View, Select columns... then tick PID. Then find process with PID = 4028, right click on it and then end process
Andrey
i killed the process and reran the project... and everythign repeated.. new pid and all. Same error msg. configuration issue?
Kirby
That solved the title of this question.. my issue is different i spose. ill enter a new question for that one.
Kirby
looks like Glassfish can't start/stop grasefully. Sorry, i am not very good in Glassfish itself
Andrey
A: 

you have to start glassfish manually. go to console and run this command.

c:glassfishv3\bin>asadmin start-domain

and run your proyect in netbeans.

carlos