在linux环境下创建weblogic域注意事项

在linux as4上安装完weblogic10.0以后,然后在/home/weblogic/bea/wlserver_10.0/common/bin 目录下执行    ./config.sh -mode=console 开始创建域,在这个过程中有两点要说明


1:创建域的过程中,需要将监听的地址由原来的 localhost 改为linux主机的ip  ,而linux主机的 /etc/hosts 主机配置文件不变,这样启动域以后,可以通过
 http://192.168.1.241:7001/console/ 登陆到管理终端


2:创建域的过程中,如果监听地址 localhost 保持不变,那么就需要修改linux主机上的 /etc/hosts 文件,修改之后如下:

[root@sp ~]# more /etc/hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
192.168.1.241   sp.kk.com sp localhost.localdomain localhost

其实就是将原来的127.0.0.1 修改为了  192.168.1.241 ,这样启动域以后,可以通过
 http://192.168.1.241:7001/console/ 登陆到管理终端

你可能感兴趣的:(weblogic)