2

I have a EC2 instance on AWS running Ubuntu 13.10 and I need to install Glassfish 4 on it. I have found several tutorials on how to install Glassfish 3.x on it, including this one and I tried to just do that tutorial substituting in glassfish 4 where appropriate, however, when I get to

/etc/init.d/glassfish start

I get a command not found error. What else do I need to do other than just substitute glassfish_v3/glassfishv3 with glassfish4?

Or, does anyone have a tutorial that is specific for glassfish4 on EC2?

Kyle
  • 123
  • 1
  • 4

1 Answers1

2

Type as below

sudo service glassfish start 

Alternative: If you like GUI ,

sudo apt-get install bum

can help you to manage GUI way.

Raja G
  • 100,643
  • 105
  • 254
  • 328
  • 1
    I have been working with jetty all year using this command and I didn't think of this at all... Thanks – Kyle Nov 29 '13 at 01:36