LIBTUX_CAT:681: ERROR: Failure to create message queue

I am getting the following error while starting PeopleSoft Application server for demo data base on Oracle Enterprise Linux 5.5 64 bit.
Can someone please help me what am I doing wrong here?
075417.localhost.localdomain!PSANALYTICSRV.4065.3909714272.0: LIBTUX_CAT:262: INFO: Standard main starting
075418.localhost.localdomain!PSRENSRV.4072.491399232.-2: 11-19-2010: Tuxedo Version 10.3.0.0, 64-bit
075418.localhost.localdomain!PSRENSRV.4072.491399232.-2: LIBTUX_CAT:681: ERROR: Failure to create message queue
075418.localhost.localdomain!PSRENSRV.4072.491399232.-2: LIBTUX_CAT:248: ERROR: System init function failed, Uunixerr = : msgget: No such file or directory
075418.localhost.localdomain!tmboot.4023.3569636960.-2: CMDTUX_CAT:825: ERROR: Process PSRENSRV at localhost.localdomain failed with /T tperrno (TPEOS - operating system error)
075418.localhost.localdomain!tmboot.4023.3569636960.-2: tmboot: CMDTUX_CAT:827: ERROR: Fatal error encountered; initiating user error handler
075422.localhost.localdomain!BBL.4020.2558671968.0: CMDTUX_CAT:26: INFO: The BBL is exiting system
075425.localhost.localdomain!PSADMIN.4014: End boot attempt on domain fdmo91

Never mind, I changed the kernel.msgmni to 1024, rebooted the server and then it started just fine.

