Administrator API: Login to specific instance with username, password

1) How do I login to a specific instance of ColdFusion administrator with a username and password.  The example I see everywhere is variations of:
adminObj = createObject("component","cfide.adminapi.administrator");
adminObj.login("password");
which appears to be based on no instances and not multiple administrators.
my goal is to log into a set of instances and assign datasources to each of them based on a csv file.  I know how to do all that once logged in.
What I don't know how to do is log in!
Please help!
2) Is there an actual document anywhere that actually documents the administrator API?  I have the help files that I suspect everyone has and they don't.
Thank you.

The way I did it was to create a directory under the cfide folder in a given instance and called the pages via http://server.blah.com:8301/cfide/blah/admin.cfm
Here's some example code of creating a datasource (I don't recall where I grabbed it from, it isn't mine - but it does work).
<!--- <!--- log in CFAdmin User --->
<cfset administratorService = CreateObject("component","CFIDE.adminapi.administrator")>
<cfset bIsLoggedIn = administratorService.Login(dsnpassword,dsnuser)>
<cfif bIsLoggedIn>
   <cfset datasourceService = createObject("component", "CFIDE.adminapi.datasource")>
   <!--- check to see if datasource with same name doesn't already exist --->
   <cfif datasourceService.VerifyDSN(#dsName#) eq false>
      <cfset stArgs = StructNew()>
      <cfset stArgs.name = #dsName#>
      <cfset stArgs.database = #dbName#>
      <cfset stArgs.host = #dbServer#>
      <cfset stArgs.port = 1433>
      <cfset stArgs.driver = mssql>
      <cfset stArgs.selectmethod = datasource_selectmethod>
      <cfset stArgs.username = dbuser>
      <cfset stArgs.password = dbpassword>
      <!--- create datasource - this one's for MSSQL DB --->
      <cfset datasourceService.SetMSSQL(argumentCollection=stArgs)>
   </cfif>
</cfif> --->

Similar Messages

  • Securing a BPEL Process with username/password in 10g

    securing a BPEL Process with username/password in 10g

    use OWSM gateways..
    create a gateway and define your policy in the gateway

  • JSP-MySQL user login with username, password and registration

    Hi everyone:
    i need to create a simple jsp client login with username and password. There is also a registration link for those not register yet.
    I m using tomcat and MySQL and have already create a client login with username and password page.(record already in database).
    I m now have no idea on how to create a registration link, ie update the database. please help..the examples i search through google were build by Jboss, strut, ApacheGeronimo which i m not familiar with.
    Is it any "package" or "wizard" available in creating the login and registration page? Most of the webpage has build with user login and registration part, may i know how they "create" them?
    Please help.. Thanks in advance!

    hi,
    You can use tomcat5.5 for this. you can get help from the following link.
    http://tomcat.apache.org/tomcat-5.5-doc/jndi-datasource-examples-howto.html
    If ur registrantion page is RegistrationPage.jsp then u can write it:
    <a href="RegistrationPage.jsp">Registration Page </a">For Registration page u have to use session & for u can search this in javaworld.com site. MAy from this u will get ur solution

  • Problem with username/password using SQLAuthenticator

    I want to setup SQLAuthenticator but authentication is refused because wrong username/password.
    I am using JDev Studio Edition Version 11.1.2.1.0 with integrated WLS.
    As a base I take this two URLs:
    http://weblogic-wonders.com/weblogic/2010/03/11/configuring-sql-authenticator-with-weblogic-server/ and
    http://biemond.blogspot.com/2008/12/using-database-tables-as-authentication.html
    1. I create db tables (default table names for SQLAuthenticator), but don't fill users and groups - OK
    2. In WLS I create new SQLAuthenticator Authentication provider inside deafult realm myrealm - OK
    3. I put this provider to the top among all three providers
    4. In JDev I configure ADF Security - define Enterprise Roles to matching to the names in GROUPS table of SQLAuthenticator - ??
    5. I Define Application users and roles and setup Resource grants
    6. I run my application
    7. In database tables USERS, GROUPMEMBERS, GROUPS I can see users and roles from Jdev, that means, at deploy time, this tables are filled too
    8. In WLS I can see Users and Groups under myrealm which are transfered at deploy time and mirrors USERS, GROUPMEMBERS, GROUPS
    9. In USERS table I can see password is encripted by {SHA-1}
    But when try to login I am always rejected with "Invalid username or password".
    Before setting up SQLAuthenticator (only default options) the logins were successful, so application shold be OK.
    I try also with Plaintext Passwords Enabled and put into USERS table unencripted password, but without success.
    I can confirm that SQLAuthenticator mechanism actually get password from USERS table. I replaced default SQL for getting password from
    SELECT U_PASSWORD FROM USERS WHERE U_NAME = ?
    to
    select get_pwd(?) as U_PASSWORD from dual. In my get_pwd PL/SQL function I perform logging in I can see that this function was called.
    So the problem is in WLS when comparing passwords.
    Any suggestions, where to start digging?
    Ragards,
    Sašo
    Edited by: Sašo C. on 5.10.2011 7:26
    Edited by: Sašo C. on 5.10.2011 7:32

    The problem is solved! Crucial was hint from http://biemond.blogspot.com/2008/12/using-weblogic-provider-as.html:
    The Control Flag for my new SQLAuthenticator Authentication provider must be changed from Optional to Sufficient AND
    the Control Flag for existing DefaultAuthenticator must be changed from Required to Sufficient!
    It seems that before SQLAuthenticator took password from USERS table, but didn't use it in the authentication process.
    Regards,
    Sašo

  • Logon failure with username/password authentication in WLE 5.1

    Hi,
    I have WLE 5.1 configured and running on a Win2K system. I am able to
    build and run the simpapp sample program. I am also able to build the
    interceptor_cxx sample and run with all interceptors other than the
    security interceptor. What I realised in this case was that the
    PersonQueryClient did not perform any login of a user from which the
    security interceptor could extract user ID information (have I missed
    something? I am a WLE and CORBA newbie) so I modified the ubb config
    file to define SECURITY as USER_AUTH and add the AUTHSVC, modified
    personqueryclientc.cpp to get access to the SecurityLevel2 principal
    authenticator, built the app, created a user with the tpussradd command,
    and ran the app (the AUTHSVC successfully starts).
    The Tobj::AuthType returned by the get_auth_type method of the
    PrincipalAuthenticator is Tobj::TOBJ_APPAUTH as I expect. I call the
    logon method with the parameters (user_name, argv[0], sys_password,
    password, 0) where user_name is the same as the user I created with the
    tpusradd command, argv[0] is personqueryclient (I've tried tpusradd'ing
    the user both with the "-c personqueryclient" argument and without),
    sys_password is the password I specified when tmloadcf was run against
    the modified ubb config file, password is the password I specified when
    I ran tpusradd. The logon always fails returning
    Security::SecAuthFailure. In the ULOGxxxx file the following message is
    displayed:
    181605.NUMBAT!TMSYSEVT.2180: LIBTUX_CAT:1484: WARN: .SysClientSecurity:
    User tbartley on SITE1 authentication failure
    I've tried running in the following manners all with the same result:
    1. With or without the security_cxx interceptor registered
    2. With the user in or not in a group
    3. With the the user created using the "-c personqueryclient" arg to
    tpusradd or not
    If I change the security level down to APP_PW then everything works and
    the security_cxx interceptor sees a client name of personqueryclient and
    a username of personqueryclient. The logon fails if I use a sys_password
    other than the one specified to tmloadcf and succeeds if I use the
    correct password.
    Can anyone tell me what I might be doing wrong in the username/password
    authentication case?
    Here's the code I inserted to personqueryc.cpp to perform the logon:
    // Get SecurityCurrent object
    CORBA::Object_var var_security_current_oref
    = bootstrap.resolve_initial_references("SecurityCurrent");
    SecurityLevel2::Current_var var_security_current_ref =
    SecurityLevel2::Current::_narrow(var_security_current_oref.in());
    // Get the principal authenticator
    SecurityLevel2::PrincipalAuthenticator_var
    var_principal_authenticator_oref =
    var_security_current_ref->principal_authenticator();
    char user_name[100] = "";
    char password[100] = "";
    char sys_password[100] = "";
    // Narrow to a BEA Principal Authenticator
    Tobj::PrincipalAuthenticator_var v_bea_pa =
    Tobj::PrincipalAuthenticator::_narrow(var_principal_authenticator_oref.in());
    // See what level of logon has been turned on
    Tobj::AuthType auth_type = v_bea_pa->get_auth_type();
    cout << "Auth type: ";
    switch (auth_type) {
    case Tobj::TOBJ_APPAUTH: cout << "TOBJ_APPAUTH"; break;
    case Tobj::TOBJ_SYSAUTH: cout << "TOBJ_SYSAUTH"; password[0] = '\0';
    break;
    case Tobj::TOBJ_NOAUTH: cout << "TOBJ_NOAUTH"; break;
    default: cout << "TOBJ_<unknown>"; break;
    cout << endl;
    cout << "Username: ";
    cin >> user_name;
    switch (auth_type) {
    case Tobj::TOBJ_APPAUTH: {
    cout << "User password: ";
    cin >> password;
    // fall through
    case Tobj::TOBJ_SYSAUTH: {
    cout << "App password: "; cin >> sys_password;
    break;
    default: {
    break;
    // now that we've got all the data necessary, logon
    Security::AuthenticationStatus status =
    v_bea_pa->logon(user_name,
    argv[0],
    sys_password,
    password,
    0); // user data
    cout << "Logon result: ";
    switch (status) {
    case Security::SecAuthSuccess: cout << "SecAuthSuccess"; break;
    case Security::SecAuthFailure: cout << "SecAuthFailure"; break;
    case Security::SecAuthContinue: cout << "SecAuthContinue"; break;
    case Security::SecAuthExpired: cout << "SecAuthExpired"; break;
    default: cout << "SecAuth<unknown>"; break;
    cout << endl;
    if (status != Security::SecAuthSuccess) {
    cerr << "Invalid password." << endl;
    exit(1);
    Here are the entries I added to the ubb config file:
    *RESOURCES
    SECURITY USER_AUTH
    AUTHSVC AUTHSVR
    *SERVERS
    AUTHSVR SRVGRP=SYS_GRP SRVID=6 RESTART=Y GRACE=600 MAXGEN=2 CLOPT="-A"
    I do not have the WLE Security Services installed (i.e. the package
    that provides SSL and crypto). Is this required? It's not clear to me
    from the documentation if this is required for username/password based
    authentication or not.
    Thanks for any help,
    Tim Bartley

    Hi Michael
    I am using SSL in my application. So that it asks for the certificate username
    and password while startup. But now i want to mention the username and password
    in weblogic.properties file itself. So that the client need not have to provide
    the username and password everytime. I am using weblogic server 5.1 version.
    How do i do this?
    Hope my question is clear. Please help.
    with regds
    siva
    Michael Young <[email protected]> wrote:
    Hi.
    It's not 100% clear to me what you are asking for. Do you want authentication
    turned off for
    your application? That will certainly turn off prompting for authentication
    information. You
    can set your ACL for your application (in your properties file) to allow
    everyone to execute
    it. Something like:
    weblogic.allow.execute.<myApplication>=everyone
    But maybe you want some kind of silent authentication so that not everyone
    can execute your
    app? I suppose you could pass authentication info in a cookie. I really
    don't know enough
    about your application, though.
    I suggest you post this question in weblogic.developer.interest.security
    - you have a better
    chance of getting an answer there for security related questions.
    Hope this helps.
    Michael
    siva wrote:
    Hi all,
    I have the following requirements. I have an application which asksfor the authentication
    information like username and password at first. The application isrunning in
    weblogic5.1 server. Is there a way where in weblogic.properties file,i mention
    the username and password so that the application will not ask forin the browser.
    please help. It's urgent.
    with regds
    siva--
    Developer Relations Engineer
    BEA Support

  • EUS password authentication in sql developer failing with username/password

    We have recently changed to use Enterprise User Security (EUS) for our client authentication (password global authentication).
    This is working fine but we are encountering an issue with SQL Developer whereby we can't logon using our EUS details, it simply returns the following on the logon screen:
    Status : Failure - Test failed: ORA-01017: invalid username/password; logon denied
    Logging on via sql plus client and server software and other 3rd party tools like pl/sql developer works correctly.
    It appears to be an issue with sql developer itself.
    We are using the latest Production release of sql developer 2.1
    Does anyone have any ideas?
    This is an issue for
    Edited by: david butler on Jan 14, 2010 10:45 AM

    Further to this, I have now found a suitable resolution to this that doesn't require an external client.
    There is a jdbc setting that will allow you to use EUS password authentication.
    Add the jdbc line option (below) in the sqldeveloper.conf file (backup the sqldeveloper.conf file first).
    AddVMOption -Doracle.jdbc.thinLogonCapability=o3
    The sqldeveloper.conf file can be found wherever you have installed sqldeveloper, under <INSTALL_HOME>\sqldeveloper\bin\sqldeveloper.conf.
    After you add this option, restart SQL Developer and you should be able to use your EUS username / password to authenticate via SQL Developer.

  • Bookmark a page with username/password in the URL

    I can add username/password for HTTP authentication directly to the URL (e.g. http://user:[email protected]/ ) and this works fine with the browser on Firefox OS 1.3 (on a ZTE Open C). However, when bookmarking that page, the bookmark doesn't include the username/password any more and so I'll have to manually enter the username/password when visiting that site again (after clearing private data) - and unfortunately there is no password manager for Firefox OS yet...
    Another way to add a bookmark appears to be via a small Javascript using the "save-bookmark", however that appears to only give me the option to add the bookmark to the Home Screen (and I am not sure if it will keep the username/password information in the bookmarked URL).
    Is there any other way to add a bookmark to the browser and keep the username/password information in the URL?

    Here is an example:
    http://user1:[email protected]/auth-basic/
    Works fine if you enter that URL in the URL bar. But when bookmarking it, it only gets bookmarked as http://test.webdav.org/auth-basic/ and so you will have to enter username and password again (after clearing cookies and session data) when opening from bookmarks.

  • Authentication with username/password *OR* certificates?

    Hi folks,
    we have to authenticate users either via username/password combo or via
    certificate.
    Of course, by using SSL in both cases. Is this possible with WLS 6.0? Since
    I've read
    that I have to configure WLS explicitly to support client certificates, I'm
    rather suspiscious
    if this will work.
    Any ideas anybody?
    Regards,
    Gerhard

    You can use certificates for authentication if you do the following:
    1) you need to implement a CertAuthenticator which, given a
    certificate from SSL, extracts a user name (for example, get
    the email address from the certificate and return the name
    portion - [email protected] might use foo as the user name)
    2) in your realm, you must have a user for the user name in
    the certificate (so, for the example above, you need to have
    a user named "foo" in the realm)

  • Authentication Scheme with Username / Password stored in App Table

    Hi all,
    Up to now all of our applications have used SSO authentication, but I now need to step away from this to allow users from outside our organisation (and therefore not in our OID system) to use one specific application.
    I therefore have a table in my application that stores username and password. I have a function that compares the entered username and password to this table and returns a boolean result. This function is then registered in my Authentication Scheme as the Authentication function.
    All this works well and is causing no problems. The problem is that the password is stored and checked in plain text - obviuosly not very good.
    How do I go about changing the password column in my table, the pages that allow this password to be set and updated and the authentication function that checks the username / password to use some form of encryption?
    Also, do I need to be worrying about all the other fields (Page Sentry Function,Session Verify Function, Pre-Authentication Process etc) that the Authentication Scheme offers me - or can I just leave these blank as they are now.
    If someone can give me a complete 'out-of-the-box' solution that would be wonderful - otherwise a good hard pusj int he right direction would be much appreciated.
    Many thanks,
    Martin

    Hello Martin,
    If you check out the Discussion Forum application here, you should find the information you need. This app stores an encrypted version of the user's password in the table.
    http://www.oracle.com/technology/products/database/application_express/packaged_apps/packaged_apps.html#FORUM
    Good luck,
    Don.
    You can reward this reply by marking it as either Helpful or Correct :)

  • Frontrow chokes on iphoto galleries protected with username password

    When I try to select in Frontrow a web gallery (as they are listed on the bottom on the selection list) which is protected by a username and password the screen turns black, after a few seconds the list comes back and is blocked. Again after a few seconds an error message pops up telling to press pause/play which brings you back to the main menu.
    Galleries without username password work fine and also the tumbnails left of the protected gallery names in the list are correct.

    adrenalin. I couldn't disagree more about the AppleTV still being a useless device.
    it USED TO BE a brick in our living room, the only time it got turned on was when the Comcast remote's code became liked by the AppleTV and turned it on every time I turned on the cable box.
    However after this update... I must say, the thing rocks. It's not cheaper to rent movies at my local store, it's certainly not more convenient, and the integration with my iPhone is insane. I just rented a movie last night after the update. And have tested moving it between computer, tv, and phone, all without a hitch. This is going to be awesome.
    My complaint with the .mac settings is an easy fix. Hopefully in the next incremental update. Apple?
    Now what I want to know is, once the iPhone SDK is released, who out there is going to be first to get me a third party app that turns my iPhone into a full fledged bluetooth remote for my appleTV. Can't wait to be able to use a full keyboard.

  • How to drop database instance if username/password is lost???

    As the username/password is missing, I am not able to unistall the database studio

    dbmsrv_VIJAY123.prt
    Date       Time     TID(hex)   Typ MsgID      Label    Message
    2008-02-07 14:18:08 0x00001094 INF        216 DBMSrv   DBM Server client connection (established at 2008-02-07 14:18:08): PID 5312 on computer VIJAY123
    2008-02-07 14:18:08 0x00001094 INF        283 DBMSrv   command inst_reg
    2008-02-07 14:18:24 0x00001094 INF        226 DBMSrv   DBM Server client disconnected: PID 5312 on computer VIJAY123
    2008-02-07 14:33:28 0x000005dc INF        216 DBMSrv   DBM Server client connection (established at 2008-02-07 14:33:28): PID 5040 on computer VIJAY123
    2008-02-07 14:33:28 0x000005dc INF        283 DBMSrv   command db_create -a...
    2008-02-07 14:33:29 0x000005dc INF        226 DBMSrv   DBM Server client disconnected: PID 5040 on computer VIJAY123
    2008-02-07 14:33:29 0x0000154c INF        416 DBMSrv   Rundirectory  does not exist.
    2008-02-07 14:33:29 0x0000154c INF        216 DBMSrv   DBM Server client connection (established at 2008-02-07 14:33:29): PID 5040 on computer VIJAY123
    2008-02-07 14:33:29 0x0000154c WRN        400 DBMSrv   Usage of the old name 'RUNDIRECTORY' for parameter 'RunDirectoryPath'
    2008-02-07 14:33:29 0x0000154c WRN        400 DBMSrv   Usage of the old name 'INSTANCE_TYPE' for parameter 'InstanceType'
    2008-02-07 14:33:29 0x0000154c INF        283 DBMSrv   command auto_extend show
    2008-02-07 14:33:29 0x0000154c INF        283 DBMSrv   command auto_update_statistics show
    2008-02-07 14:33:30 0x0000154c INF        283 DBMSrv   command param_put SESSION_TIMEOUT "0"
    2008-02-07 14:33:30 0x0000154c WRN        400 DBMSrv   Usage of the old name 'SESSION_TIMEOUT' for parameter 'SessionTimeout'
    2008-02-07 14:33:30 0x0000154c INF        283 DBMSrv   command param_directput _UNICODE "YES"
    2008-02-07 14:33:30 0x0000154c WRN        400 DBMSrv   Usage of the old name '_UNICODE' for parameter 'DeprecatedParameter22'
    2008-02-07 14:33:30 0x0000154c INF        283 DBMSrv   command param_put CACHE_SIZE "2500"
    2008-02-07 14:33:30 0x0000154c WRN        400 DBMSrv   Usage of the old name 'CACHE_SIZE' for parameter 'CacheMemorySize'
    2008-02-07 14:33:30 0x0000154c INF        283 DBMSrv   command param_put SERVERDBFOR_SAP "NO"
    2008-02-07 14:33:30 0x0000154c WRN        400 DBMSrv   Usage of the old name '_SERVERDB_FOR_SAP' for parameter 'UseExtendedOracleSQLMode'
    2008-02-07 14:33:30 0x0000154c INF        283 DBMSrv   command param_put MAXDATAVOLUMES "64"
    2008-02-07 14:33:30 0x0000154c INF        283 DBMSrv   command param_put XP_MAXPAGER "3"
    2008-02-07 14:33:30 0x0000154c WRN        400 DBMSrv   Usage of the old name 'XP_MAXPAGER' for parameter 'DeprecatedParameter21'
    2008-02-07 14:33:30 0x0000154c INF        283 DBMSrv   command param_put MAXUSERTASKS "10"
    2008-02-07 14:33:30 0x0000154c INF        283 DBMSrv   command param_checkall EXTENDED
    2008-02-07 14:33:30 0x0000154c INF        283 DBMSrv   command param_commitsession NOCLOSE
    2008-02-07 14:33:39 0x0000154c INF        283 DBMSrv   command param_addvolume 1 DATA "D:\MAXDB_DATA\SAMPLE\data\DISKD0001" F 32768
    2008-02-07 14:33:39 0x0000154c INF        283 DBMSrv   command param_addvolume 1 LOG "D:\MAXDB_DATA\SAMPLE\log\DISKL001" F 6400 1
    2008-02-07 14:33:40 0x0000154c INF        283 DBMSrv   command db_admin -f
    2008-02-07 14:34:12 0x000014c0 INF        216 DBMSrv   DBM Server client connection (established at 2008-02-07 14:34:09): PID 5040 on computer VIJAY123
    2008-02-07 14:34:12 0x000014c0 INF        161 DBMSrv   database SAMPLE is no longer registered, no commands can be executed
    2008-02-07 14:34:12 0x000014c0 INF        226 DBMSrv   DBM Server client disconnected: PID 5040 on computer VIJAY123
    2008-02-07 14:36:36 0x0000171c INF        216 DBMSrv   DBM Server client connection (established at 2008-02-07 14:36:36): PID 788 on computer VIJAY123
    2008-02-07 14:36:36 0x0000171c INF        283 DBMSrv   command db_create -a...
    2008-02-07 14:36:37 0x0000171c INF        226 DBMSrv   DBM Server client disconnected: PID 788 on computer VIJAY123
    2008-02-07 14:36:37 0x000015ac INF        416 DBMSrv   Rundirectory  does not exist.
    2008-02-07 14:36:37 0x000015ac INF        216 DBMSrv   DBM Server client connection (established at 2008-02-07 14:36:37): PID 788 on computer VIJAY123
    2008-02-07 14:36:37 0x000015ac WRN        400 DBMSrv   Usage of the old name 'RUNDIRECTORY' for parameter 'RunDirectoryPath'
    2008-02-07 14:36:37 0x000015ac WRN        400 DBMSrv   Usage of the old name 'INSTANCE_TYPE' for parameter 'InstanceType'
    2008-02-07 14:36:37 0x000015ac INF        283 DBMSrv   command auto_extend show
    2008-02-07 14:36:37 0x000015ac INF        283 DBMSrv   command auto_update_statistics show
    2008-02-07 14:36:37 0x000015ac INF        283 DBMSrv   command param_put SESSION_TIMEOUT "0"
    2008-02-07 14:36:37 0x000015ac WRN        400 DBMSrv   Usage of the old name 'SESSION_TIMEOUT' for parameter 'SessionTimeout'
    2008-02-07 14:36:37 0x000015ac INF        283 DBMSrv   command param_directput _UNICODE "YES"
    2008-02-07 14:36:37 0x000015ac WRN        400 DBMSrv   Usage of the old name '_UNICODE' for parameter 'DeprecatedParameter22'
    2008-02-07 14:36:37 0x000015ac INF        283 DBMSrv   command param_put CACHE_SIZE "2500"
    2008-02-07 14:36:37 0x000015ac WRN        400 DBMSrv   Usage of the old name 'CACHE_SIZE' for parameter 'CacheMemorySize'
    2008-02-07 14:36:37 0x000015ac INF        283 DBMSrv   command param_put SERVERDBFOR_SAP "NO"
    2008-02-07 14:36:37 0x000015ac WRN        400 DBMSrv   Usage of the old name '_SERVERDB_FOR_SAP' for parameter 'UseExtendedOracleSQLMode'
    2008-02-07 14:36:37 0x000015ac INF        283 DBMSrv   command param_put MAXDATAVOLUMES "64"
    2008-02-07 14:36:37 0x000015ac INF        283 DBMSrv   command param_put XP_MAXPAGER "3"
    2008-02-07 14:36:37 0x000015ac WRN        400 DBMSrv   Usage of the old name 'XP_MAXPAGER' for parameter 'DeprecatedParameter21'
    2008-02-07 14:36:37 0x000015ac INF        283 DBMSrv   command param_put MAXUSERTASKS "10"
    2008-02-07 14:36:37 0x000015ac INF        283 DBMSrv   command param_checkall EXTENDED
    2008-02-07 14:36:37 0x000015ac INF        283 DBMSrv   command param_commitsession NOCLOSE
    2008-02-07 14:36:47 0x000015ac INF        283 DBMSrv   command param_addvolume 1 DATA "D:\MAXDB_DATA\MAXDB1\data\DISKD0001" F 32768
    2008-02-07 14:36:47 0x000015ac INF        283 DBMSrv   command param_addvolume 1 LOG "D:\MAXDB_DATA\MAXDB1\log\DISKL001" F 6400 1
    2008-02-07 14:36:48 0x000015ac INF        283 DBMSrv   command db_admin -f
    2008-02-07 14:39:42 0x00000e64 INF        216 DBMSrv   DBM Server client connection (established at 2008-02-07 14:39:42): PID 4316 on computer VIJAY123
    2008-02-07 14:39:42 0x00000e64 INF        283 DBMSrv   command db_create -a...
    2008-02-07 14:39:43 0x00000e64 INF        226 DBMSrv   DBM Server client disconnected: PID 4316 on computer VIJAY123
    2008-02-07 14:39:43 0x00001298 INF        416 DBMSrv   Rundirectory  does not exist.
    2008-02-07 14:39:43 0x00001298 INF        216 DBMSrv   DBM Server client connection (established at 2008-02-07 14:39:43): PID 4316 on computer VIJAY123
    2008-02-07 14:39:43 0x00001298 WRN        400 DBMSrv   Usage of the old name 'RUNDIRECTORY' for parameter 'RunDirectoryPath'
    2008-02-07 14:39:43 0x00001298 WRN        400 DBMSrv   Usage of the old name 'INSTANCE_TYPE' for parameter 'InstanceType'
    2008-02-07 14:39:43 0x00001298 INF        283 DBMSrv   command auto_extend show
    2008-02-07 14:39:43 0x00001298 INF        283 DBMSrv   command auto_update_statistics show
    2008-02-07 14:39:44 0x00001298 INF        283 DBMSrv   command param_put SESSION_TIMEOUT "0"
    2008-02-07 14:39:44 0x00001298 WRN        400 DBMSrv   Usage of the old name 'SESSION_TIMEOUT' for parameter 'SessionTimeout'
    2008-02-07 14:39:44 0x00001298 INF        283 DBMSrv   command param_directput _UNICODE "YES"
    2008-02-07 14:39:44 0x00001298 WRN        400 DBMSrv   Usage of the old name '_UNICODE' for parameter 'DeprecatedParameter22'
    2008-02-07 14:39:44 0x00001298 INF        283 DBMSrv   command param_put CACHE_SIZE "2500"
    2008-02-07 14:39:44 0x00001298 WRN        400 DBMSrv   Usage of the old name 'CACHE_SIZE' for parameter 'CacheMemorySize'
    2008-02-07 14:39:44 0x00001298 INF        283 DBMSrv   command param_put SERVERDBFOR_SAP "NO"
    2008-02-07 14:39:44 0x00001298 WRN        400 DBMSrv   Usage of the old name '_SERVERDB_FOR_SAP' for parameter 'UseExtendedOracleSQLMode'
    2008-02-07 14:39:44 0x00001298 INF        283 DBMSrv   command param_put MAXDATAVOLUMES "64"
    2008-02-07 14:39:44 0x00001298 INF        283 DBMSrv   command param_put XP_MAXPAGER "3"
    2008-02-07 14:39:44 0x00001298 WRN        400 DBMSrv   Usage of the old name 'XP_MAXPAGER' for parameter 'DeprecatedParameter21'
    2008-02-07 14:39:44 0x00001298 INF        283 DBMSrv   command param_put MAXUSERTASKS "10"
    2008-02-07 14:39:44 0x00001298 INF        283 DBMSrv   command param_checkall EXTENDED
    2008-02-07 14:39:44 0x00001298 INF        283 DBMSrv   command param_commitsession NOCLOSE
    2008-02-07 14:39:55 0x00001298 INF        283 DBMSrv   command param_addvolume 1 DATA "D:\MAXDB_DATA\SAMPLE\data\DISKD0001" F 32768
    2008-02-07 14:39:56 0x00001298 INF        283 DBMSrv   command param_addvolume 1 LOG "D:\MAXDB_DATA\SAMPLE\log\DISKL001" F 6400 1
    2008-02-07 14:39:56 0x00001298 INF        283 DBMSrv   command db_admin -f
    2008-02-07 16:11:41 0x000010b8 INF        216 DBMSrv   DBM Server client connection (established at 2008-02-07 16:11:40): PID 5432 on computer VIJAY123
    2008-02-07 16:11:41 0x000010b8 ERR     -24977 DBMSrv   ERR_COMMAND: Unknown DBM command "\h"
    2008-02-07 16:11:41 0x000010b8 INF        226 DBMSrv   DBM Server client disconnected: PID 5432 on computer VIJAY123
    2008-02-07 16:12:45 0x000016e8 INF        216 DBMSrv   DBM Server client connection (established at 2008-02-07 16:12:45): PID 5988 on computer VIJAY123
    2008-02-07 16:12:45 0x000016e8 ERR     -24977 DBMSrv   ERR_COMMAND: Unknown DBM command "db_enumremove"
    2008-02-07 16:12:45 0x000016e8 INF        226 DBMSrv   DBM Server client disconnected: PID 5988 on computer VIJAY123
    2008-02-07 16:12:48 0x000014f4 INF        216 DBMSrv   DBM Server client connection (established at 2008-02-07 16:12:48): PID 808 on computer VIJAY123
    2008-02-07 16:12:48 0x000014f4 INF        283 DBMSrv   command db_enum ...
    2008-02-07 16:12:48 0x000014f4 ERR     -24642 DBMSrv   ERR_ANALYZECMD: Could not analyze the parameters of the current command "db_enum".
                        0x000014f4 ERR     -24641 DBMSrv   ERR_CMDSYNTAX: The given arguments do not match to the syntax of the command.
    2008-02-07 16:12:48 0x000014f4 INF        226 DBMSrv   DBM Server client disconnected: PID 808 on computer VIJAY123
    2008-02-07 16:12:58 0x00000e40 INF        216 DBMSrv   DBM Server client connection (established at 2008-02-07 16:12:58): PID 5004 on computer VIJAY123
    2008-02-07 16:12:58 0x00000e40 ERR     -24977 DBMSrv   ERR_COMMAND: Unknown DBM command "db_rem"
    2008-02-07 16:12:58 0x00000e40 INF        226 DBMSrv   DBM Server client disconnected: PID 5004 on computer VIJAY123
    2008-02-07 16:34:02 0x000007b4 INF        216 DBMSrv   DBM Server client connection (established at 2008-02-07 16:34:02): PID 752 on computer VIJAY123
    2008-02-07 16:34:02 0x000007b4 INF        283 DBMSrv   command db_reg DB...
    2008-02-07 16:34:02 0x000007b4 ERR     -24953 DBMSrv   ERR_DBEXIST: Database instance SAMPLE already exists
    2008-02-07 16:34:02 0x000007b4 INF        226 DBMSrv   DBM Server client disconnected: PID 752 on computer VIJAY123
    2008-02-11 11:47:43 0x00000ad0 INF        216 DBMSrv   DBM Server client connection (established at 2008-02-11 11:47:38): PID 5220 on computer VIJAY123
    2008-02-11 11:47:43 0x00000ad0 ERR     -24977 DBMSrv   ERR_COMMAND: Unknown DBM command "dbmstop"
    2008-02-11 11:48:16 0x00000ad0 ERR     -24977 DBMSrv   ERR_COMMAND: Unknown DBM command "dbmstop"
    2008-02-11 11:49:22 0x00000ad0 ERR     -24977 DBMSrv   ERR_COMMAND: Unknown DBM command "dbmdrop"
    2008-02-11 11:49:28 0x00000ad0 ERR     -24977 DBMSrv   ERR_COMMAND: Unknown DBM command "dbmdrop"
    2008-02-11 11:49:29 0x00000ad0 INF        226 DBMSrv   DBM Server client disconnected: PID 5220 on computer VIJAY123
    2008-02-11 16:51:58 0x00001164 INF        216 DBMSrv   DBM Server client connection (established at 2008-02-11 16:51:58): PID 5284 on computer VIJAY123
    2008-02-11 16:51:58 0x00001164 INF        283 DBMSrv   command db_create -a...
    2008-02-11 16:51:58 0x00001164 INF        226 DBMSrv   DBM Server client disconnected: PID 5284 on computer VIJAY123
    2008-02-11 16:51:58 0x00001274 INF        416 DBMSrv   Rundirectory  does not exist.
    2008-02-11 16:51:59 0x00001274 INF        216 DBMSrv   DBM Server client connection (established at 2008-02-11 16:51:58): PID 5284 on computer VIJAY123
    2008-02-11 16:51:59 0x00001274 WRN        400 DBMSrv   Usage of the old name 'RUNDIRECTORY' for parameter 'RunDirectoryPath'
    2008-02-11 16:51:59 0x00001274 WRN        400 DBMSrv   Usage of the old name 'INSTANCE_TYPE' for parameter 'InstanceType'
    2008-02-11 16:51:59 0x00001274 INF        283 DBMSrv   command auto_extend show
    2008-02-11 16:51:59 0x00001274 INF        283 DBMSrv   command auto_update_statistics show
    2008-02-11 16:51:59 0x00001274 INF        283 DBMSrv   command param_put SESSION_TIMEOUT "0"
    2008-02-11 16:51:59 0x00001274 WRN        400 DBMSrv   Usage of the old name 'SESSION_TIMEOUT' for parameter 'SessionTimeout'
    2008-02-11 16:51:59 0x00001274 INF        283 DBMSrv   command param_directput _UNICODE "YES"
    2008-02-11 16:51:59 0x00001274 WRN        400 DBMSrv   Usage of the old name '_UNICODE' for parameter 'DeprecatedParameter22'
    2008-02-11 16:51:59 0x00001274 INF        283 DBMSrv   command param_put CACHE_SIZE "2500"
    2008-02-11 16:51:59 0x00001274 WRN        400 DBMSrv   Usage of the old name 'CACHE_SIZE' for parameter 'CacheMemorySize'
    2008-02-11 16:51:59 0x00001274 INF        283 DBMSrv   command param_put SERVERDBFOR_SAP "NO"
    2008-02-11 16:51:59 0x00001274 WRN        400 DBMSrv   Usage of the old name '_SERVERDB_FOR_SAP' for parameter 'UseExtendedOracleSQLMode'
    2008-02-11 16:51:59 0x00001274 INF        283 DBMSrv   command param_put MAXDATAVOLUMES "64"
    2008-02-11 16:51:59 0x00001274 INF        283 DBMSrv   command param_put XP_MAXPAGER "3"
    2008-02-11 16:51:59 0x00001274 WRN        400 DBMSrv   Usage of the old name 'XP_MAXPAGER' for parameter 'DeprecatedParameter21'
    2008-02-11 16:51:59 0x00001274 INF        283 DBMSrv   command param_put MAXUSERTASKS "10"
    2008-02-11 16:51:59 0x00001274 INF        283 DBMSrv   command param_checkall EXTENDED
    2008-02-11 16:51:59 0x00001274 INF        283 DBMSrv   command param_commitsession NOCLOSE
    2008-02-11 16:52:08 0x00001274 INF        283 DBMSrv   command param_addvolume 1 DATA "D:\MAXDB_DATA\MAXDB2\data\DISKD0001" F 32768
    2008-02-11 16:52:08 0x00001274 INF        283 DBMSrv   command param_addvolume 1 LOG "D:\MAXDB_DATA\MAXDB2\log\DISKL001" F 6400 1
    2008-02-11 16:52:09 0x00001274 INF        283 DBMSrv   command db_admin -f
    2008-02-11 16:56:58 0x00001464 ERR     -24590 DBMSrv   ERR_REPLY_SHMCHANNEL: Error delivering DBM server reply
                        0x00001464 ERR     -24832 DBMSrv   ERR_SHMNOTAVAILABLE: Shared memory not available
    2008-02-12 11:54:10 0x00000ddc INF        216 DBMSrv   DBM Server client connection (established at 2008-02-12 11:54:08): PID 664 on computer VIJAY123
    2008-02-12 11:54:11 0x00000ddc INF        161 DBMSrv   database SAMPLE is no longer registered, no commands can be executed
    2008-02-12 11:54:11 0x00000ddc INF        226 DBMSrv   DBM Server client disconnected: PID 664 on computer VIJAY123
    2008-02-12 12:08:39 0x000012bc INF        216 DBMSrv   DBM Server client connection (established at 2008-02-12 12:08:37): PID 556 on computer VIJAY123
    2008-02-12 12:08:39 0x000012bc INF        161 DBMSrv   database MAXDB1 is no longer registered, no commands can be executed
    2008-02-12 12:08:39 0x000012bc INF        226 DBMSrv   DBM Server client disconnected: PID 556 on computer VIJAY123
    2008-02-12 16:16:43 0x00001334 INF        216 DBMSrv   DBM Server client connection (established at 2008-02-12 16:16:43): PID 3532 on computer VIJAY123
    2008-02-12 16:16:43 0x00001334 INF        283 DBMSrv   command db_reg DB...
    2008-02-12 16:16:43 0x00001334 ERR     -24953 DBMSrv   ERR_DBEXIST: Database instance MAXDB2 already exists
    2008-02-12 16:16:43 0x00001334 INF        226 DBMSrv   DBM Server client disconnected: PID 3532 on computer VIJAY123
    2008-02-12 16:18:37 0x00001024 INF        216 DBMSrv   DBM Server client connection (established at 2008-02-12 16:18:03): PID 3760 on computer VIJAY123
    2008-02-12 16:18:37 0x00001024 ERR     -24977 DBMSrv   ERR_COMMAND: Unknown DBM command "-d"
    2008-02-12 16:18:47 0x00001024 ERR     -24977 DBMSrv   ERR_COMMAND: Unknown DBM command "dbmdrop"
    2008-02-12 16:18:56 0x00001024 ERR     -24977 DBMSrv   ERR_COMMAND: Unknown DBM command "maxdb2"
    2008-02-12 16:19:10 0x00001024 INF        226 DBMSrv   DBM Server client disconnected: PID 3760 on computer VIJAY123
    dbmcli db_enum
    OK
    MAXDB2  D:\Program_Files\SDB\programs\DatabaseStudio\utilities  7.7.03.23       fast    running
    dbmcli inst_enum
    OK
    xinstinfo MAXDB2
    IndepData           : D:\MAXDB_DATA
    IndepPrograms       : D:\Program_Files\SDB\programs
    InstallationPath    : D:\Program_Files\SDB\programs\DatabaseStudio\utilities
    Kernelversion       : KERNEL    7.7.03   BUILD 023-123-174-368
    Rundirectory        : D:\MAXDB_DATA\wrk\MAXDB2
    sdbregview -l
    Server Utilities             d:/program_files/sdb/programs                             7.7.03.23    32 bit    valid
    Database Studio Utilities    d:/program_files/sdb/programs/databasestudio/utilities    7.7.03.23              valid
    Database Studio              d:/program_files/sdb/programs                             7.7.03.23              valid
    Base                         d:/program_files/sdb/programs                             7.7.03.23    32 bit    valid
    After renaming the files accordingly
    D:\Program_Files\SDB\programs\DatabaseStudio\utilities\pgm>dbmdrop maxdb2
    The MaxDB Database Dropper, Version 7.7.03.23
    Copyright 2000-2008 by SAP AG
    ERR
    -24960,ERR_DBRUN: Database instance is running
    Error: Error while calling dbmcli
    "D:\Program_Files\SDB\programs\pgm\dbmcli"  -d maxdb2 -u , db_drop
    D:\Program_Files\SDB\programs\DatabaseStudio\utilities\pgm>"D:\Program_Files\SDB\programs\pgm\dbmcli"  -d maxdb2 -u DBADMIN,abcd db_drop
    ERR
    -24960,ERR_DBRUN: Database instance is running

  • Problem with USERNAME & PASSWORD creation--JDBC connection with MYSQL

    How to connect to JDBC with Mysql Connector
    i installed mysql & created table, it works fine
    During Password---> I gave it as tiger , no username
    i installed mysql connector
    i saved the .jar file path in class path
    HOW TO CREATE USERNAME & PASSWORD & DATASOURCE NAME ---> Is it the password -tiger or something else like (ADMinstrative tools-ODBC-services--etc )
    Pl, help,
    tks
    Xx

    How to connect to JDBC with Mysql Connector
    i installed mysql & created table, it works fine
    During Password---> I gave it as tiger , no usernameTiger? This ain't Oracle.
    I think you should give a username and password. How can it look up a password without a username? Better GRANT the right permissions, too.
    Read the MySQL docs a bit more closely. Your path isn't the way to go.
    %

  • How to lock a specific map with a password in FINDER?

    I don't use a password on my mac because you have to fill it out the whole time for ridiculous reasons. But I have one map, with all my financial numbers and invoices, that I want to secure with a password.
    How to do that?
    I already tried some things but can't figure it out.
    Thanks in advance!

    not sure what you mean by a map here. if you use a blank admin password (a mistake IMO), pretty much your only option is to create an encrypted disk image using disk utility and put whatever you want protected inside. when the image is unmounted, the only way to mount it is by entering the password you set at the image creation time.

  • How to login as a user with EMPTY password in terminal?

    hi there
    i have created a standard user account without a password.
    logging in works fine via GUI (login window). but i cannot login via the login-command in terminal (shell).
    how can i do this?
    thanks, olli

    Interesting. I found a way. First log in as an administrator. Then become root by entering sudo -s. Then, instead of using login, use su username to log in to your passwordless account.
    Perhaps somebody knows of a less cumbersome way and will post it.

  • My email provider uses no encryption (no SSL), and does not require me to log onto SMTP with username/password. If I do, it doesn't configure. Please help. NICK

    Have never struck this before. Usually email apps give the choice of "No Encryption" (as against SSL). My system will not brook encryption in this form. Also, when setting up SMTP, there is an option for username and password NOT to be added every time the email is accessed. Yet this app requests that you do. If so, then my emails will not work in this form. Other than that, I like it! :-) NICK

    Hey there,
    Thank you for contacting Mozilla! I understand that you are having problems with accessing email on your phone. In order to better understand and investigate on the issue that you are encountering, please reply to this message with the following information:
    * What is the model of your phone?
    * What is the OS version found in the Device Information page? Please visit [http://mzl.la/Gzz6Kp this link] if you need help finding the Build ID of your phone.
    * Please provide the exact steps to reproduce the issue you are encountering.
    * Who is your current cell phone carrier?
    * How often do you encounter this issue?
    Please be sure to include as much detail as possible, including any websites that may exhibit this issue, and any error messages that you may be receiving, exactly as they appear. This will ensure that we will have all the information needed to investigate into this. Thank you for your help and we look forward to hearing from you!
    Curtis Parfitt-Ford
    Mozilla Support

Maybe you are looking for