Login to Oracle 11.2.0.1.0 using LDAP or Activ Directory

Hello,
I want to configure my Oracle-Server that AD-users can login with username/password from AD. The users work on Windows, Linux and Mac Computer which are NOT connected to the AD and maybe use other username/password.
What is the easiest way to configure oracle to ask the AD over LDAP or whatever to check the login? I don´t want to change the AD-schema and if possible I don´t want to install OID or OVD.
With apache or postgres it is so easy to use LDAP. There mast be a way in Oracle, or not?
Many thx
Karsten

This is the forum for the SQL Developer tool. You will get better answers in the Database - General General Database Discussions forum, or possibly the Database Security - General Database Security - General forum..

Similar Messages

  • Hello all...is there a way to activate(on startup) /deactivate(on logoff) CS6 Suite using a script, Active Directory Login Script or central Management Tool?

    hello all...is there a way to activate(on startup) /deactivate(on logoff) CS6 Suite using a script, Active Directory Login Script or central Management Tool?

    The long answer is: No. this is Adobe's secret sauce and you cannot manage it using other tools.
    Mylenium

  • Oracle 8.1.7 for Unix and Windows 2000 Active Directory

    Is it possible to integrate the users and passwords of an Oracle Database running on Solaris with the users and passwords defined in a Windows 2000 Active Directory? What are the requirements and the necesary steps?
    I've read the documentation and it shows how to do it if you install Oracle in a Windows 2000 Server, but it does not mention about installing it in any kind of Unix.

    You should consider to base your firm security and central user repository on REALLY SECURE and ROBUST product technology. Not on Windows 2000 Active Directory. Win2K AD is known to be slow and insecure. If you have Oracle on Solaris your data is secure and next step is to move user accounts to real user repository. It may be one of well-known LDAP servers. Try to read some materials on CERT Coordination Center (http://www.cert.org) which describe LDAP servers. After this you can choose the server which best suite your needs.

  • How to use LDAP with Oracle forms 10g on Oracle application server

    Hi,
    I need some help on this. I have developed oracle forms 10g on application server 9iAS. The client want to use the existing LDAP authentication to the software we wrote. I do not know how I could configure to use the existing LDAP authentication . If anyone know how would I use the existing LDAP on different server to use when they logon to our menu in 10g to validate the user. Do I need to add any varibales in formweb.cfg or any other method. Please help.
    Thanks
    Luksh

    I am not quite sure if this works out of the box. According to an Oracle FAQ:
    4.2 Can I use LDAP to authenticate Forms Services?
    Not directly. However, Oracle Login Server is able to authenticate against a LDAP directory and thus a Forms application can take advantage of this in a SSO environment. But you cannot use access control information stored in a LDAP directory with Forms.

  • Active Directory login soooo slow with 10.4.11 client upgrades

    Hi All,
    I have a problem and hopefully someone will be able to help me.
    We have around 30 Macs in and a golden triangle set up with Mac OS X Server 10.3 on Xserves and a Windows Server 2003 as the PDC and primary DNS server.
    Basically, after upgrading the clients to 10.4.11 the log in process takes an extra 90 seconds to connect. The login window will appear but you are not able to log in until after 90 seconds. During the 90 seconds there are "Some Network Accounts Available" but this is just the Open Directory accounts in the background.
    I have tested with 10.4.4 up to 10.4.10 and this problem does not appear but once I upgrade to 10.4.11 then the problem comes back so I don't believe it is a server orientated problem.
    I also attempted using the old Active Directory plug-in within Directory Access from 10.4.8 and 10.4.10 in place of the one installed with 10.4.11 and this did not help with the matter.
    Does anyone know what has changed with 10.4.11 and what I could possibly do to resolve this problem?
    I probably haven't covered all the bases so let me know if you need more information.
    Dehsinotsa

    Answered at http://discussions.apple.com/message.jspa?messageID=13129261

  • How to import your MS Active Directory users in an Oracle table

    Hello,
    I first tried to get a Heterogenous Connection to my MS Active Directory to get information on my Active Directory users.
    This doesn't work so I used an alternative solution:
    How to import your MS Active Directory users in an Oracle table
    - a Visual Basic script for export from Active Directory
    - a table in my database
    - a SQL*Loader Control-file
    - a command-file to start the SQL*Loader
    Now I can schedule the vsb-script and the command-file to get my information in an Oracle table. This works fine for me.
    Just to share my scripts:
    I made a Visual Basic script to make an export from my Active Directory to a CSV-file.
    'Export_ActiveDir_users.vbs                              26-10-2006
    'Script to export info from MS Active Directory to a CSV-file
    '     Accountname, employeeid, Name, Function, Department etc.
    '       Richard de Boer - Wetterskip Fryslan, the Nethterlands
    '     samaccountname          Logon Name / Account     
    '     employeeid          Employee ID
    '     name               name     
    '     displayname          Display Name / Full Name     
    '     sn               Last Name     
    '     description          Description / Function
    '     department          Department / Organisation     
    '     physicaldeliveryofficename Office Location     Wetterskip Fryslan
    '     streetaddress          Street Address          Harlingerstraatweg 113
    '     l               City / Location          Leeuwarden
    '     mail               E-mail adress     
    '     wwwhomepage          Web Page Address
    '     distinguishedName     Full unique name with cn, ou's, dc's
    'Global variables
        Dim oContainer
        Dim OutPutFile
        Dim FileSystem
    'Initialize global variables
        Set FileSystem = WScript.CreateObject("Scripting.FileSystemObject")
        Set OutPutFile = FileSystem.CreateTextFile("ActiveDir_users.csv", True)
        Set oContainer=GetObject("LDAP://OU=WFgebruikers,DC=Wetterskip,DC=Fryslan,DC=Local")
    'Enumerate Container
        EnumerateUsers oContainer
    'Clean up
        OutPutFile.Close
        Set FileSystem = Nothing
        Set oContainer = Nothing
        WScript.Echo "Finished"
        WScript.Quit(0)
    Sub EnumerateUsers(oCont)
        Dim oUser
        For Each oUser In oCont
            Select Case LCase(oUser.Class)
                   Case "user"
                        If Not IsEmpty(oUser.distinguishedName) Then
                            OutPutFile.WriteLine _
                   oUser.samaccountname      & ";" & _
                   oUser.employeeid     & ";" & _
                   oUser.Get ("name")      & ";" & _
                   oUser.displayname      & ";" & _
                   oUser.sn           & ";" & _
                   oUser.description      & ";" & _
                   oUser.department      & ";" & _
                   oUser.physicaldeliveryofficename & ";" & _
                   oUser.streetaddress      & ";" & _
                   oUser.l           & ";" & _
                   oUser.mail           & ";" & _
                   oUser.wwwhomepage      & ";" & _
                   oUser.distinguishedName     & ";"
                        End If
                   Case "organizationalunit", "container"
                        EnumerateUsers oUser
            End Select
        Next
    End SubThis give's output like this:
    rdeboer;2988;Richard de Boer;Richard de Boer;de Boer;Database Administrator;Informatie- en Communicatie Technologie;;Harlingerstraatweg 113;Leeuwarden;[email protected];;CN=Richard de Boer,OU=Informatie- en Communicatie Technologie,OU=Afdelingen,OU=WFGebruikers,DC=wetterskip,DC=fryslan,DC=local;
    tbronkhorst;201;Tjitske Bronkhorst;Tjitske Bronkhorst;Bronkhorst;Configuratiebeheerder;Informatie- en Communicatie Technologie;;Harlingerstraatweg 113;Leeuwarden;[email protected];;CN=Tjitske Bronkhorst,OU=Informatie- en Communicatie Technologie,OU=Afdelingen,OU=WFGebruikers,DC=wetterskip,DC=fryslan,DC=local;I made a table in my Oracle database:
    CREATE TABLE     PG4WF.ACTD_USERS     
         samaccountname          VARCHAR2(64)
    ,     employeeid          VARCHAR2(16)
    ,     name               VARCHAR2(64)
    ,     displayname          VARCHAR2(64)
    ,     sn               VARCHAR2(64)
    ,     description          VARCHAR2(100)
    ,     department          VARCHAR2(64)
    ,     physicaldeliveryofficename     VARCHAR2(64)
    ,     streetaddress          VARCHAR2(128)
    ,     l               VARCHAR2(64)
    ,     mail               VARCHAR2(100)
    ,     wwwhomepage          VARCHAR2(128)
    ,     distinguishedName     VARCHAR2(256)
    )I made SQL*Loader Control-file:
    LOAD DATA
    INFILE           'ActiveDir_users.csv'
    BADFILE      'ActiveDir_users.bad'
    DISCARDFILE      'ActiveDir_users.dsc'
    TRUNCATE
    INTO TABLE PG4WF.ACTD_USERS
    FIELDS TERMINATED BY ';'
    (     samaccountname
    ,     employeeid
    ,     name
    ,     displayname
    ,     sn
    ,     description
    ,     department
    ,     physicaldeliveryofficename
    ,     streetaddress
    ,     l
    ,     mail
    ,     wwwhomepage
    ,     distinguishedName
    )I made a cmd-file to start SQL*Loader
    : Import the Active Directory users in Oracle by SQL*Loader
    D:\Oracle\ora92\bin\sqlldr userid=pg4wf/<password>@<database> control=sqlldr_ActiveDir_users.ctl log=sqlldr_ActiveDir_users.logI used this for a good list of active directory fields:
    http://www.kouti.com/tables/userattributes.htm
    Greetings,
    Richard de Boer

    I have a table with about 50,000 records in my Oracle database and there is a date column which shows the date that each record get inserted to the table, for example 04-Aug-13.
    Is there any way that I can find out what time each record has been inserted?
    For example: 04-Aug-13 4:20:00 PM. (For my existing records not future ones)
    First you need to clarify what you mean by 'the date that each record get inserted'.  A row is not permanent and visible to other sessions until it has been COMMITTED and that commit may happen seconds, minutes, hours or even days AFTER a user actually creates the row and puts a date in your 'date column'.
    Second - your date column, and ALL date columns, includes a time component. So just query your date column for the time.
    The only way that time value will be incorrect is if you did something silly like TRUNC(myDate) when you inserted the value. That would use a time component of 00:00:00 and destroy the actual time.

  • Active Directory Offline Login work??

    Hey all,
    I'm having an issue with loging in to a Leopard client which is bound to Active Directory. Whenever I unhook this MacBook, off the network, it won't allow me to login to the machine via the domain credentials. In Tiger, I remember there was a check mark option under the AD plugin referring to Caching login credentials for AD, but this is not present in the Active Directory plugin in Leopard.
    I also read that caching is a bit dicey in Leopard, so users have just been check marking creating a Mobile User account, and this seems to offer the ability to signing in to your machine without being connected to the network.
    But what happens in my case, is that the user goes from being an admin account to a standard account, when offline from the network. Once I re-hook the machine back on to the network, I regain admin control of the machine. This is very odd, as I have not run into this issue before. I am not interested in syncing the home folder to the server at all, and I hope I have not accidentally triggered this, although I think you have to set this up also on the server in order for the syncing to occur, right?
    Anyway...all I want to be able to do, is setup offline login of AD credentials on a MacBook. Is this possible while retaining the admin rights of the computer?
    Message was edited by: Syrcle

    We've always used the "Create Mobile Account at Login" check in both 10.4 and 10.5, but I have experienced the admin coming and going like you mentioned (If I remember right 10.4 did it too). On my personal machine (and others in the tech department) I've just opened system prefs and checked the "Allow User to administer this computer" box which makes it permanant, though it's unfortunately not a good solution for large scale deployment.
    It does work for our situation because generally we're the only ones administering machines and ours are the only ones we need the rights off the network, so it may be a solution for you as it sounds like you're only working with one machine.

  • How to know last login in oracle database 9i

    hi all,
    I want to know the last login in oracle database 9i.
    Can some one help me.
    Thanks

    Hi,
    Do you have auditing enabled then you can get details else
    Enable it and execute the below one - then login and logoff times will be recorded for users
    audit connect;
    - Pavan Kumar N
    Oracle 9i/10g - OCP
    http://oracleinternals.blogspot.com/

  • Issue with IE8, during login to Oracle Apps 11.5.9 front end

    Hi,
    One of the user is getting below error message window in IE8, when he tries to login to Oracle Apps 11.5.9 front end, with his username and password:
    "Errors on this webpage might cause it to work incorrectly.
    Element not found
    Common2_2_24_2.js Line 2722
    Code:0 Char:1
    URI:http://myserver.x.com:8020/OA_HTML/cabo/jsLibs/Common2_2_24_2.js"
    User tried deleting cookies and temporary internet files aslo, restore default as well nothing seemed to be worked.
    Please suggest.
    Regards,
    Purnima

    I assume you mean in the security settings screen of IE. There are several differences:
    Description     User's Computer     Other Computer
    Allow previously unused ActiveX controls to run without prompt     Enable     Disable
    Allow Scriptlets     Enable     Disable
    Automatic prompting for ActiveX controls     Enable     Disable
    Only allow approved domains to use ActiveX without prompt     Disable     Enable
    Automatic prompting for file downloads     Enable     Disable
    Access data sources across domains     Prompt     Disable
    Allow scripting of Microsoft web browser control     Enable     Disable
    Allow script-initiated windows without size or position constraints     Enable     Disable
    Allow websites to open windows without address or status bars Enable Disable
    Don’t prompt for client certificate selection when no certificates or only
    one certificate exists     Enable     Disable
    Include local directory path when uploading files to a server     Enable     Disable
    Launching applications and unsafe files     Enable     Prompt
    Software channel permissions     Medium safety     Does not have this option listed
    Use Pop-up Blocker     Disable     Enable
    Use SmartScreen Filter     Disable     Enable
    Allow status bar updated via script     Enable     Disable
    Allow websites to prompt for information using scripted windows     Enable     Disable
    Enable XSS filter     Disable     Enable
    User even changed above IE setting according to the other IE but he still gets the same error.
    Regards,
    Purnima

  • Multi logins in Oracle application 11i

    Hi All,
    Please any one can tell me that One user can do multiple logins in oracle application with out any issues please explain me..
    And i tried the one user can do multiple logins at the same time and he/she can work but please tell it is effect to any performance issues..
    please give me clarification about multiple logins for one username at the same time for Oracle applications.
    Thanks in Advance...

    One of my user shared his login id, password to some other ppl they are working at the same in different systems i wondered whil one user login id access to multiple logins so i raised this quoitn ..
    if any problem with this multiple lo-gin please tell me..
    and that user had 2 or more responsibilities..
    and please tell me can we restrict login for one user can login one time and can we restrict multiple logins oracle apps 11i.It is possible -- Please see these docs.
    How Can I Restrict Applications Users To Be Signed In Only Once At Any Time [ID 375403.1]
    About the oracle.apps.icx.security.session.created business event. [ID 304209.1]
    R12: Using IE8 to access two EBS Instances runs in error "Unable To Authenticate Session" [ID 1098563.1]
    Thanks,
    Hussein

  • Login to oracle time and labor by web service

    Hi,
    How can we login to oracle e-businees suite by extenal web service. In our Oracle time and labor it takes employee id and password.
    Thanks

    Hi
    We are not implementing any kind of flex Time.
    Are you aware of how to setup OTL to record time worked in Days, and how that can be transported to Oracle Project.
    The module is configured to setup in Hours.
    Any ideas?
    Could you highlight any documents that will simplify the process of a basic OTL setup
    Oracle HR and Project is going to be implemented
    Thanks
    Julian

  • First Login to Oracle 9i Personal SQL Plus after installation

    I downloaded the Opacle 9i for Windows NT/2000/XP,3 ZIP
    fiels andI extracted them into 3 special folders disk1,
    disk2 and disk3 according the instructions.Also I
    installed the JRE which is required for that.After the
    installation of Oracle 9,when I wanted to use the SQL Plus
    I could not do it because I had no the first login User
    Name and Password.
    For example,in Oracle 7 Personal for Windows 95 and in
    Oracle 8i Personal for Windows 98,the first login User
    Name is "scott" and the Password is "tiger".
    I shall be great thankfull to you if you will let me know
    how to perform the first login to the SQL Plus of Oracle
    9i (User Name and Password).
    With Great Respect
    Menahem Sharon

    in oracle9i all default users account are lock by default. so if you want to connect
    first when you open sqlplus in user name type "/nolog"
    sqlplus will open with no connection then issue the command.
    conn / as sysdba
    alter user scott account unlock;
    conn scott/tiger
    that is the procedure

  • Can not login to Oracle E-Business Suite

    Oracle Database 10g / Applications 11i on RHEL 4
    Development Environment:
    No one can login to Oracle E-Business Suite.
    If we type a valid user name / password and click Login, the screen refreshes and we are back to the login screen.
    No error message returned.

    This is how we resolved the issue... Thank you for all your help.
    Note 269884.1 How To Fix The Forms Timeout Issue In Oracle Applications 11i
    Note 171261.1 Description of the New Session Timeout Functionality in Apps 11i
    FND Patchset D or Higher
    The following are the best practice setup:
    1. Profile Options:
    ICX: Session Timeout = 30
    ICX:Limit Time = 12
    ICX:Limit connect = 2000
    These Profiles control the Forms Session. If a Timeout is caused by a
    ICX Profile you will be
    prompted to log back in.
    2. Apache zone.properties:
    session.timeout = 1800000
    Session.timeout is what controls the Self Service Timeout. If this
    times out, you will not be
    prompted to log back in and will receive a
    JSP/WEB type error message.
    3. appsweb.cfg and or appsweb_host_sid.cfg file:
    networkRetries=30
    heartbeat =2
    4. FORMS60_TIMEOUT = 60 (check <SID>.env for this)
    5. Bounce Forms Server.
    6. Clear Apache cache $OA_HTML/_pages (optional)
    7. Bounce Apache Server.
    Edited by: ORA_UMAIR on Apr 17, 2009 3:17 PM

  • Demo Login For oracle r12

    Hello
    i am new in oracle apps technical fields.
    can any one have idea for demo login in oracle EBS r12.?(of oracle)
    Kidly provide me detail for above..
    it's urgent.

    Hi,
    In addition, this is a part of "Oracle® Applications Installation Guide: Using Rapid Install Release 12.1 (12.1.1) Part No. E12842-02"
    "The default passwords for the SYSTEM and SYS Oracle Applications database accounts
    are manager and change_on_install, respectively. To maintain database security and
    restrict access to these accounts, you should change these passwords without delay,
    ensuring that your choices meet your organization's security requirements. The
    password for both SYS and SYSTEM in the Vision Demo is manager."
    Regards.

  • Unable to login to Oracle Database 11.2 XE Beta

    Hello everyone:
    Trying to login to Oracle Database 11.2 XE Beta, the fields are workspace, username and password. How do i know the workspace.
    Thanks

    Where are you trying to log in?
    If you go to Get Started (http://127.0.0.1:8080/apex/f?p=4950), the Database Home page should open up.
    There click the APEX "tab" or red button, login if requested with a database username, and you'll get to create an Apex Workspace.
    See the XE [url http://download.oracle.com/docs/cd/E17781_01/admin.112/e18585/toc.htm]Getting Started Guide - 6.1. Getting Started with Application Express
    For exploring APEX, the [url http://download.oracle.com/docs/cd/E17556_01/welcome.html]Documentation library for APEX 4.0 should come in handy.
    Edited by: orafad on May 28, 2011 12:52 PM

Maybe you are looking for