Similar Messages

  • LIBTUX_CAT:681Failure ro create message queue

    Hi,
    We get this error when we start more than 3 Appserver.
    (Solaris 8 + Oracle)
    Any information would be appreciated. Thanks.
    It's my /etc/system file...
    set maxusers=80
    set shmsys:shminfo_shmmax=8589934590
    set shmsys:shminfo_shmmni=100
    set shmsys:shminfo_shmseg=15
    set semsys:seminfo_semume=500
    set semsys:seminfo_semmns=500
    set semsys:seminfo_semmnu=500
    set semsys:seminfo_semmsl=70
    set semsys:seminfo_semmap=500
    set semsys:seminfo_semmni=32
    set semsys:seminfo_semopm=100
    set semsys:seminfo_semvmx=32767
    set semsys:seminfo_msgmap=780
    set semsys:seminfo_msgmax=4096
    set semsys:seminfo_msgmnb=8192
    set semsys:seminfo_msgmni=500
    set semsys:seminfo_msgssz=8
    set semsys:seminfo_msgtql=40
    set semsys:seminfo_msgseg=1024

    And just to add to $0.02,
    Oracle doesn't use message queues, only shared memory and semaphores. Here is the
    /etc/system I use on my Solaris 7 system for development work:
    * IPC Tunables - Shared memory
    * max shared memory segment size (SHMMAX)
    set shmsys:shminfo_shmmax=4294967295
    * min shared memory segment size (SHMMIN)
    set shmsys:shminfo_shmmin=1
    * max attached shm segments per process (SHMSEG)
    set shmsys:shminfo_shmseg=100
    * shared memory identifiers (SHMMNI)
    set shmsys:shminfo_shmmni=100
    * IPC Tunables - Semaphores
    * semaphores in system (SEMMNS)
    set semsys:seminfo_semmns=4096
    * semaphore identifiers (SEMMNI)
    set semsys:seminfo_semmni=128
    * entries in semaphore map (SEMMAP)
    set semsys:seminfo_semmap=4096
    * undo structures in system (SEMMNU)
    set semsys:seminfo_semmnu=4096
    * max semaphores per id (SEMMSL)
    set semsys:seminfo_semmsl=2048
    * max operations per semop call (SEMOPM)
    set semsys:seminfo_semopm=256
    * max undo entries per process (SEMUME)
    set semsys:seminfo_semume=1024
    * semaphore maximum value (SEMVMX)
    set semsys:seminfo_semvmx=32767
    * IPC Tunables - Messages - For Tuxedo
    * entries in msg map (MSGMAP)
    * set msgsys:msginfo_msgmap=2048
    * max message size (MSGMAX)
    * set msgsys:msginfo_msgmax=262144
    * max bytes on queue (MSGMNB)
    * set msgsys:msginfo_msgmnb=262144
    * message queue identifiers (MSGMNI)
    * set msgsys:msginfo_msgmni=1024
    * message segment size (MSGSSZ)
    * set msgsys:msginfo_msgssz=1024
    * system message headers (MSGTQL)
    * set msgsys:msginfo_msgtql=2048
    * message segments (MSGSEG)
    * set msgsys:msginfo_msgseg=2048
    * Workstation Settings
    * IPC Tunables - Messages - For Tuxedo
    * entries in msg map (MSGMAP)
    set msgsys:msginfo_msgmap=2048
    * max message size (MSGMAX)
    set msgsys:msginfo_msgmax=65535
    * max bytes on queue (MSGMNB)
    set msgsys:msginfo_msgmnb=512000
    * message queue identifiers (MSGMNI)
    set msgsys:msginfo_msgmni=1024
    * message segment size (MSGSSZ)
    set msgsys:msginfo_msgssz=1024
    * system message headers (MSGTQL)
    set msgsys:msginfo_msgtql=2048
    * message segments (MSGSEG)
    set msgsys:msginfo_msgseg=2048
    Mervin Calverley wrote:
    Fabrice:
    The error implies that msgmni is set too low. msgmni is the total number of message
    queues allowed in the system. Getting an error here implies that oracle or some
    other process is consuming them.
    For Tuxedo Classes we use the listed values as minimum for the kernel parameters
    to perform the labs. In these classes the machine is only running Tuxedo. This
    means the values are probably lower than those required by a production system or
    one hosting Oracle as well as Tuxedo.
    Message Queue Parameters:
    MSGMAP 800
    MSGMAX 32769
    MSGMNB 42000
    MSGMNI 400
    MSGSSZ 64
    MSGTQL 400
    MSGSEG 2048
    Semaphore Parameters:
    SEMMAP 800
    SEMMNI 800
    SEMMNS 800
    SEMMNU 800
    SEMMSL 800
    SEMOPM 64
    SEMUME 64
    SEMVMX 32769
    SEMAEM 16384
    Shared Memory Parameters:
    SHMMAX 2097152
    SHMMIN 1
    SHMMNI 100
    SHMSEG 64
    SHMALL 2048
    **Note: Some UNIX kernels do not support all of the above parameters or have additional
    parameters not listed.
    Hope this helps!
    mervin
    "Fabrice Poulard" <[email protected]> wrote:
    Hi,
    We get this error when we start more than 3 Appserver.
    (Solaris 8 + Oracle)
    Any information would be appreciated. Thanks.
    It's my /etc/system file...
    set maxusers=80
    set shmsys:shminfo_shmmax=8589934590
    set shmsys:shminfo_shmmni=100
    set shmsys:shminfo_shmseg=15
    set semsys:seminfo_semume=500
    set semsys:seminfo_semmns=500
    set semsys:seminfo_semmnu=500
    set semsys:seminfo_semmsl=70
    set semsys:seminfo_semmap=500
    set semsys:seminfo_semmni=32
    set semsys:seminfo_semopm=100
    set semsys:seminfo_semvmx=32767
    set semsys:seminfo_msgmap=780
    set semsys:seminfo_msgmax=4096
    set semsys:seminfo_msgmnb=8192
    set semsys:seminfo_msgmni=500
    set semsys:seminfo_msgssz=8
    set semsys:seminfo_msgtql=40
    set semsys:seminfo_msgseg=1024
    Brian Douglass
    Transaction Processing Solutions, Inc.
    8555 W. Sahara
    Suite 112
    Las Vegas, NV 89117
    Voice: 702-254-5485
    Fax: 702-254-9449
    e-mail: [email protected]

  • Error Occured While Creating message class 8II In SapNote 1486147

    Dear All
    I applied SapNote 1486147 but at the time of creating message class 8II
    It shows error like this
    Object MSAG 8II is in reserved name range for sap partner
    Any body help on this.
    Edited by: chandrap on Feb 24, 2011 2:08 PM

    Hi Yasir,
    remove the jaxb.jar from the WEB_INF/lib and move
    them to your SUNWappserv/lib/endorsed - dir, together
    with the following jars:
    dom.jar jaxb-api.jar jaxb-impl.jar jaxb-libs.jar
    jaxb-xjc.jar namespace.jar relaxngDatatype.jar
    r xalan.jar
    xercesImpl.jar xsdlib.jar
    (restart the deploytool if used)
    This should work,
    Bas van OudenaardeHi Bas
    Thank you for the very useful tip but I don't seem to have a SUNWappserv/lib/endorsed - directory inside my .war archive , could you please advise on this issue

  • Error while dropping/creating new queue table

    Hi,
    I am trying to modify an existing AQ setup. In the process, I had to remove a queue and redirect all its subscriptions to another queue.
    I get an oracle "sequence does not exist" while trying to drop the queue table. The sequence of operations that I am carrying out is:
    disable propagation schedule
    unschedule propagation
    stop queue
    drop queue
    drop queue table
    The error occurs when the drop statement is executed.
    I tried restoring the existing configuration, but got the same error message while trying to add a subscription.
    Could you help me with this problem? What am I missing here?
    Thanks,
    Anupama

    In what version of Oracle?
    I see a couple of problems assuming you are working with a currently supported version:
    1. Never grant CONNECT to anyone: Ever. Grant CREATE SESSION.
    2. GRANT CREATE TABLE to AQ;
    Go to Morgan's Library at www.psoug.org and look at AQ Demo 1. You should have no problem cutting and pasting your way to where you are trying to go.

  • CMDTUX_CAT:1098: ERROR: Can't create queue

    I have Tuxedo 8.1 installed on win 2003 32 bit box.
    Whenever I am trying tmboot -y getting the error message as below:--
    CMDTUX_CAT:1098: ERROR: Can't create queue
    In wslog file it shows as :
    LIBWSC_CAT:1037: ERROR: Network message receive failure
    LIBWSC_CAT:1059: ERROR: WSL returns error on connection request
    LIBWSC_CAT:1055: ERROR: Unable to establish WSL connection
    LIBWSC_CAT:1027: ERROR: Unable to connect to WSH
    LIBWSC_CAT:1020: ERROR: Unable to obtain authentication level
    I know some wrong information in my ubbconfig file, but not able to find.
    My ubbconfig file is :
    *RESOURCES
    IPCKEY 66490
    UID 0
    GID 0
    PERM 0666
    MAXACCESSERS 50
    MAXSERVERS 50
    MAXSERVICES 50
    MASTER "USTR-VM-0928"
    SCANUNIT 10
    BBLQUERY 180
    BLOCKTIME 30
    SANITYSCAN 30
    MODEL SHM
    LDBAL Y
    NOTIFY SIGNAL
    USIGNAL SIGUSR1
    TAGENT "TAGENT"
    *MACHINES
    "USTR-VM-0928" LMID= "USTR-VM-0928"
    TYPE="i386NT"
    MAXWSCLIENTS=10
    TUXDIR="c:\bea\tuxedo8.1"
    APPDIR="c:\oltp"
    ENVFILE="c:\oltp\envfile"
    TLOGDEVICE="c:\oltp\tlog"
    TLOGNAME=tlog
    TUXCONFIG="c:\oltp\tuxconfig"
    ULOGPFX="c:\oltp\ulog"
    *GROUPS
    K_GROUP1 GRPNO=1 LMID="USTR-VM-0928"
    K_GROUP2 GRPNO=2 LMID="USTR-VM-0928"
    K_GROUP3 GRPNO=3 LMID="USTR-VM-0928"
    *SERVERS
    DEFAULT: RESTART=Y MAXGEN=5 REPLYQ=Y
    WSL SRVGRP=K_GROUP3 SRVID=3 CLOPT= "-A -- -n //192.63.222.176:3050"
    #"-A -- -n0x00021e45c03fdeb0 -w C:\bea\tuxedo8.1\bin\WSH -m 1 "
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=1 CONV=Y
    CLOPT="-- -sA -ljdoe,7,jdoe,tpscon"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=2
    CLOPT="-- -sA -ljdoe,7,jdoe,unsolmsg"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=3
    CLOPT="-- -sA -ljdoe,7,jdoe,bromsg"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=11 CLOPT=
    "-s MPR_TBL:map_server -- -sA -ljdoe,7,jdoe,mapsvr,1"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=12 CLOPT=
    "-s MPR_COL:map_server -- -sA -ljdoe,7,jdoe,mapsvr,2"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=13 CLOPT=
    "-s MPR_SQL:map_server -- -sA -ljdoe,7,jdoe,mapsvr,3"
    *SERVICES
    DEFAULT: PRIO=50 LOAD=50 AUTOTRAN=N
    map_server
    WSH
    Service: TListen8.1 (3050) is running.
    Please help me regarding this.
    Rajeev

    ULOG contains the following:--
    024412.USTR-VM-0928!tmboot.4000.2672.-2: 02-17-2011: Tuxedo Version 8.1 32-bit Windows.
    024412.USTR-VM-0928!tmboot.4000.2672.-2: LIBTUX_CAT:681: ERROR: Failure to create message queue
    024412.USTR-VM-0928!tmboot.4000.2672.-2: FATAL: internal error: CMDTUX_CAT:1098: ERROR: Can't create queue
    024529.USTR-VM-0928!tmloadcf.1248.3360.-2: 02-17-2011: Tuxedo Version 8.1 32-bit Windows.
    024529.USTR-VM-0928!tmloadcf.1248.3360.-2: CMDTUX_CAT:879: INFO: A new file system has been created. (size = 880 512-byte blocks)
    024530.USTR-VM-0928!tmloadcf.1248.3360.-2: CMDTUX_CAT:871: INFO: TUXCONFIG file c:\oltp\tuxconfig has been created
    024548.USTR-VM-0928!tmboot.3584.2572.-2: 02-17-2011: Tuxedo Version 8.1 32-bit Windows.
    024548.USTR-VM-0928!tmboot.3584.2572.-2: LIBTUX_CAT:681: ERROR: Failure to create message queue
    024548.USTR-VM-0928!tmboot.3584.2572.-2: FATAL: internal error: CMDTUX_CAT:1098: ERROR: Can't create queue
    071016.USTR-VM-0928!tmloadcf.132.3896.-2: 02-17-2011: Tuxedo Version 8.1 32-bit Windows.
    071016.USTR-VM-0928!tmloadcf.132.3896.-2: CMDTUX_CAT:879: INFO: A new file system has been created. (size = 880 512-byte blocks)
    071016.USTR-VM-0928!tmloadcf.132.3896.-2: CMDTUX_CAT:871: INFO: TUXCONFIG file c:\oltp\tuxconfig has been created
    071023.USTR-VM-0928!tmboot.3596.3920.-2: 02-17-2011: Tuxedo Version 8.1 32-bit Windows.
    071023.USTR-VM-0928!tmboot.3596.3920.-2: LIBTUX_CAT:681: ERROR: Failure to create message queue
    071023.USTR-VM-0928!tmboot.3596.3920.-2: FATAL: internal error: CMDTUX_CAT:1098: ERROR: Can't create queue
    When I executed tmloadcf -y ubbconfig, one folder with name .adm and one configuration file with name tuxconfig are created.
    Then I did tmboot -y, it returns error as :
    Booting all admin and server processes in c:\oltp\tuxconfig
    tmboot: internal error: CMDTUX_CAT:1098: ERROR: Can't create queue
    I checked wslog file for more information:--
    022711.USTR-VM-0928!?proc.3452.3688.0: 02-17-2011: Tuxedo Version 8.1 32-bit Windows.
    022711.USTR-VM-0928!?proc.3452.3688.0: LIBWSC_CAT:1037: ERROR: Network message receive failure
    022711.USTR-VM-0928!?proc.3452.3688.0: LIBWSC_CAT:1059: ERROR: WSL returns error on connection request
    022711.USTR-VM-0928!?proc.3452.3688.0: LIBWSC_CAT:1055: ERROR: Unable to establish WSL connection
    022711.USTR-VM-0928!?proc.3452.3688.0: LIBWSC_CAT:1027: ERROR: Unable to connect to WSH
    022711.USTR-VM-0928!?proc.3452.3688.0: LIBWSC_CAT:1020: ERROR: Unable to obtain authentication level
    My ubbconfig file contains the following:--
    *RESOURCES
    IPCKEY 68990
    UID 0
    GID 0
    PERM 0666
    MAXACCESSERS 50
    MAXSERVERS 50
    MAXSERVICES 50
    MASTER "USTR-VM-0928"
    SCANUNIT 10
    BBLQUERY 180
    BLOCKTIME 30
    SANITYSCAN 30
    MODEL SHM
    LDBAL Y
    NOTIFY SIGNAL
    USIGNAL SIGUSR1
    TAGENT "TAGENT"
    *MACHINES
    "USTR-VM-0928" LMID= "USTR-VM-0928"
    TYPE="i386NT"
    MAXWSCLIENTS=10
    TUXDIR="c:\bea\tuxedo8.1"
    APPDIR="c:\oltp"
    ENVFILE="c:\oltp\envfile"
    TLOGDEVICE="c:\oltp\tlog"
    TLOGNAME=tlog
    TUXCONFIG="c:\oltp\tuxconfig"
    ULOGPFX="c:\oltp\ulog"
    *GROUPS
    K_GROUP1 GRPNO=1 LMID="USTR-VM-0928"
    K_GROUP2 GRPNO=2 LMID="USTR-VM-0928"
    K_GROUP3 GRPNO=3 LMID="USTR-VM-0928"
    *SERVERS
    DEFAULT: RESTART=Y MAXGEN=5 REPLYQ=Y
    WSL SRVGRP=K_GROUP3 SRVID=3 CLOPT=
    "-A -- -n0x00020beac03dfc14 -w C:\oltp\wsenvfile\WSH -m 1"
    #### WSL SRVGRP=K_GROUP3 SRVID=3 CLOPT= "-A -- -n //192.61.252.20:279 -m 2 -M 5 -x 5f"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=1 CONV=Y
    CLOPT="-- -sA -ljdoe,7,jdoe,tpscon"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=2
    CLOPT="-- -sA -ljdoe,7,jdoe,unsolmsg"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=3
    CLOPT="-- -sA -ljdoe,7,jdoe,bromsg"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=11 CLOPT=
    "-s MPR_TBL:map_server -- -sA -ljdoe,7,jdoe,mapsvr,1"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=12 CLOPT=
    "-s MPR_COL:map_server -- -sA -ljdoe,7,jdoe,mapsvr,2"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=13 CLOPT=
    "-s MPR_SQL:map_server -- -sA -ljdoe,7,jdoe,mapsvr,3"
    *SERVICES
    DEFAULT: PRIO=50 LOAD=50 AUTOTRAN=N
    map_server
    WSH
    I tried many other option within Server section for WSL, but always getting the same error.
    Please help me regarding this.
    Thanks
    Rajeev

  • Message Queue with SP executing xp_cmdshell not working in after DB migration

    We are in a Database Migration Project.
    DatabaseA is set to be migrated. It currently resides in ServerA. In DatabaseA lies an SP, which calls XP_CMDSHELL in it. This SP is being called by a messageQueue.
    In ServerA, we do have a Local Windows System user as the application login. ( ServerA\LocalLogin). This login  does not have any sysadmin privileges and only is a member of db_datareader and a custom executesp roles of the DatabaseA.
    This database Needs to be migrated to ServerB. when migrating this to ServerB, the only change is that the LocalSystem user is replaced by a Domain User. The application is supposed to connect to the DatabaseA via the Domain User. (Domain\DomainUserB)
    However, Once the database is migrated to ServerB, we get the following error related to the message queue:
    The xp_cmdshell proxy account information cannot be retrieved or is invalid. Verify that the '##xp_cmdshell_proxy_account##' credential exists and contains valid information Message Queue Service Broker
    This error never happen to come in ServerA and  is no proxy_accounts are configured in it. The logins (ServerA\LocalLogin and Domain\DomainUserB)  are identical in terms of privileges. What would be the problem ? Why is this error popping only in
    ServerB ? How can i overcome this without creating a proxy account ?
    Security Context of the MessageQueue is  ExecuteAsUser with a principal of dbo.
    Both the servers are SQL Server 2008, and Windows Server 2008.

    Hi Shamil,
    In addition to other post, please make sure the following things.
    1. Check that if the service account that SQL Server is running under has enough
    local security policies rights on the current server.
    2. Make sure the non-sysadmin user has a database user in the master database and GRANT your non-sysadmin user the rights to execute xp_cmdshell. 
    In order to do that, you can run the below scripts:
    USE master;
    GO
    CREATE USER [Domain\user] FOR LOGIN [Domain\user];
    GRANT EXECUTE ON xp_cmdshell TO [Domain\user];
    Reference:
    http://www.databasejournal.com/features/mssql/xpcmdshell-for-non-system-admin-individuals.html
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • FI document create Message no. 8I031

    Hi,
    I've configure all Excise Configuration. When I'm going to post Vendor Excise Invoice through T_Code J1IEX. While I'm going to post Excise Invoice System Generate a massege Error "FI document create Message no. 8I031".
    Kindly suggest me solution.
    Thank you,
    Atul Sambhare

    Dear,
    During Excise Invoice posting system generally issue a FICO Interface error, from this type of Message we are not able find what exactly the error is. So there is a way out to find the error which is stored in Internal Table XMSEG.
    1. At J1IEX screen switch on debugger after entering all details
    2. Once executed system will start debugger, there you put break point on Functional Module MESSAGES_COUNT
    3. Now press F8 and keep on pressing F6 till the time value is not shown in XMSEG.
    4. You may take help of ABAper in this regard.
    This error comes generally Business Area not filled due to document splitting, may be because of Profitability .
    Please check and revert.
    Br, Vivek

  • Failure while unmarshalling message: Failed to transform MFL content

    hi ,
    I am performing Flat to XML message transformation using OSB.
    I have made a MFL using format builder and imported that MFL into my proxy service (Request Message type).
    now when i am trying to run my proxy service.its Showing error "Failure while unmarshalling message: Failed to transform MFL content from binary to XML".
    I have tested my MFL Using format tester and it is giving desired transformed output(FLAT to XML).
    Please let me know if anybody knows the possible cause.
    Thanks in advance.

    http://biemond.blogspot.com/2008/12/flat-file-to-xml-with-oracle-service.html
    OSB: issue with MFLTransform: Error transforming CSV file to XML
    http://kr.forums.oracle.com/forums/thread.jspa?threadID=867859
    Regards,
    Anuj

  • Configuring UBBCONFIG for Tuxedo/Q-Error for rebuild message queue server

    Hi..
    Am using Tuxedo10g R3 on AIX 5.3..
    Am using IBM COBOL..
    I need to write a program with Queue Concept in cobol,so for that i created queuespace and queue using the qmadmin command..
    While configuring UBBCONFIG file, as per the document which i referred:
    http://e-docs.bea.com/tuxedo/tux80/pdf/usingq.pdf
    i used (pg no: 28)
    TMQUEUE SRVGRP="TMQUEUEGRP1" SRVID=1000 RESTART=Y GRACE=0 CLOPT="-s myqueuespace:TMQUEUE" in the servers section but while
    booting TMQUEUE failed to start.. so i went for the alternative option provided in the same document as
    buildserver -o TMQUEUE -s myqueuespace:TMQUEUE -r TUXEDO/QM \
    -f ${TUXDIR}/lib/TMQUEUE.o
    followed by
    TMQUEUE SRVGRP="TMQUEUEGRP1" SRVID=1000 RESTART=Y GRACE=0 \
    CLOPT="-A"
    while rebuilding TMQUEUE am getting this error:
    buildserver -o TMQUEUE -s myqueuespace:TMQUEUE -r TUXEDO/QM -f ${TUXDIR}/lib/TMQUEUE.o
    ld: 0711-317 ERROR: Undefined symbol: .qs_tcm_setup
    ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
    CMDTUX_CAT:1832: ERROR: can't execute cc -brtl -qstaticinline -qrtti=all -I$TUXDIR/include -o TMQUEUE BS-23f0be.c -L${TUXDIR}/lib
    /usr/Oracle/Tuxedo10g/lib/TMQUEUE.o -brtl -qstaticinline -ltux -lbuft -lqm -ltmib -lfml -lfml32 -lengine -lpthread
    can anyone help me in this??
    Thanks in advance..

    Hi Todd,
    Thanks for ur reply..
    my sample program will fetch records from a table in a database and will store that in a queue and will retrieve that records from the queue.. i hope one queuespace is enough for this program.. while booting am getting these messages in the ULOG.. am i missing any step in the configuration??
    230153.ibmsceai!BBL.2502724.1.0: 04-24-2009: Tuxedo Version 10.3.0.0, 32-bit, Patch Level (none)
    230153.ibmsceai!BBL.2502724.1.0: LIBTUX_CAT:262: INFO: Standard main starting
    230153.ibmsceai!TMS_QM.2019544.1.0: 04-24-2009: Tuxedo Version 10.3.0.0, 32-bit
    230153.ibmsceai!TMS_QM.2019544.1.0: LIBTUX_CAT:262: INFO: Standard main starting
    230153.ibmsceai!TMS_QM.2355258.1.0: 04-24-2009: Tuxedo Version 10.3.0.0, 32-bit
    230153.ibmsceai!TMS_QM.2355258.1.0: LIBTUX_CAT:262: INFO: Standard main starting
    230153.ibmsceai!TMS_QM.2568346.1.0: 04-24-2009: Tuxedo Version 10.3.0.0, 32-bit
    230153.ibmsceai!TMS_QM.2568346.1.0: LIBTUX_CAT:262: INFO: Standard main starting
    230154.ibmsceai!TMQUEUE.651302.1.0: 04-24-2009: Tuxedo Version 10.3.0.0, 32-bit
    230154.ibmsceai!TMQUEUE.651302.1.0: LIBTUX_CAT:262: INFO: Standard main starting
    230154.ibmsceai!TMQUEUE.651302.1.0: Q_CAT:1497: ERROR: xa_open() - no more process table slots
    230154.ibmsceai!TMQUEUE.651302.1.0: LIBTUX_CAT:466: ERROR: tpopen TPERMERR xa_open returned XAER_RMERR
    230154.ibmsceai!TMQUEUE.651302.1.0: Q_CAT:1630: ERROR: tpopen() failed, tperrno = 16
    230154.ibmsceai!TMQUEUE.651302.1.0: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    230154.ibmsceai!tmboot.495778.1.-2: 04-24-2009: Tuxedo Version 10.3.0.0, 32-bit
    230154.ibmsceai!tmboot.495778.1.-2: CMDTUX_CAT:825: ERROR: Process TMQUEUE at cicsapp failed with /T tperrno (TPERMERR - resource manager error)

  • Adapter Status Error :  Error in creating message ID map for JMS message:

    Currently in the SAP XI 3.0 JMS Adapter, I am receiving the following error
    Error in creating message ID map for JMS message:
    ie. Error while processing message 'de8265f6-c864-4479-1137-9bab17b78b3b';  detailed error description: com.sap.aii.adapter.jms.api.channel.filter.MessageFilterException: Error in creating message ID map for JMS message: ID:c3e2d840d8d4d7f14040404040404040c44f8e2213630b01 at com.sap.aii.adapter.jms.core.channel.filter.InboundDuplicateCheckFilter.filter(InboundDuplicateCheckFilter.java:103)
    Although I am receivng this error, when I check the details of the message processing, all steps are successful and the message is set to status : DLVD
    Audit Log for Message: de8265f6-c864-4479-1137-9bab17b78b3b
    Time Stamp     Status     Description
    09.06.2009 13:27:24     Success     New JMS message with JMS message ID ID:c3e2d840d8d4d7f14040404040404040c44f8e2213630b01 received. The XI message ID for this message is de8265f6-c864-4479-1137-9bab17b78b3b
    09.06.2009 13:27:24     Success     JMS message converted to XI message format successfully
    09.06.2009 13:27:24     Success     RRB: entering RequestResponseBean
    09.06.2009 13:27:24     Success     RRB: suspending the transaction
    09.06.2009 13:27:24     Success     RRB: passing through ...
    09.06.2009 13:27:24     Success     RRB: leaving RequestResponseBean
    09.06.2009 13:27:24     Success     Transform: using Transform.Class: com.sap.aii.messaging.adapter.Conversion
    09.06.2009 13:27:24     Success     Transform: transforming the payload ...
    09.06.2009 13:27:24     Success     Transform: successfully transformed
    09.06.2009 13:27:24     Success     Application attempting to send an XI message synchronously using connection JMS_http://sap.com/xi/XI/System.
    09.06.2009 13:27:24     Success     Trying to put the message into the call queue.
    09.06.2009 13:27:24     Success     Message successfully put into the queue.
    09.06.2009 13:27:24     Success     The message was successfully retrieved from the call queue.
    09.06.2009 13:27:24     Success     The message status set to DLNG.
    09.06.2009 13:27:25     Success     The application sent the message synchronously using connection JMS_http://sap.com/xi/XI/System. Returning to application.
    09.06.2009 13:27:25     Success     The message was successfully transmitted to endpoint http://sapxia.swets.nl:8000/sap/xi/engine?type=entry using connection JMS_http://sap.com/xi/XI/System.
    09.06.2009 13:27:25     Success     The message status set to DLVD.
    Not sure why this is occurring.......

    No, not using correlation id.
    I was able to resolve the issue on this queue by changing the following setting
    Under the PROCESSING tab, under XI SETTINGS
    Time period for Duplicate Check for EO(IO) (secs) it was set to 86400
    I have changed this to 300 seconds and the adapter has now gone green.
    BUT......
    That said, I have the exact scenario on another sender JMS channel set to 300 seconds and it exhibits the same issue.
    correlation settings:
    Set XI message id  to  = GUID
    Set Xi conversation

  • Tmboot: internal error: CMDTUX_CAT:1098: ERROR: Can't create queue

    Hi,
    i am getting "tmboot :internal error:CMDTUX_CAT:1098 error:cant create queue"
    *RESOURCES
    IPCKEY 123456
    #Example:
    #IPCKEY 123456
    DOMAINID simpapp
    MASTER simple
    MAXACCESSERS 10
    MAXSERVERS 5
    MAXSERVICES 10
    MODEL SHM
    LDBAL N
    *MACHINES
    DEFAULT:
    APPDIR="c:\oltp"
    TUXCONFIG="c:\oltp\tuxconfig"
    TUXDIR="c:\bea\tuxedo8.1"
    "USTR-ERL-1692"
    LMID=simple
    *GROUPS
    GROUP1
    LMID=simple GRPNO=1 OPENINFO=NONE
    *SERVERS
    DEFAULT:
    CLOPT="-A"
    simpserv SRVGRP=GROUP1 SRVID=1
    *SERVICES
    TOUPPER
    Help me...

    Then there are two things. First is:
    Using remote Desktop connection:  If so then don't use remote Desktop connection without console switch, if you are using it then run "mstsc /console" (console mode)
    Another way to start app server on physical machine, or use VNC like software.
    And the second thing is:
    You should increase some of your Tuxedo IPC Settings, do this:
    Go to Control Panel - BEA Tuxedo8.1 Administration - IPC Resources tab
    Uncheck Use Default IPC Settings
    Click next to where it says IPC Resources it is a little box. When cursor is over the box it will show, New (Insert)
    Type in the word Custom and hit enter
    Now everything on the right turned from greyed out to white
    Change Maximum Number of Message Queues to 1024
    Maximum Number of Processes Using IPC 512
    Maximum Number of Semaphores to 2048
    Maximum Number of Semaphore Sets 2048
    Maximum Number of Semaphore Undo Structures 2048
    Hit Apply
    NOTE: The Tuxedo IPC Helper Service will then need to be restarted. Make sure you shut down all domains and schedulers that are maintained by Tuxedo before doing this.
    Thanks,
    Neeraj Singh

  • Error - ipi, message queue operation failed

    we are trying to startup bmq but its finished with error.
    Please could you help us ?
    BEA MessageQ, V5.0 RP8, Wed Mar 29 13:13:49 EST 2000
    Copyright (c) 2000 BEA Systems, Inc. All rights reserved.
    ************ dmqgcp (12973) 16-FEB-2012 16:31:45 ************
    gcp, group control process for group 102 is running
    ************ dmqqe (12975) 16-FEB-2012 16:31:45 ************
    qe, queuing engine is running
    ************ dmqgcp (12973) 16-FEB-2012 16:31:45 ************
    ipi, message queue operation failed
    ************ dmqgcp (12973) 16-FEB-2012 16:31:45 ************
    gcp, initialization failure
    ************ dmqqe (12975) 16-FEB-2012 16:31:45 ************
    qe, caught signal 15
    ************ dmqqe (12975) 16-FEB-2012 16:31:45 ************
    qe, queuing engine is exiting
    ************ dmqgcp (12973) 16-FEB-2012 16:31:45 ************
    gcp, group control process for group 102 is exiting

    Could you please provide the init file and the OS information,
    Also, Please enable the DMQIPI_TRACE to get more trace if possible, thanks.
    Regards,
    /Lingtao
    Edited by: Lingtao on Mar 6, 2012 2:51 AM

  • Please help me to solve error: Split mapping created no messages

    Hi Experts,
    I am facing Split mapping created no messages  when i run my scenario.
    My Scenario is : Proxy to FILE.
    I am triggering Proxy and based on one condition i am generating different Flat Files.
    Now when i do this i am getting error :Split mapping created no messages in SXI_MONITOR.
    When i check this in Message Mapping by taking data from SXI_MONI its working fine...
    but when i trigger the data from RUNTIME WORKBENCH its throughing the error.
    When i remove the NameSpaces <ns0:message>
    and <ns0:messages1> its working fine.
    How can i solve this issue.
    Even though i removed Namespace in Message Type, i am getting the error.
    I changed occurance of Target message to O..unbounded both in Message Mapping and Interface Mapping.
    Its working fine in Message Mapping, problem occurs only when i run end-to-end scenario.
    So please help me to solve this issue.

    I think there might be mismatch between your name spaces.
    may be this link might help you
    Split mapping created no messages -Mluti Mapping
    are you getting the same structure from your proxies whatever structure you have in your XI structure(sender) and NS should match.
    but I dont have exp with proxies.
    Sri

  • HT3275 I continue to get the following error message: Unable to complete back up.an error occurred while creating backup folder. It's a brand new drive. When I attempt to repair it using disk utility I get:unable to repair disk cannot unmounted

    I have been trying to use time machine on a new lacie 2tb usb 2 drive for back up. I continue to get: "unable to complete backup.An error occured while creating backup folder". When I use disk utility to repair I get another error message: unable to repair disk unmountable.
    Help me Obie One Canobie you are my last hope

    I have confused myself with the facts!  Started out keeping track of every step and every variable but have sort of lost it as we progress here.  First I quit all applications then swapped connections between mouse port and backup disk port to influence possible bad connections question.  Changed power outlet receptacle for the backup disk. Disabled the put-the-HD-to-sleep option.  Then powered down the computerator.
    Next started up computerator.  Turned Time Machine ON  and experienced multiple successful backups!  Then I started up a few applications, Mail and Text Edit (but not Safari so far).  Had a few more successes.  After each backup, I used Disk Utility to verify the backup disk is still OK.  This because the error about unable to unmount the backup disk seems to go hand in hand with Disk Utility finding the backup disk to be bad.
    Put computer to sleep for the night.  Upon starting up in the morning, and before doing anything else, I did a backup disk verification... BAD!   Did a restart and verified the backup disk... OK.
    Did a few    Sleep-bad, Restart -OK    repetitions.
    It seems consistent:  Sleeping the computer apparently messes up the backup disk but doing a Restart "repairs" it.
    =============================
    Now then, I don't understand everything I know here.  Methinks that maybe keeping the HD from sleeping during lulls in activity has allowed successful backups through the day but manually putting everything to sleep for the night causes a return to the problem of spinning-back-up-too-slowly (which was explained earlier).  Is there any truth in this?
    I may abandon this Seagate thing for something more compatible.  What's out there that we know works reliably for us?

  • HT3275 I get the following message - "Time Machine could not complete the backup."  "Unable to complete backup."  "An error occurred while creating the backup folder.""

    I get the following message - "Time Machine could not complete the backup."  "Unable to complete backup. An error occurred while creating the backup folder."" 
    This MAC is partioned with Windows 7 with only  50 gig devoted to Windows so my son can play Flight Simulator X on the machine. 
    I have a WD Passport External Hard Drive for the Back Up
    I have spoken with WD Tech Support and they have been fantastic but I still keep getting this message.  Any thought?
    Maxx

    Reboot the TC.. it sometimes gets lost on the network.. are you still actually using 10.6.8 as the problem is more prevalent on Lion and ML it seems is no better.
    You might find reset of the TC is needed. change the names to short, no spaces pure alphanumeric.
    Reset the TM to the new name.. use the A4 in Pondini's great KB.
    http://pondini.org/TM/Troubleshooting.html

Maybe you are looking for