首页 > 其他分享 >OGG MA - Not Able To Log InAdmin server ERROR: User name 'oggadmin' or password is incorre

OGG MA - Not Able To Log InAdmin server ERROR: User name 'oggadmin' or password is incorre

时间:2023-09-25 15:25:22浏览次数:45  
标签:incorrect MA 2571773.1 cwallet sso under server secureStore

ogg的密码文件可能会损坏需要修复就新建一个新的ogg微服务并且把密码文件考到问问题的地方进行覆盖,我觉得这个是一个bug The recommendation is to Create a dummy MA installation on the same server or different test server. Then copy the wallet [ cwallet.sso ] from this dummy installation into the existing server . You will find a wallet [cwallet.sso] under ServiceManger and another one under the deployments. For Service Manager: Swap out the cwallet.sso file with valid credentials under /var/lib/credential/secureStore/ For Deployment: Swap out the cwallet.sso file with valid credentials under /var/lib/credential/secureStore//secureStore Please change both.

标签:incorrect,MA,2571773.1,cwallet,sso,under,server,secureStore
From: https://www.cnblogs.com/dbahrz/p/17727979.html

相关文章

  • VMware ESXi 8.0U2 macOS Unlocker & OEM BIOS 标准版和厂商定制版
    VMwareESXi8.0U2macOSUnlocker&OEMBIOS标准版和厂商定制版ESXi8.0U2标准版,Dell(戴尔)、HPE(慧与)、Lenovo(联想)、Inspur(浪潮)等定制版请访问原文https://sysin.org/blog/vmware-esxi-8-u2-oem/,查看最新版。原创作品,转载请保留出处。作者主页:sysin.org2023-......
  • VMware ESXi 8.0U2 macOS Unlocker & OEM BIOS 集成网卡驱动和 NVMe 驱动 (集成驱动版
    VMwareESXi8.0U2macOSUnlocker&OEMBIOS集成网卡驱动和NVMe驱动(集成驱动版)发布ESXi8.0U2集成驱动版,在个人电脑上运行企业级工作负载请访问原文链接:https://sysin.org/blog/vmware-esxi-8-u2-sysin/,查看最新版。原创作品,转载请保留出处。作者主页:sysin.org发布......
  • semaphore互斥失败导致出core
    先看堆栈(gdb)bt#0bnet_neigh_event_thread(dummy=dummy@entry=0x0)at/vob/jenkins/workspace/_build_8.8.3/sdk/src/customer_smm/l3.c:1303#10x0000000002172cb0inthread_boot(ti_void=0x1c99dc10)at/vob_yukon/xzhou_streams/smm_88x/sdk/src/sal/core/unix......
  • CMake项目,将CMakeList.txt中的变量传递到代码中。
    有些时候,代码中可能需要获取CMakeList中的变量。常见的就是路径之类的。在CMake项目中,有一个参数可以将变量传递到代码中:CMakeList.txt中:#1.声明定义变量set(CMAKE_VAR"CMAKEMESSAGE123123")#2.传递变量#使用target_compile_definitions#将CMAKE_VAR变量赋值给MY_VAR......
  • ImageMagick 的安装及使用
    ImageMagick是一个用于处理图像的开源软件套件,它提供了许多命令行工具和库,可以用于创建、编辑、转换和处理图像。以下是在常见操作系统上安装和使用ImageMagick的一般步骤:在Linux上安装和使用ImageMagick安装ImageMagick:在大多数Linux发行版中,您可以使用包管理器来......
  • 【红外图像】利用红外图像处理技术对不同制冷剂充装的制冷系统进行性能评估(Matlab代码
    ✅作者简介:热爱科研的Matlab仿真开发者,修心和技术同步精进,matlab项目合作可私信。......
  • maven 问题之 no POM in this directory
    Windows上mvninstall:install-file报:noPOMinthisdirectory1、问题再现.2、解决方案方案一:.然后输入mvn命令即可mvninstall:install-file-DgroupId=com.rnny-DartifactId=rnny-tools-common-Dversion=1.0-SNAPSHOT-Dpackaging=jar-Dfile=./rnny-tools-commo......
  • Maven 出现问题及解决方案
    问题描述相信使用过Maven的同学,偶尔会遇到莫名其妙的问题,就是pom.xml添加的依赖,老是显示红色的波浪线,而且无论怎么刷新都无法消除。原因分析出现这种情况多半是由于网络传输原因(网络不稳定),没有将Maven的依赖的jar包下载完整而导致。jar包下载出现不完整,本地jar包仓......
  • Anaconda-CondaError: Downloaded bytes did not match Content-Length
    遇到如下情况:CondaError:DownloadedbytesdidnotmatchContent-Length,换源!condaconfig--addchannelshttps://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/condaconfig--addchannelshttps://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/#设置搜索时显......
  • HashMap源码解析
    HashMap简介HashMap是基于哈希表的Map接口的非同步实现。此实现提供所有可选的映射操作,并允许使用null值和null键,但最多只允许一条记录的键为null。此类不保证映射的顺序,特别是它不保证该顺序恒久不变。其内部通过单链表解决冲突问题,容量不足(超过了阀值)时,同样会自动增长。HashMap是......