IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
Expand all | Collapse all

Administrator password

  • 1.  Administrator password

    Posted Thu February 14, 2002 08:56 AM

    I installed XML Starterkit. Administrator has no password. How can I change this?


    #webMethods
    #Tamino
    #API-Management


  • 2.  RE: Administrator password

    Posted Thu February 14, 2002 09:52 AM

    If you’re referring to the password of the database administrator (the password the Tamino Manager asks): this is the same password you use for login on your NT machine. So if you’ve installed Tamino while being logged into Windows withthe standard Administrator account, try setting a password for this NT account.

    Best regards, Andreas


    #webMethods
    #API-Management
    #Tamino


  • 3.  RE: Administrator password

    Posted Wed November 20, 2002 01:14 PM

    Is that a windowsproblem?
    Why has Tamino no passwordadministration?

    Greetings


    #Tamino
    #API-Management
    #webMethods


  • 4.  RE: Administrator password

    Posted Thu November 21, 2002 03:18 PM

    Hi Zenit,

    Tamino doesn’t use its own users/parsswords, it use the System (Windows or Unix) autentication system.
    In Tamino Manager you can only establish what users (existing in the system) can administrate Tamino.
    The password for that user to login into Tamino Manager is the password in the system for that user.

    Regards.


    #API-Management
    #webMethods
    #Tamino


  • 5.  RE: Administrator password

    Posted Mon December 02, 2002 04:17 PM

    Hi,

    I will automate the useradministration with my own program. Is it possible to put a new user to the tamino without the Tamino Manager?
    If the answer yes, how can I do it?

    Thanks,
    Sven


    #Tamino
    #webMethods
    #API-Management


  • 6.  RE: Administrator password

    Posted Mon December 02, 2002 05:09 PM

    Hi Sven,
    Yes you can do it with the batch interface.

    “argbatch add administrator”

    Regards.


    #API-Management
    #webMethods
    #Tamino


  • 7.  RE: Administrator password

    Posted Mon December 02, 2002 06:15 PM

    Hi Juanjo!

    Did you made such a batch file or who can I get some one?

    Thanks
    By
    Sven


    #Tamino
    #webMethods
    #API-Management


  • 8.  RE: Administrator password

    Posted Tue December 03, 2002 08:58 AM

    What environment do you have, Unix, Windows …?


    #API-Management
    #webMethods
    #Tamino


  • 9.  RE: Administrator password

    Posted Tue December 03, 2002 11:22 AM

    Hi Juanjo,

    I nead one for Unix and Windows.
    My testenvironment is Windows and the onlineserver runs under Unix.

    Thanks
    Sven


    #Tamino
    #API-Management
    #webMethods


  • 10.  RE: Administrator password

    Posted Tue December 03, 2002 01:01 PM

    Hi Sven,

    The following are two very simple examples.

    Windows:
    Create a adduser.bat or adduser.cmd file with this line:
    argbatch add administrator %1

    Call this commands file with:
    adduser


    Unix:
    Create a adduser.sh script file with this lines:
    #!/bin/ksh
    argbatch add administrator $1


    Call this script file with:
    adduser.sh



    Previously, in both environments, the argbatch environment must be set correctly.

    Obviusly, the scripts can be completed to verify that only one parameter is used or many other things.

    Regards.


    #Tamino
    #API-Management
    #webMethods