TMADMIN_CAT:199: WARN: Cannot become administrator.Limited set of commands

PT Version: 8.50.21
OS: Linux SUSE
I need to create a script to monitor the tuxedo queues. While executing the tmadin -r command, i am getting the above error.
With this i cannot run any command on tmdamin. Is there any other variables i need to set or config to run? I am using the same ID as the PS_HOME owner.
Please help.

Hi,
Here is the definition of the -r command line option for tmadmin:
-r
The -r option instructs tmadmin to enter the bulletin board as a client instead of as the administrator; in other words, it requests read-only access. This option is useful if you want to leave the administrator slot unoccupied. Note: If you decide to use this option, however, be aware that you will not get all the information you get by running tmadmin without the -r option. Specifically, tmadmin -r does not report load values for servers running at remote sites.
Only one tmadmin process can be the administrator at a time. When the -r option is specified by a user other than the Oracle Tuxedo administrator and security is turned on, the user is prompted for a password
http://docs.oracle.com/cd/E35855_01/tuxedo/docs12c/rfcm/rfcmd.html#wp1971834
The TMADMIN_CAT:119 is a warning message not an error. It is a reminder that the usage of the "-r" option restricts you to a subset of tmadmin commands. The "-r" option is used because only one "administrator" can be
running tmadmin at a time. The script you wish to use should just be executing commands that do not require you to be the administrator(e.g. print commands).
If you execute something like "echo psr | tmadmin -r" from a UNIX command line shell it should print out. to stdout, the servers that are running.
If you still have questions, let us know: then tmadmin command/commands you want to execute, the release of Tuxedo you are using, and whether you are using MP or SHM configuration.
Regards,
Bob Finan
Edited by: Bob Finan on Aug 22, 2012 10:46 AM

