盛沈静 发表于 2016-1-22 10:13:05

linux 启动weblogic

  --查看进程ps -ef|grep weblogic
  --杀死进程kill -9 17911
  
  --进入xxx缓存目录cd /bea/user_projects/domains/xxx/servers/AdminServer/tmp
  --清空xxx缓存rm -rf _WL_user/
  --进入xxx-domainscd /bea/user_projects/domains/xxx/
  --启动xxx nohup ./startWebLogic.sh&
  
  --查看日志tail -f nohup.out
  --查看日志(最后30行)tail -30 nohup.out
  --查看命令历史history
页: [1]
查看完整版本: linux 启动weblogic