presentation #36576 presentation #36576 oracle9i ldap: advanced configuration of directory naming...

Post on 23-Dec-2015

225 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

Presentation #36576Presentation #36576Oracle9i LDAP: Advanced

Configuration of Directory Naming

Daniel T. LiuSenior Technical consultant

First American Real Estate Solutions

Date: Wednesday, September 10, 2003 @ 4:30 AM - 5:30 PM

Place: Moscone Room 131

Paper #36576, Daniel T. Liu, FARES

2

Agenda

• Net Services Basics• Connecting Methods• OID Basics• Step-by-Step Setup of

OID for Names Resolutions

• Migrating to OID• Q & A

Paper #36576, Daniel T. Liu, FARES

3

Net Services Basics

Figure 3

C lient

db3

O racleInternet

D irectoryServer

O racleNam esServer

db5

db6

db1

db4

O IDdb7

listener_sd8

listener_dallas

listener_sd9

listener_newyork

O racle NetDomain: company.com

NewYork/Linux

Dallas/NT

SanDiego/Solaris

T NSNAM E.O RA

db1 =(DESCRIPTION =(ADDRESS =(PROTOCOL= TCP)(Host= host1)(Port= 1521))(CONNECT_DATA =(SID = db1)))

db2 =(DESCRIPTION =(ADDRESS =(PROTOCOL= TCP)(Host= host2)(Port= 1521)) (CONNECT_DATA =(SID = db2)) )

Paper #36576, Daniel T. Liu, FARES

4

Net Services In a Nutshell

• What is the database instance ?– Instance name (SID)

• Where is the database instance ?– Instance address (host, IP address, port)

• How to communicate ?– Network language (protocol)

Paper #36576, Daniel T. Liu, FARES

5

Net Services Components

• Net Services Client

• Net Services Server

• Oracle Net– Oracle Net Foundation Layer– Oracle Protocol Support

• Listener

Paper #36576, Daniel T. Liu, FARES

6

Client/Server

• Net Services Client– Enables client connections to databases across a

network. A client-side application sends a request to Oracle Net Services to be transported across the network to the server.

• Net Services Server– Enables the listener, through a protocol, to

accept connections from client application on the network.

Paper #36576, Daniel T. Liu, FARES

7

Oracle Net

• Oracle Net Foundation Layer– Provides a standard method for a client application

to establish and maintain communication with the Oracle database server on top of industry-standard network protocol.

• Oracle Protocol Support– TCP/IP (with SSL)– Named Pipes– LU 6.2– VI

Paper #36576, Daniel T. Liu, FARES

8

Oracle Net

Figure 1

Client Application RDMBS

Oracle Net Foundation LayerOracle Net Foundation Layer

Oracle Support P rotocolO racle Support P rotocol

Ora

cle

Net

NAMED PIPES

Ora

cle

Net

TCP/IP

LU 6.2

VI

Paper #36576, Daniel T. Liu, FARES

9

Listener

• A separate process that resides on the server

• Receives incoming client connection requests and manages the traffic of these requests to the server

• Can listen to one or more databases either on the same system or on different system

Paper #36576, Daniel T. Liu, FARES

10

Listener.oralistener_dallas =

(address_list = (address = (protocol = ipc)(key = db1))

(address = (protocol = tcp)(host = dallas.company.com)(port = 1521))

)sid_list_listener_dallas =

(sid_list = (sid_desc = (global_dbname = db1.company.com)(sid_name = db1)(oracle_home = d:\oracle\oracle81)

))

Paper #36576, Daniel T. Liu, FARES

11

Making the Connection

• Method #1– Retrieve from user’s

memory– Lengthy connect

string

• Method #2– Look up in your

phone book – tnsnames.ora

Paper #36576, Daniel T. Liu, FARES

12

Making the Connection

• Method #3– Call switchboard– Oracle Names Server– Oracle Internet

Directory (LDAP)

Paper #36576, Daniel T. Liu, FARES

