CMDTUX_CAT:822: ERROR: No BBL available, cannot boot

2024-04-13 16:18

本文主要是介绍CMDTUX_CAT:822: ERROR: No BBL available, cannot boot,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

CMDTUX_CAT:822: ERROR: No BBL available, cannot boot----TUXEDO 启动问题解决

在启动tuxedo服务是发生以下问题,服务不能启动。

hnjf8:/bea/tuxedo/udataobj> tmboot -y
Booting all admin and server processes in /bea/tuxedo/tibs_face/tuxconfig
INFO: BEA Tuxedo, Version 8.1, 64-bit, Patch Level 342
INFO: Serial #: 650522264138-1365292153759, Expiration NONE, Maxusers 80
INFO: Licensed to: China Telecom Group Hainan Corporation

Booting admin processes ...

exec BBL -A :
        CMDTUX_CAT:822: ERROR: No BBLavailable, cannot boot

tmboot: WARN: No BBL available on sitetibs_face.
        Will not attempt to boot serverprocesses on that site.


Booting server processes ...

0 processes started

 

 

ULOG日志

153048.hnjf8!BBL.11608.1.0: 02-26-2011:Tuxedo Version 8.1, 64-bit, Patch Level 342
153048.hnjf8!BBL.11608.1.0: LIBTUX_CAT:355: ERROR: No BBL on this machine
153048.hnjf8!BBL.11608.1.0: LIBTUX_CAT:248: ERROR: System init function failed,Uunixerr =
 
153048.hnjf8!tmboot.11605.1.-2: 02-26-2011: Tuxedo Version 8.1, 64-bit
153048.hnjf8!tmboot.11605.1.-2: WARN: No BBL available on site tibs_face.
        Will not attempt to boot serverprocesses on that site.

这个问题困扰了一天,查询了很多资料,才知道是ipc资源的问题。

使用下面的脚本清理下IPC资源,便可以解决问题。

ipcs|grep $LOGNAME|awk '{print "ipcrm-"$1,$2}'>a.sh;sh a.sh; rm a.sh

TMADMIN_CAT:566

Command: crdl -b 100-z/home/tuxedo/tuxedo11gR1/samples/atmi/caizy/TLOG

Command: crlog -m simple

crlog -m (MASTER 后面的字段)

100比ubb大一些

 

第二种错误

192352.bridgesuse!BBL.9837.3079874224.0:08-07-2013: Tuxedo Version 11.1.1.2.0, 32-bit, Patch Level (none)

192352.bridgesuse!BBL.9837.3079874224.0:LIBTUX_CAT:350: ERROR: Configuration file parameters do not match existingbulletin board.

192352.bridgesuse!BBL.9837.3079874224.0:LIBTUX_CAT:248: ERROR: System init function failed, Uunixerr =

192352.bridgesuse!tmboot.9836.3080804016.-2:08-07-2013: Tuxedo Version 11.1.1.2.0, 32-bit

192352.bridgesuse!tmboot.9836.3080804016.-2:CMDTUX_CAT:825: ERROR: Process BBL at simple failed with /T tperrno (TPESYSTEM- internal system error)

192352.bridgesuse!tmboot.9836.3080804016.-2:WARN: No BBL available on site simple.

       Will not attempt to boot server processes on that site.

 

Ubbsimple配置文件RESOURCES中IPCKEY重复导致,修改IPCKEY

这篇关于CMDTUX_CAT:822: ERROR: No BBL available, cannot boot的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/900613

相关文章

Spring Boot整合Redis注解实现增删改查功能(Redis注解使用)

《SpringBoot整合Redis注解实现增删改查功能(Redis注解使用)》文章介绍了如何使用SpringBoot整合Redis注解实现增删改查功能,包括配置、实体类、Repository、Se... 目录配置Redis连接定义实体类创建Repository接口增删改查操作示例插入数据查询数据删除数据更

idea+spring boot创建项目的搭建全过程

《idea+springboot创建项目的搭建全过程》SpringBoot是Spring社区发布的一个开源项目,旨在帮助开发者快速并且更简单的构建项目,:本文主要介绍idea+springb... 目录一.idea四种搭建方式1.Javaidea命名规范2JavaWebTomcat的安装一.明确tomcat

Spring Boot分层架构详解之从Controller到Service再到Mapper的完整流程(用户管理系统为例)

《SpringBoot分层架构详解之从Controller到Service再到Mapper的完整流程(用户管理系统为例)》本文将以一个实际案例(用户管理系统)为例,详细解析SpringBoot中Co... 目录引言:为什么学习Spring Boot分层架构?第一部分:Spring Boot的整体架构1.1

Spring Boot中获取IOC容器的多种方式

《SpringBoot中获取IOC容器的多种方式》本文主要介绍了SpringBoot中获取IOC容器的多种方式,包括直接注入、实现ApplicationContextAware接口、通过Spring... 目录1. 直接注入ApplicationContext2. 实现ApplicationContextA

基于 Cursor 开发 Spring Boot 项目详细攻略

《基于Cursor开发SpringBoot项目详细攻略》Cursor是集成GPT4、Claude3.5等LLM的VSCode类AI编程工具,支持SpringBoot项目开发全流程,涵盖环境配... 目录cursor是什么?基于 Cursor 开发 Spring Boot 项目完整指南1. 环境准备2. 创建

解决Nginx启动报错Job for nginx.service failed because the control process exited with error code问题

《解决Nginx启动报错Jobfornginx.servicefailedbecausethecontrolprocessexitedwitherrorcode问题》Nginx启... 目录一、报错如下二、解决原因三、解决方式总结一、报错如下Job for nginx.service failed bec

Spring Boot 整合 SSE(Server-Sent Events)实战案例(全网最全)

《SpringBoot整合SSE(Server-SentEvents)实战案例(全网最全)》本文通过实战案例讲解SpringBoot整合SSE技术,涵盖实现原理、代码配置、异常处理及前端交互,... 目录Spring Boot 整合 SSE(Server-Sent Events)1、简述SSE与其他技术的对

MyBatis-Plus 与 Spring Boot 集成原理实战示例

《MyBatis-Plus与SpringBoot集成原理实战示例》MyBatis-Plus通过自动配置与核心组件集成SpringBoot实现零配置,提供分页、逻辑删除等插件化功能,增强MyBa... 目录 一、MyBATis-Plus 简介 二、集成方式(Spring Boot)1. 引入依赖 三、核心机制

Spring Boot项目如何使用外部application.yml配置文件启动JAR包

《SpringBoot项目如何使用外部application.yml配置文件启动JAR包》文章介绍了SpringBoot项目通过指定外部application.yml配置文件启动JAR包的方法,包括... 目录Spring Boot项目中使用外部application.yml配置文件启动JAR包一、基本原理

在 Spring Boot 中连接 MySQL 数据库的详细步骤

《在SpringBoot中连接MySQL数据库的详细步骤》本文介绍了SpringBoot连接MySQL数据库的流程,添加依赖、配置连接信息、创建实体类与仓库接口,通过自动配置实现数据库操作,... 目录一、添加依赖二、配置数据库连接三、创建实体类四、创建仓库接口五、创建服务类六、创建控制器七、运行应用程序八