Glassfish初体验之一

最近有时间,打算学习下glassfish,网上很多人推荐glassfish,似乎有大势所趋。
首先是安装。
网址:https://glassfish.dev.java.net/downloads/v3-prelude.html 这个是官网,但是速度太慢了,下面这个网站比较快:http://download.huihoo.com/glassfish/200811/08-160.html 推荐大家到这里下载。

下载后,将jar包解压缩,我是放到D盘根目录:D:\glassfishv3-prelude。
启动服务:
在CMD下输入: D:\glassfishv3-prelude\glassfish\bin> 在bin目录下执行:asadmin start-domain 这个命令是启动默认的域 domain1,domain1位置在D:\glassfishv3-prelude\glassfish\domains\domain1下。
如果启动成功则会出现下面信息:
Name of the domain started: [domain1] and
its location: [D:\glassfishv3-prelude\glassfish\domains\domain1].
Admin port for the domain: [4848].

管理控制台的监听端口为4848,所以我们进入管理界面:http://localhost:4848/
默认是没有用户跟密码的,如果需要则默认的用户名:anonymous 密码为空。

停止域服务器在CMD下D:\glassfishv3-prelude\glassfish\bin> 下输入 asadmin stop-domain domain1
当执行上述命令后会显示下面信息:
Waiting for the domain to stop .........................
Command stop-domain executed successfully.
说明域服务器成功停止。

你可能感兴趣的:(html,.net,Glassfish)