13

Method #1: Retrieve From User’s Memory

Create a lengthy connect string as follows:

connect scott/tiger@(description=

(address = (portocol = tcp) (host=dallas.company.com)

(port = 1521))(connect_data= (service_name =

db1.company.com)))

Paper #36576, Daniel T. Liu, FARES

14

Method #2:Retrieve From A Client Machine

Local Naming resolves a net service name to a network address using information configure in a local naming configuration file called tnsnames.ora.

connect scott/tiger@db1.company.comtnsnames.ora file:db1.company.com

(description= (address = (portocol = tcp)

(host=dallas.company.com)(port = 1521)

)(connect_data= (service_name = db1.company.com))

)

Paper #36576, Daniel T. Liu, FARES

15

Method #3:Retrieve From A Central System

Central Naming stored the names and address of all database services in a central place on a network.

Two popular methods:1. Oracle Names - Oracle proprietary software to store the service names on a network

2. Directory Naming - clients can use network information stored in a centralized LDAP- compliant directory server to access a database service (Oracle Internet Directory)

Paper #36576, Daniel T. Liu, FARES

16

Oracle Internet Directory Basics

• Directory

• LDAP

• Oracle Internet Directory (OID)

• OID Terminology

• OID Architecture

• How Net Services Use A Directory Server

Paper #36576, Daniel T. Liu, FARES

17

Directory

• Primarily read-focused

• Designed to handle relatively simple transactions on relatively small units of data

• Designed to be location-independent

• Designed to store information in entries

Paper #36576, Daniel T. Liu, FARES

18

LDAP

• LDAP stands for Lightweight Directory Access Protocol

• It provides all users and applications in the enterprise with a single, well-defined, standard interface to a single, extensible directory

Paper #36576, Daniel T. Liu, FARES

19

LDAP

• It reduces the need to enter and coordinate redundant information in multiple services scattered across the enterprise

• Its well-defined protocol and interfaces make it more practical to deploy internet-ready applications that leverage the directory.

Paper #36576, Daniel T. Liu, FARES

20

Oracle Internet Directory (OID)

• A general-purpose directory service that enables fast retrieval and centralized management of information

• Full-featured LDAP Version 3 compliant directory service

• Major Benefits includes:– Scalability– High Availability– Security

Paper #36576, Daniel T. Liu, FARES

21

OID Terminology

• Entries• Distinguished Name (DN)• Directory Information Tree (DIT)• Relative Distinguished Name (RDN)• Attributes• Object Classes• Directory Schema• Naming Contexts

Paper #36576, Daniel T. Liu, FARES

22

Directory Information Tree

DIT ( Directory Inform ation Tree ) F igure 5

roo t

o=xyz com pany

c=us

ou=sa les

cn=John

ou=accountingou=m anufacturing

cn=T imcn=Larry

c=uk

cn=Jackcn=Tomcn=A nncn=M ary cn=D an

ou=m arketing

Paper #36576, Daniel T. Liu, FARES

23

OID Architecture

• Oracle Directory Server Instance

• OID Monitor

• OID Control Utility (OIDCTL)

• Oracle9i Database

Paper #36576, Daniel T. Liu, FARES

24

OID Architecture

Figure 6

Oracle9i

O racle NetListener

D ispatcher

O ID Monitor

O /S

OracleNet

LDAP Server Instance 2

O ID ListenerD ispatcher

OracleD irectory

Server

OracleD irectory

Server

OracleD irectoryManager

O IDControlU tility

LDAP Server Instance 1

O ID ListenerD ispatcher

OracleD irectory

Server

O /S

LDAP

OracleNet

Oracle Net

OracleNet

LDAP

Oracle Net

Paper #36576, Daniel T. Liu, FARES

25

How Net Services Uses A Directory Server

Figure 7

DIT

OID RepositoryDatabase

OID Server

Oracle Net

DB1

Oracle NetListener

Net Services Client