Similar Messages

  • Warning: Cannot initialize enumeration with an integer.

    I've found some inconsistent behavior in the CC compiler related to assigning ints to an enum.
    Compile this code:
    // Compiled with:
    // CC: Sun WorkShop 6 update 2 C++ 5.3 Patch 111685-13 2003/02/04
    enum chairs {bluechair=0, greenchair=1, redchair=2};
    enum walls {bluewall, greenwall, redwall};
    typedef enum walls walls;
    int main ()
    walls mywall = 0; // Error: Cannot use int to initialize walls.
    mywall = 0; // Error: Cannot assign int to walls.
    walls mywalls[]={
    bluewall, // OK
    (walls) 0, // OK
    (walls) bluechair, // OK
    (int) 0, // Error: Cannot use int to initialize walls.
    (int) bluechair, // Error: Cannot use int to initialize walls.
    static_cast<int> (0), // Error: Cannot use int to initialize walls.
    static_cast<int>(bluechair), // Error: Cannot use int to initialize walls.
    0 // Warning: Cannot initialize enumeration with an integer.
    mywalls[1] = 0; // Error: Cannot assign int to walls.
    return 0;
    When compiled with g++ and gcc all I get is the same warning:
    chairsandwalls.cc:16: warning: conversion from `int' to `enum walls'
    Should it all be Errors or Warnings?
    Is there some reason why this might actually be the expected behavior?
    Diego.

    Integral to enumeration is not a standard conversion as specified in section 4 (Standard conversions) of the C++ standard. You need to cast any such conversion. The GNU compiler is more lax on this point than WorkShop/Studio, and only generates a warning.
    The reason this is an error has to do with type-safety -- an enumeration has a limited set of valid values, and the language forces you to cast when assigning from an integer saying, "Yes, this is a valid value."

  • I am trying to download iTunes on my new desktop computer (Windows 7, 64 bit).  It starts installing, and then stops with the message- "The System Administrator has set policies to prevent this installation."  I am the sole user- please help.

    I am trying to download iTunes on my new desktop computer (Windows 7, 64 bit).  It starts installing, and then stops with the message- "The System Administrator has set policies to prevent this installation." This is a stand alone computer and I am the sole user.   Please help.

    This is a Microsoft Windows Issue.
    From a MS Support Engineer:
    "Hi,
    ·        Is the computer on a domain?
    ·        Is the issue isolated to only this software or you get the same error message with other software’s as well?
    Try the steps below and check if it helps.
    Step 1:
    Run the software setup file as an administrator and check if it helps.
    a. Right click on the setup file of the software that you are trying to install.
    b. Select “Run as administrator”.
    Step 2:
    Temporarily disable the antivirus software running on the computer and check if you are able to install the software.
    Disable antivirus software
    Warning:
    Antivirus software can help protect your computer against viruses and other security threats. In most cases, you shouldn't disable your antivirus software. If you have to temporarily disable it to install other software, you should re-enable it as soon as you're done. If you're connected to the Internet or a network while your antivirus software is disabled, your computer is vulnerable to attacks.
    Step 3:
    a. Click Start, type "Local Security Policy" (without quotes) and press enter.
    b. Click on Software Restriction Policies.
    c. In the right pane, double click on the "enforcement".
    d. Select “All users except local administrators”.
    e. Click Ok and restart the computer and check if the issue is fixed."

  • Error says: Warning: Cannot modify header information

    I keep receiving an error message after my form is sent (the form still send the information I need just wont re-direct to the next page)
    It redirects to a page that says:
    Warning: Cannot modify header information - headers already sent by (output started at /home/tommyle/public_html/newp.php:10) in /home/tommyle/public_html/newp.php on line 41
    my php code looks like this:
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Tommy Lemonade Beta</title>
    <link href="style1.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <?php
    /* Set e-mail recipient */
    $myemail = "profiles@tommylemonade";
    /* Check all form inputs using check_input function */
    $name = check_input($_POST['name'], "Enter your name");
    $subject = check_input($_POST['subject'], "Enter a subject");
    $email = check_input($_POST['email']);
    $message = check_input($_POST['message'], "Write your message");
    /* If e-mail is not valid show error message */
    if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
    show_error("E-mail address not valid");
    /* Let's prepare the message for the e-mail */
    $message = "
    Name: $name
    E-mail: $email
    Subject: $subject
    Message:
    $message
    /* Send the message using mail() function */
    mail($myemail, $subject, $message);
    /* Redirect visitor to the thank you page */
    header('Location: thanks.html');
    exit();
    /* Functions we used */
    function check_input($data, $problem='')
    $data = trim($data);
    $data = stripslashes($data);
    $data = htmlspecialchars($data);
    if ($problem && strlen($data) == 0)
    show_error($problem);
    return $data;
    function show_error($myError)
    ?>
    <html>
    <body>
    <p>Please correct the following error:</p>
    <strong><?php echo $myError; ?></strong>
    <p>Hit the back button and try again</p>
    </body>
    </html>
    <?php
    exit();
    ?>
    </body>
    </html>
    This is line 41:
    header('Location: thanks.html');
    Can anybody see what I'm missing?

    Yeah, rework the code so you don't get any output before the php code is executed (like below):
    <?php
    /* Set e-mail recipient */
    $myemail = "profiles@tommylemonade";
    /* Check all form inputs using check_input function */
    $name = check_input($_POST['name'], "Enter your name");
    $subject = check_input($_POST['subject'], "Enter a subject");
    $email = check_input($_POST['email']);
    $message = check_input($_POST['message'], "Write your message");
    /* If e-mail is not valid show error message */
    if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
    show_error("E-mail address not valid");
    /* Let's prepare the message for the e-mail */
    $message = "
    Name: $name
    E-mail: $email
    Subject: $subject
    Message: $message
    /* Send the message using mail() function */
    mail($myemail, $subject, $message);
    /* Redirect visitor to the thank you page */
    header('Location: thanks.html');
    exit();
    /* Functions we used */
    function check_input($data, $problem='')
    $data = trim($data);
    $data = stripslashes($data);
    $data = htmlspecialchars($data);
    if ($problem && strlen($data) == 0)
    show_error($problem);
    return $data;
    function show_error($myError)
    ?>
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Tommy Lemonade Beta</title>
    <link href="style1.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <p>Please correct the following error:</p>
    <strong><?php echo $myError; ?></strong>
    <p>Hit the back button and try again</p>
    </body>
    </html>
    <?php
    exit();
    ?>

  • Error message "Data cannot be maintained for set type COMM_PR_PUR_1

    Hi
    While replicating the material master through R3AS I am getting an error for which the details to be checked in SMW01. In SMW01 when I selected the record for error details I am getting above error message.  How to resolve ? Pls guide me stepwise. For your information I has cleared SMQ1 in R3 & SMQ2 in SRM
    For curioisity next I selected all such error logs & deleted. It gave me one warning (some inconstinecies error) which I ignored. After that I checked SMQ1 of R3 & SMQ2 of SRM. No log
    But I observed a strange thing. Whatever material codes I am creating it is going straightway to SRM without running R3AS transaction. I checked R3AM1, selected the row and cancelled. But still going without any interferrance. Why ? How shall I stop this.
    Thanks

    Hello,
    >
    BNR wrote:
    > Hi
    > While replicating the material master through R3AS I am getting an error for which the details to be checked in SMW01. In SMW01 when I selected the record for error details I am getting above error message.  How to resolve ? Pls guide me stepwise. For your information I has cleared SMQ1 in R3 & SMQ2 in SRM
    >(...)
    Have a look at OSS note 1049693 - Data cannot be maintained for set type COMM_PR_PUR_1.
    Regards.
    Laurent.

  • Gtk-WARNING **: cannot open display [Solved]

    Hello,
    I've just installed openbox and experimenting with it. But I'am unable to run any panel. Ive already install lxpanel, fbpanel, plank, but each time I try to launch them from the terminal I get the same error massages. Firefox, leafpad, terminal, all launch properly, only the panels I can't make them run. Any idea how to solve this?
    [mak@myhost ~]$ fbpanel
    (fbpanel:688): Gtk-WARNING **: cannot open display:
    [mak@myhost ~]$
    [mak@myhost ~]$ plank
    [INFO 19:09:21.484514] [AbstractMain:170] Plank version: 0.7.1
    [INFO 19:09:21.484627] [AbstractMain:171] Kernel version: 3.17.6-1-ARCH
    [INFO 19:09:21.484704] [AbstractMain:172] GLib version: 2.42.1
    [INFO 19:09:21.484784] [AbstractMain:173] GTK+ version: 3.14.6
    [INFO 19:09:21.484850] [AbstractMain:175] + HiDPI support enabled
    [INFO 19:09:21.484915] [AbstractMain:177] Wnck version: 3.4.9
    [INFO 19:09:21.485001] [AbstractMain:178] Cairo version: 1.14.0
    [INFO 19:09:21.485081] [AbstractMain:179] Pango version: 1.36.8
    Unable to init server: Could not connect: Connection refused
    [WARN 19:09:21.493039] [Gtk] cannot open display:
    [mak@myhost ~]$
    Last edited by jmak (2014-12-19 00:25:02)

    karol wrote:
    The display should be set on its own. It's
    $ echo $DISPLAY
    :0
    for my first X server and
    $ echo $DISPLAY
    :1
    for the other one I'm running.
    How exactly do you start X?
    I start manually,
    startx

  • Gtk-WARNING **: cannot open display:

    Hi Folks,
    Has anyone every came across this problem when trying to run firefox remotely? I use putty to connect to my solaris box but cannot display back firefox as the following error occurs :
    Gtk-WARNING **: cannot open display:
    When I run echo $DISPLAY nothing is returned. I have also tried setting the display using the following command :
    export DISPLAY=0:0
    Nothing seems to work.
    Can anyone help?

    Hi Jacob,
    You are seeing the warning because your machine does not have an Xserver running which is needed to convert to postscript using the command line (with Reader 7.0.9).
    If running an Xserver is not an option for you, you could upgrade to the latest version of Reader (8.1.2) in which this issue has been fixed.
    Sincerely,
    Neha

  • Warning! task_eval_init(): unable to set User/Group baseDN

    Hi,
    I have installed Directory server on Unix platform.
    Installation went successful. While doing the installation, I have given the userid to run the server as "admxxx" and group as "www".
    After the installation, the server started properly but with a warning message that "warning: daemon is running as super-user". And I was able to open the console and do whatever I wanted.
    We have created 3 more directory server instances and we imported an LDIF file into one of the instances successfully.
    Now the problem is, whenever we start the admin server, we are getting the following message.
    bash-2.03# ./start-admin
    Info: Cache expiration set to 600 seconds
    Warning! task_eval_init(): unable to set User/Group baseDN
    Netscape-Administrator/4.2 B2002.057.2313
    startup: listening to http://servername, port 6061 as root
    warning: daemon is running as super-user
    Can any one tell why I am getting the message Warning! task_eval_init(): unable to set User/Group baseDN ?
    This is very urgent. We have configured this LDAP to SiteMinder server.
    Thanks in Advance,
    Murthy

    zhangping,
    I don't recognize your error. But are you using ldap for logging into SunMC ? This is not possible.

  • New iPhone cannot get voicemail to set up?

    I have a new iPhone 4s and I cannot get voicemail to set up?

    Go the the Phone app and select keypad. Press and hold the 1 key to initiate a call to Voicemail. Then Administrative Options > Passwords > Turn Password on or off > Voicemail password OFF.

  • Web service: Cannot remove WSS security setting

    Hi,
    i have a problem about developing web service with jdeveloper 10.1.3.1
    The problem is that ---> once i have add the security to the web service
    (through the web service wizard .. i,e, right click the web service and
    select "Secure Web Service'), i CANNOT REMOVE the security setting using
    the web service wizard...
    call the web service always say missing wsse:Security SOAP header..
    do anybody have the solution?
    thank you...

    Hi,
    the issue is still there in 10.1.3.3, and it must be somewhere on JDeveloper or OC4J side. Moreover, it's not limited to removing security settings, as the situation (old settings remembered) is the same when editing security settings.
    lsp,
    before regenerating a web service and its xml files (editing security properties), make sure you have cleaned the project and then you can try deleting the oracle-webservices.xml file from your project directory, because JDeveloper does not seem to be willing to overwrite it during regeneration.
    If this does not help and you are using embedded OC4J, you can try the following steps before running the web service again:
    - delete the embedded-oc4j/application-deployments/current-workspace-app directory, because it contains an oracle-webservices.xml file which may be outdated,
    - empty the contents of embedded-oc4j/config/wsmgmt.xml, because it contains security settings for web services you have deployed so far, which also may be outdated,
    - restart JDeveloper :)
    Note that these are just guesses to solve the problem. Unfortunately doing all of these did not solve it for me.
    So if anybody has some more ideas, we'll be happy to hear them.
    Thanks,
    Patrik

  • Trying to open Terminal I get;You are not authorised to run this application. The administrator has set your shell to an illegal value.

    Hi There Y'all,
    I have recently downloaded MacKeeper. It ran OK for a bit, but has recently stopped allowing Internet security updates and switching on of the internet protection options.
    Asked for help at MacKeeper. Their initial advice did not work, so a very nice technician was going to remotely attempt to fix the issue.
    He however needed/still needs access to Terminal, a to me unbeknown Utility feature of my MacBook pro with Mac OS X 10.6.8.
    While attempting to open Terminal the following came up
    You are not authorised to run this application.
    The administrator has set your shell to an illegal value.
    Did do a diskverify permission and repair and restart.
    Did check my admin settings in advanced options and have the /bin/bash.
    Any advice anyone.
    Thanks.
    in site out

    After finally localing private/etc/shells through Go>Go to folder and replacing the empty shells with the shells~orig I have permission again to open Terminal. Thanks. Another step.
    (Why though can't I access  /private/etc/...  through Finder's search?)
    Should work but the file or folder needs to exists to access it.  If you typed in /private/etc/shells and the file wasn't there there's no place to access.  Certainly /private/etc was there so that would have worked.
    So what will happen by inputting the lines
    ls -Fvl /bin/bash
    ls -Fvl /etc/shells
    more /etc/shells
    into Terminal?
    Basically to find out what you already seemed to find out.  The first command was to display owner, group, and permissions of  /bin/bash and to tell me whether it still existed.
    Similarly for /etc/shells.
    And the last command would have just displayed what was in /etc/shells.
    By the way /private/etc and /etc are the same folder.

  • I keep getting an error message that says "The administrator has set policies to prevent this installation" when I try to install iTunes.  I have tried everything on the website.

    I keep getting an error message that says "The administrator has set policies to prevent this installation" when I try to install iTunes.  I have tried everything on the website.  When i try to remove the components of iTunes I get the same message.  How can I download iTunes?

    Let's try something relatively simple. Download and save a copy of the installer to your hard drive (don't run the install on line and don't start the install just yet):
    http://www.apple.com/itunes/download/
    Now right-click on the iTunesSetup.exe (or iTunes64Setup.exe) that you downloaded and select "Run as administrator".
    Does that go through any better for you?

  • Credit memo (CM) Approval limits set are not being checked in CM creation

    Hi,
    Customer: ARROW ELECTRONICS INC
    SR: 6502816.993
    Customer has set the approval limits for credit memo in Receivables
    He has set the approval limit as -500 to 0 for a user X.
    Created an invoice for 550 $
    Gone to Ireceivables and created a dispute for the complete amount (-550$) of the invoice.
    Find that the notification is going to the user X even when the amount is not within the approval limits set.
    He is able to approve the notification and it is going to the next level approval.
    Once that is done the credit memo is getting created.
    Checked the packages involved in this.
    ARWCMWFB.pls
    Find that there is no checking of the approval limits in the package.
    Please help me in knowing on whether this is an intended functionality.
    Thanks and regards,
    Hareesh

    Hareesh
    Using HR Hierarchy
    1. Define three approvers A, B, C for the same reason code and with different approval limits (as this is credit memo the guy with highest negative amount has is the final approver).
    2. A reports to B and B reports to C
    3. A is approval limit is from -100 to -500, B can approve from -500 to -1000 and C can approve from -1000 to -1500 (all of them have same reason code and currency code).
    4. Make sure all of them are employees.
    5. Make sure you **DO NOT** check the flag Primary Approver for any of these approval limits in the approval limits screen.
    6. In the employees -- Assignments For A, enter supervisor as B, and For B enter Supervisor as C.
    7.No enter an invoice for 1200 and complete it.
    8. Request for credit from iReceivables for the same invoice for -1200.
    9. Now you can see that the notification will go to B and C for approval.
    Using Approval Limits hierarchy:
    If you do not want to use the employee setup, they can always, use the primary check box. With the same example as above, check the primary check box for A, B and C.
    When you request for credit, first A gets, next B gets it and then C gets it.
    If you check for only C which is the final approver, workflow will send only one notification and once C approves it will forward.
    Ofcourse, before any of these guys are approving, collector assigned to the customer has to approve.
    And after all these approvals one more Role (called Receivable Role which can be anybody according to the WF definition) has to approve before the credit is generated).
    Now, I am not sure what the customer wants. Do they want multiple approvals or single approval? If they want multiple they have to use the first approach. If not they can use the second approach.
    I did a test case again and these comments are the results of the test. I did this on 11.5.9.
    Let me know if you have any questions. Also please refer to the metalink note 284804.1How Does Credit Memo Workflow Notify Multiple Approvers?.
    Thanks
    Nagamohan

  • Error: the system administrator has set policies to prevent this installation

    While trying to sync my husband's new iPad 2 to our computer, I encountered the following problem.
    I currently have iTunes 10.1.1.4 installed on my computer but was told to update to the latest version of iTunes 10.2.2.
    After trying to do this, I received the following error message: The System Administrator has set policies to prevent this installation.
    After contacting Apple, Toshiba and Microsoft and following instructions from each of their tech support agents, I am still not able to uninstall iTunes as they all advised me to do.
    The latest error message I receive is: You do not have sufficient access to uninstall iTunes. Please contact your System Administrator.
    I am the administrator and am signed in as such. As you can imagine, I am quite frustrated.
    A solution to this problem would be greatly appreciated.

    I received the following error message: The System Administrator has set policies to prevent this installation.
    I'd try something relatively simple first. Download and save a fresh copy of the iTunes installer to your hard drive. (Don't run the install on line and don't start the install just yet.)
    http://www.apple.com/itunes/download/
    Now right-click the iTunesSetup.exe (or iTunes64Setup.exe) that you downloaded, and select "Run as administrator".
    Does that update go through any better?

  • HT1926 Everytime I try and install iTunes it says "the system administrator has set policies to prevent this installation".  does anyone know what this means?

    I am using my partners computer.  He has iTunes on his laptop but when I went to update iTunes, it said "the system administrator has set policies to prevent this installation".  I therefore deleted iTunes altogether thinking to reinstall the original iTunes and then upgrade it (i,e start from scratch) but to know avail.  Is this a problem with my laptop itself?  Or a problem with the internet settings?
    HELP PLEASE!!

    Let's try something relatively simple. Download and save a copy of the installer to your hard drive (don't run the install on line and don't start the install just yet):
    http://www.apple.com/itunes/download/
    Now right-click on the iTunesSetup.exe (or iTunes64Setup.exe) that you downloaded and select "Run as administrator".
    Does that go through any better for you?

