weblogic启动服务器Authentication denied: Boot identity not valid
新分配的测试服务器,已经安装好了weblogic,使用命令nohub ./startWeblogic.sh启动weblogic没有问题
登录控制台,点击环境-服务器-新建,一步步完成后,点击部署、选择路径、选择服务器,使用脚本启动该新建的节点服务器
报如下错误,新接手的服务器,第一次启动自己创建的节点服务器,在这之前不知道做过什么操作
weblogic.security.SecurityInitializationException:Authentication denied: Boot identity not valid.The user name or password or both from the boot
identity file (boot.properties) is not valid. The bootidentity may have bean changed since the boot identity file was created. Please edit and update
the identity file with the proper values of username amd password. The first time the update boot identity file is used to start the sever, these new
values are encrypted.

看字面意思是boot.properties(weblogic/Oracle/Middleware/user_projects/domain/base_name/servers/AdminServer/security/boot.properties)里保存的用户名密码验证不通过,但是 AdminServer 程序正常启动,而自己建的节点服务就有问题,很奇怪。
于是,把 AdminServer 的这个文件,复制到自己建的节点服务器下面,再启动也不行。
解决办法是:
1、把AdminServer停掉,即把weblogic停掉
2、然后修改boot.properties文件,把用户名密码的原有值删掉(加密的),写成明文的(再启动时会自动加密)。
3、然后再启动weblogic即启动AdminServer程序(怎么启动?nohub ./startWeblogic.sh & tail -f nohup.out 后台启动weblogic并查看启动日志。)
4、第3步成功后,把这个boot.properties文件的内容复制到自己建的节点服务的对应目录的boot.properties中,然后启动自己的节点服务即可。
尝试过的方法
在解决这个问题的过程中也是花费了很长时间,百度了很多解决办法也都是不行,和我使用的方法类似。
总结起来有:
第1种:在控制台里点【安全领域】-【点自己的realm】-【用户和组】-【点击自己的用户】-【点击口令】,重新输入用户名密码保存。我试了不行
第2种:把weblogic/Oracle/Middleware/user_projects/domain/base_name/servers/AdminServer/security/下的文件和weblogic/Oracle/Middleware/user_projects/domain/base_name/servers/AdminServer//data/ldap目录都删了,然后重启。这个我试了也不行,直接导致我weblogic起不来,所以删除之前做好备份
第3种:在第2种基础上,把所有servers下的节点服务对应的两个文件夹下的都要删除。这个更不行
weblogic启动服务器Authentication denied: Boot identity not valid的更多相关文章
- Myeclipse启动WebLogic 总是报账号密码无效<Authentication denied: Boot identity not valid
在MyEclipse下配置了Weblogic 11后,每次启动从报错: Critical> 看了下描述,是用户名及密码什么的问题,我想起来,配置Weblogic 的域的时候将密码改成了12345 ...
- linux下weblogic11g成功安装后,启动报错Getting boot identity from user
<2015-7-1 下午05时46分33秒 CST> <Info> <Management> <BEA-141107> <Version: Web ...
- Weblogic启动服务时候提示:Authentication for user weblogic denied
一.问题描述: 在Linux系统上对weblogic10.3.6搭建完成后,启动控制台没问题,但是新建的服务怎么都起不来,而且在服务的目录下也有了认证文件boot.properties文件,也确定用户 ...
- weblogic管理服务器密码相关
安全控制weblogic,我们可以为weblogic Administrator服务器设置密码 1.administrator服务器或受管服务器启动时,需要认证,方法有三种: (1)command启动 ...
- weblogic启动节点服务java.lang.ClassCastException:com.octestring.vde.backend.BackendRoot cannot be cast to com.octestring.vde.backend.standard.BackendStandard类型转换异常
weblogic启动节点服务器报错,java.lang.ClassCastException:com.octestring.vde.backend.BackendRoot cannot be cast ...
- 在控制台启动服务器时出现:对于服务器soa1_wls, 与计算机oim1相关联的节点管理器无法访问。
问题:在控制台启动服务器时出现:对于服务器soa1_wls, 与计算机oim1相关联的节点管理器无法访问.原因:nodemanager没有启起来解决方法: 一.对于managedServer于admi ...
- weblogic启动错误
一 .weblogic启动错误:java.lang.AccessertionError:java.lang.reflect.InvocationTargetException <unable t ...
- weblogic启动报错
重启了一次linux服务器后,weblogic启动莫名报错,查看日志发现说部署的项目有个bean类无法加载, 1.然后手动删除 已经部署的项目,先在 domais/servers/AdminServe ...
- weblogic的安装和注意的问题以及在idea怎么用weblogic启动一个web服务
第一步下载weblogic: 大家可以通过我的网盘下载weblogic,地址如下 https://pan.baidu.com/s/1NkZ_Gd-xfim5YGcdtjYoUw 第二步安装weblog ...
随机推荐
- 小白的springboot之路(一)、环境搭建、第一个实例
小白的springboot之路(一).环境搭建.第一个实例 0- 前言 Spring boot + spring cloud + vue 的微服务架构技术栈,那简直是爽得不要不要的,怎么爽法,自行度娘 ...
- react-starter-projects
react-starter-projects These are repositories that you copy and modify to create your own React app. ...
- k 近邻算法解决字体反爬手段|效果非常好
字体反爬,是一种利用 CSS 特性和浏览器渲染规则实现的反爬虫手段.其高明之处在于,就算借助(Selenium 套件.Puppeteer 和 Splash)等渲染工具也无法拿到真实的文字内容. 这种反 ...
- UIImageView与基本动画gif
UIImageView 作用:[用来进行图片展示] UIImageView UIImageView初始化 initWithImage:如果设置frame,图片的size就是 imageView的siz ...
- ES6——async函数
目录 1.async 函数是 Generator 函数的语法糖. 2.async函数对 Generator 函数的改进,体现在以下四点. 3.基本用法 一个获取股票报价的函数 指定多少毫秒后输出一个值 ...
- CoderForces999F-Cards and Joy
F. Cards and Joy time limit per test 2 seconds memory limit per test 256 megabytes input standard in ...
- 基于icamera usb2.0的视频采集系统之mt9m001c12stc测评
基于usb2.0的视频采集系统之mt9m001c12stc测评 因为该sensor不带isp,所以不支持白平衡,默认图像彩色颜色会和实际偏离,演示如下 颜色偏绿,所以降低该通道的增益,或者提供其他通道 ...
- layui扩展组件,下拉树多选
项目介绍 项目中需要用到下拉树多选功能,找到两个相关组件moretop-layui-select-ext和wujiawei0926-treeselect,但是moretop-layui-selec ...
- CSS——overflow的参数以及使用
学习网站:https://developer.mozilla.org/zh-CN/docs/Web/CSS/overflow
- 201871010119-帖佼佼《面向对象程序设计(java)》第十六周学习总结
博文正文开头格式:(2分) 项目 内容 这个作业属于哪个课程 https://www.cnblogs.com/nwnu-daizh/ 这个作业的要求在哪里 https://www.cnblogs.co ...