dc=com

dc=company

dc=O racleContext

Step 1Step 3

Step 2

Step 5

Step 4

Step 4

DirectoryInform ation

Tree

DIT

Paper #36576, Daniel T. Liu, FARES

26

Step-By-Step Setup Of Oracle Internet Directory For Names Resolution

• Step #1: Planning the Network

• Step #2: Installing OID Software

• Step #3: Creating OID Repository Database and OID Schema

• Step #4: Starting OID Server

Paper #36576, Daniel T. Liu, FARES

27

Step-By-Step Setup Of Oracle Internet Directory For Names Resolution

• Step #5: Setting Up Directory Tree (Adding New Entry For Naming Context)

• Step #6: Setting Up An Oracle Context

• Step #7: Adding Service Names To OID

• Step #8: Setting Up The Client Machine

Paper #36576, Daniel T. Liu, FARES

28

Step #1: Planning The Network

1. Understanding the different version of Oracle Internet Directory

Oracle Internet Directory Database

2.0.6 8.1.6

2.1.1 8.1.7

3.0.1 9.0.1

Paper #36576, Daniel T. Liu, FARES

29

Step #1: Planning The Network

2. Examine Company’s Existing Oracle network environment

– List of all the network domains– Oracle database servers within each domain– Oracle instances and listeners running on each

server– Number of Oracle Clients

Paper #36576, Daniel T. Liu, FARES

30

Step #1: Planning The Network

3. Planning the Directory Tree– Single domain called “company.com”– 6 Oracle instances registered

Figure 8

dc=com

dc=com pany

dc=O racleC ontext

cn=db1 cn=db3 cn=db7cn=db6cn=db5cn=db4

Paper #36576, Daniel T. Liu, FARES

31

Step #2: Installing OID Software

1. Read the Installation Guide2. Prepare the environment

- PATH- ORACLE_BASE- ORACLE_HOME- NLS_LANG- PORT 389 is not in use by another process

3. Mount the CD and bring up the Universal Installer

Paper #36576, Daniel T. Liu, FARES

32

Step #2: Installing OID Software

4. Choose installation type:- “Management and Integration” option

- Then, “Oracle Internet Directory” option

5. Choose install OID schema on:- An existing database

- Or, a new independent database (preferred)

6. In “Summary” window, review information

7. Click “Install”, file copy process begins.

Paper #36576, Daniel T. Liu, FARES

33

Step #3: Creating OID Repository Database and OID Schema

1. The “Configuration Tools” window appears at the end of installation

2. The Universal Installer will first create and start an OID database instance

3. Then, it creates OID schema and objects.- $ORACLE_HOME/ldap/admin/newldap.sql

4. Choose “Exit” and review log file for any installation errors

Paper #36576, Daniel T. Liu, FARES

34

Step #4: Starting OID Server

1. After successfully completing the installation, the default OID Monitor Daemon and LDAP Server Instance will already be running against OID database instance

2. To start manually:- oidmon connect=<net_service_name> start

- Oidctl connect=<net_service_name> server=oidldapd instance=1 start

Paper #36576, Daniel T. Liu, FARES

35

Paper #36576, Daniel T. Liu, FARES

36

Paper #36576, Daniel T. Liu, FARES

37

Paper #36576, Daniel T. Liu, FARES

38

Paper #36576, Daniel T. Liu, FARES

39

Paper #36576, Daniel T. Liu, FARES

40

Paper #36576, Daniel T. Liu, FARES

41

Paper #36576, Daniel T. Liu, FARES

42

Paper #36576, Daniel T. Liu, FARES

43

Paper #36576, Daniel T. Liu, FARES

44

Paper #36576, Daniel T. Liu, FARES

45

Paper #36576, Daniel T. Liu, FARES

46

Step #5: Setting Up Directory Tree

1. Invoke the Oracle Directory Manager

2. Type user name and password (orcladmin/welcome)