Maybe you are looking for

  • Error in materialized view refresh path

    I have a procedure that manuall refreshes a materialized view. It almost always gets the following errors: ERROR at line 1: ORA-12008: error in materialized view refresh path ORA-08103: object no longer exists ORA-06512: at "SYS.DBMS_SNAPSHOT", line

  • FocusManager generates error

    I get this error when trying to close a title window. TypeError: Error #1009: Cannot access a property or method of a null  object reference.     at  mx.managers::FocusManager/childHideHandler()[E:\dev\4.0.0\frameworks\projects\framework\s rc\mx\mana

  • How to nest Checkbox inside Datacolumn

    Dear all, Usually we embed a checkbox in a list of row in table. How do I achieve this in Flex? Since in DataColumn I can not nest a Checkbox component. Any examples would be great. Thanks in advance.

  • Aironet 1100

    Problem statement: I was trying to upgrade my IOS to the 12.3.8-JEC(GD) from the GUI interface. Half day upgrading, i got disconnected from the AP, for no apparent reason. I tried to restart the AP, apparently i am unable to login to its default 10.0

  • Unmanaged clients

    Hi We use SCCM 2012 to manage about 3000 devices. We use EP as anti-virus solution. Some 200+ of these clients run the scheduled scans on time, updates and has the latest definitions. They just report as Endpoint Protection agent not yet installed an