3. Create new admin user if needed- Grant “Browse, Add, Delete” access rights

4. Create the Naming Context- Add new entry “dc=com”

- Add new entry “dc=company” under “dc=com”

Paper #36576, Daniel T. Liu, FARES

47

Paper #36576, Daniel T. Liu, FARES

48

Paper #36576, Daniel T. Liu, FARES

49

Paper #36576, Daniel T. Liu, FARES

50

Paper #36576, Daniel T. Liu, FARES

51

Paper #36576, Daniel T. Liu, FARES

52

Paper #36576, Daniel T. Liu, FARES

53

Paper #36576, Daniel T. Liu, FARES

54

Paper #36576, Daniel T. Liu, FARES

55

Paper #36576, Daniel T. Liu, FARES

56

Paper #36576, Daniel T. Liu, FARES

57

Step #6: Setting Up Oracle Context

1. Start the Net Configuration Assistant

2. Choose “Directory Service Access Configuration” option

3. Choose “Create a new Oracle Context”

4. Choose “Oracle Internet Directory”

5. Enter LDAP server location

Paper #36576, Daniel T. Liu, FARES

58

Step #6: Setting Up Oracle Context

6. Enter an administrative context in which to create the Oracle Context. In our case, it is “dc=company,dc=com”

7. Enter user name and password (cn=orcladmin/welcome)

8. The authenticated user is added to the following groups

- OracleDBCreators (OracleDBCreators,cn=OracleContext)

- OracleNetAdmins (cn=OracleNetAdmins,cn=OracleContext)

Paper #36576, Daniel T. Liu, FARES

59

Paper #36576, Daniel T. Liu, FARES

60

Paper #36576, Daniel T. Liu, FARES

61

Paper #36576, Daniel T. Liu, FARES

62

Paper #36576, Daniel T. Liu, FARES

63

Paper #36576, Daniel T. Liu, FARES

64

Paper #36576, Daniel T. Liu, FARES

65

Paper #36576, Daniel T. Liu, FARES

66

Paper #36576, Daniel T. Liu, FARES

67

Step #7: Adding Service Names To OID

Method #1:1. Open Net Assistant. Under “Net Configuration”

and “Directory” node, click “Service Naming”2. Enter username and password when the “Directory

Server Authentication” window appears3. Highlight “Service Naming” node. Go to Menu

“Edit”, then “Create”, the “Net Service Name Wizard” window appears.

4. Enter Net Services Information: (Host Name, Port, Protocol, etc)

Paper #36576, Daniel T. Liu, FARES

68

Paper #36576, Daniel T. Liu, FARES

69

Paper #36576, Daniel T. Liu, FARES

70

Paper #36576, Daniel T. Liu, FARES

71

Step #7: Adding Service Names To OID

Method #2:1. Prepare a LDIF file (example.ldif)

dn:cn=db1,dc=Oraclecontext,dc=company,dc=com

objectclass: top

objectclass: db1NetServie

cn: db1

db1NetDescString: (description =

(address = (protocol = tcp)

(host = dallas.company.com)

(port = 1521))

(connect_data = (service_name = db1.company.com)))

Paper #36576, Daniel T. Liu, FARES

72

Step #7: Adding Service Names To OID

Method #2:

1. Execute the “ldapadd” command:- ldapadd –D {bind dn} –w {password} –h

{ldap_host} –v {verbose mode} –f {ldif entry file)

- Ldapadd –D cn=orcladmin –w welcome –h server_name –v –f example.ldif

Paper #36576, Daniel T. Liu, FARES

73

Step #8: Setting Up The Client Machine

1. Install Oracle Net client software

2. Start the Net Configuration Assistant

3. Click “Naming Method Configuration” option

4. Select “Directory” under Naming Methods. Click “Finish”

Paper #36576, Daniel T. Liu, FARES

74

Step #8: Setting Up The Client Machine

1. This process create ldap.ora file under: $ORACLE_HOME/network/admin/

2. Configure Oracle Name Server or tnsnames.ora file as backup Naming Methods:

- NAMES.DIRECTORY_PATH=(LDAP,ONAME,TNSNAMES)

# LDAP.ORA Network Configuration File:D:\oracle\ora81\network\admin\ldap.ora

# Generated by Oracle configuration tools.

DEFAULT_ADMIN_CONTEXT = "dc=company,dc=com"

DIRECTORY_SERVERS= (dliu:389:636)

DIRECTORY_SERVER_TYPE = OID

Paper #36576, Daniel T. Liu, FARES

75

Migrating From Local Naming

1. Start Oracle Net Assistant.

2. Choose Command > Directory > Import Net Service Names.

3. Enter username and password.

4. “Directory Server Migration Wizard” starts, Click Next.

Paper #36576, Daniel T. Liu, FARES

76

Migrating From Local Naming

5. The “Select Net Service Names” window appears. From the list, select the network domain.

6. The “Select Destination Context” window appears. Select the Directory Naming Context that contains the Oracle Context from the Directory Naming list.

Paper #36576, Daniel T. Liu, FARES

77

Migrating From Local Naming

7. Click “Next”. The wizard exports the net service names.

8. Click “Finish” to complete the directory Server Migration wizard. Now OID has all the database connecting information loaded.

Paper #36576, Daniel T. Liu, FARES

78

Migrating From Oracle Names Server

Method #1: Direct Export1. Go to the Oracle Names Server, dump the

service address information to a tnsnames.ora file.

- NAMSCTL> dump_tnsnames

2. Transfer the file to the LDAP server.- ftp ldapserver.company.com- Put tnsnames.ora

3. Load the net service information.

Paper #36576, Daniel T. Liu, FARES

79

Migrating From Oracle Names Server

Method #2: In-Direct Export

1. Run DUMP_LDAP from Oracle name Server.

- NAMESCTL> dump_ldap company.com –f sample.ldif

2. Go to LDAP server, run the “ldapadd” command.

Paper #36576, Daniel T. Liu, FARES

80

Migrating By Proxy

• Oracle Client version is 8.1.5 or earlier.

• Use Oracle Names LDAP proxy server.

• See article “Migration by Proxy” in May 2001 of Oracle Magazine for details.

Paper #36576, Daniel T. Liu, FARES

81

Summary

• Net Services Basics.

• Connection Methods:

• Directory

• LDAP

• Oracle Internet Directory (OID)

• OID Terminology and Architecture.

Paper #36576, Daniel T. Liu, FARES

82

Summary

• How Net Services saved in Directory Server.

• Step-by-Step setup of Directory Naming using Oracle Internet Directory.

• Migrating from Local Naming.

• Migrating from Oracle Names Server.

Paper #36576, Daniel T. Liu, FARES

83

References

Oracle9i Net Services. Release 1 (9.0.1);Oracle Internet Directory, Administrator’s Guide. Release 3.0.1;Oracle Internet Directory, Administrator’s Guide. Release 2.1.1;Net8: A Step-by-Step Setup of Oracle Names Server; Oracle Open World

2000;POracle Metalink and support papers numbers:Note: 157892.1, Quick Start Guild: Oracle Internet Directory Installation

3.0.1;Note: 112763.1, Example of LDAP setup for Net8 Administration;Note: 120717.1, Net*8 LDAP Naming: Adding TNS Service Names to an

OID.

Reprinted from Oracle Internals

I would also like to acknowledge the assistance of Bob Polak of the Allant Group, Ann Collins, Larry Bailey, Husam Tomeh and Archana Sharma of FARES, and Roger Peterson of Oracle.

Paper #36576, Daniel T. Liu, FARES

84

Thanks For Coming !!

Daniel Liu Contact Information

Phone: (714)-701-3346

Email: dliu@firstam.com

Email: daniel_t_liu@yahoo.com

Company Web Site:

http://www.firstam.com

top related