Distributed computing environment

Slides:



Advertisements
Similar presentations
DIGIDOC A web based tool to Manage Documents. System Overview DigiDoc is a web-based customizable, integrated solution for Business Process Management.
Advertisements

©Ian Sommerville 2004Software Engineering, 7th edition. Chapter 9 Distributed Systems Architectures Slide 1 1 Chapter 9 Distributed Systems Architectures.
Distributed Systems 1 Topics  What is a Distributed System?  Why Distributed Systems?  Examples of Distributed Systems  Distributed System Requirements.
 Introduction Originally developed by Open Software Foundation (OSF), which is now called The Open Group ( Provides a set of tools and.
Distributed components
Distributed Systems Architectures
Web Servers How do our requests for resources on the Internet get handled? Can they be located anywhere? Global?
2 Systems Architecture, Fifth Edition Chapter Goals Describe client/server and multi-tier application architecture and discuss their advantages compared.
.NET Mobile Application Development Introduction to Mobile and Distributed Applications.
Network File System (NFS) in AIX System COSC513 Operation Systems Instructor: Prof. Anvari Yuan Ma SID:
1 Network File System. 2 Network Services A Linux system starts some services at boot time and allow other services to be started up when necessary. These.
A centralized system.  Active Directory is Microsoft's trademarked directory service, an integral part of the Windows architecture. Like other directory.
CSC 8320 Advanced Operating System Distributed Computing Environment (DCE) Presenter: Ke Gao Instructor: Professor Zhang.
Ch4: Distributed Systems Architectures. Typically, system with several interconnected computers that do not share clock or memory. Motivation: tie together.
Middleware-Based OS Distributed OS Networked OS 1MEIT Application Distributed Operating System Services Application Network OS.
Chapter 6 Operating System Support. This chapter describes how middleware is supported by the operating system facilities at the nodes of a distributed.
Networks – Network Architecture Network architecture is specification of design principles (including data formats and procedures) for creating a network.
COMP1321 Digital Infrastructure Richard Henson February 2014.
DCE (distributed computing environment) DCE (distributed computing environment)
What is a Distributed File System?? Allows transparent access to remote files over a network. Examples: Network File System (NFS) by Sun Microsystems.
Distributed File System By Manshu Zhang. Outline Basic Concepts Current project Hadoop Distributed File System Future work Reference.
1 Introduction to Middleware. 2 Outline What is middleware? Purpose and origin Why use it? What Middleware does? Technical details Middleware services.
1 Introduction to Microsoft Windows 2000 Windows 2000 Overview Windows 2000 Architecture Overview Windows 2000 Directory Services Overview Logging On to.
PHANI VAMSI KRISHNA.MADDALI. Distributed ???? Is it Distributed Computing? What is Distributed Computing? Distributed Computing Vs Computing Environment.
Distributed Computing Environment (DCE) Presenter: Zaobo He Instructor: Professor Zhang Advanced Operating System Advanced Operating System.
Tanenbaum & Van Steen, Distributed Systems: Principles and Paradigms, 2e, (c) 2007 Prentice-Hall, Inc. All rights reserved RPC Tanenbaum.
NT SECURITY Introduction Security features of an operating system revolve around the principles of “Availability,” “Integrity,” and Confidentiality. For.
Hwajung Lee.  Interprocess Communication (IPC) is at the heart of distributed computing.  Processes and Threads  Process is the execution of a program.
Distributed Object Frameworks DCE and CORBA. Distributed Computing Environment (DCE) Architecture proposed by OSF Goal: to standardize an open UNIX envt.
CORBA Common Object Request Broker Architecture. Basic Architecture A distributed objects architecture. Logically, an object client makes method calls.
INTRODUCTION TO DBS Database: a collection of data describing the activities of one or more related organizations DBMS: software designed to assist in.
Introduction to Active Directory
TOPIC 7.0 LINUX SERVICES AND CONFIGURATION. ROOT USER Root user is called “super user” because it has power far beyond those of mortal user. As root,
Distributed File System. Outline Basic Concepts Current project Hadoop Distributed File System Future work Reference.
Distributed Computing Environment Distributed Computing Environment (DCE)
Active Directory Domain Services (AD DS). Identity and Access (IDA) – An IDA infrastructure should: Store information about users, groups, computers and.
COMP1321 Digital Infrastructure Richard Henson March 2016.
1 Distributed Systems Architectures Distributed object architectures Reference: ©Ian Sommerville 2000 Software Engineering, 6th edition.
Internet and Distributed Application Services
Chapter 1 Characterization of Distributed Systems
DISTRIBUTED SYSTEMS Principles and Paradigms Second Edition ANDREW S
DISTRIBUTED COMPUTING ENVIRONMENT
Module 8: Networking Services
Netscape Application Server
WEB SERVICES From Chapter 19 of Distributed Systems Concepts and Design,4th Edition, By G. Coulouris, J. Dollimore and T. Kindberg Published by Addison.
File System Implementation
Grid Computing.
SUBMITTED BY: NAIMISHYA ATRI(7TH SEM) IT BRANCH
THE STEPS TO MANAGE THE GRID
#01 Client/Server Computing
Client-Server Interaction
Chapter 3: Windows7 Part 4.
Distributed System Concepts and Architectures
Advanced Operating Systems
Introduction to z/OS Security Lesson 4: There’s more to it than RACF
An Introduction to Computer Networking
Chapter 2: System Structures
Distributed Systems Bina Ramamurthy 11/30/2018 B.Ramamurthy.
DISTRIBUTED COMPUTING ENVIRONMENT
Chapter 17: Client/Server Computing
COM, DCOM and Software Components
The Anatomy and The Physiology of the Grid
WEB SERVICES From Chapter 19, Distributed Systems
The Anatomy and The Physiology of the Grid
Distributed Systems Bina Ramamurthy 4/22/2019 B.Ramamurthy.
Introduction To Distributed Systems
Basic organizations and memories in distributed computer systems
#01 Client/Server Computing
Presentation transcript:

Distributed computing environment By: Manish Bhardwaj

Distributed Computing Environment (DCE) Introduction Originally developed by Open Software Foundation (OSF), which is now called The Open Group (www.opengroup.org) Provides a set of tools and services which simplify and support the development and operation of distributed applications an example of “middleware” a layer of software that sits on top of the host operating system (e.g., UNIX) and networking services, and provides a single, transparent distributed computing environment based on the Client/Server Model

Why Use DCE? Harnesses available computing resources Increases availability Facilitates collaborative work and minimizes storage limitations Tracks data and programs that move around Accommodates heterogeneous data Helps maintain distributed applications Helps synchronize events Protects distributed resources

DCE Services

DCE Supporting Models Client/Server Model RPC Model Data Sharing Model Distributed Object Model

Application Of DCE Microsoft DCOM ODBC

DCE Architecture Overview

Components of DCE Process and Thread Provides Programming layout for concurrent applicati-ons. Create and control multiple threads of execution in a single process. Synchronization to access for global data within an a-pplication .

RPC Provide tools to provide client –Server application. Provides basis for all communication in DCE. N/w and Protocol independent. Secure communication b/n client and server. Automatically convert data to appropriate format needed by client and servers.

DTS Time Service is provided in synchronization. Maps time sources from external source to other external destination.

Name Services CDS( cell directory service), GDS( global directory service) and global directory agent (GDA) are there. Naming is provided uniquely and location transparen--cy is achieved.

Security Service Authentication and authorization to protect system resources against illegitimate access.

DFS Ensures Location Transparency High Performance High availability Provides file services to clients of other file systems.

DCE RPC the fundamental communications mechanism allows direct calls to procedures on remote systems as if they were local procedure calls simplifies the development of distributed applications by eliminating the need to explicitly program the network communications between the client and server masks differences in data representations on different hardware platforms, allowing distributed programs to work transparently across heterogeneous systems

How DCE RPC works ?

Binding in RPC Client must be able to find the server before making an RPC call. This can be done by asking the directory service for the location of the server. Server should first advertise itself in the directory by adding its namespace, interfaces implemented, protocols used for communication and location

Example for RPC

Directory Services DCE Cell Directory Service (CDS) is the mechanism for logically naming objects within a DCE cell (a group of client and server machines) Applications identify resources by name, without needing to know where the resources are located DCE cells can also participate in a worldwide directory service using the DCE Global Directory (GDS), which is based on the X.500 standard, or the Internet-system Domain Name Service (DNS)

Distributed Time Service Problem with clocks in distributed environment DCE/DTS provides synchronized time for users in distributed computing environment Supports event sequencing, duration and scheduling Synchronized with UTC, an international time standard

Keeps machine’s local time synchronized by querying the time servers Time Clerk Keeps machine’s local time synchronized by querying the time servers Time Server Answers the time queries Could query other time servers Three different Types Local Time Server Global Time server Courier Time Server

DCE/DTS Courier time server synchronizes with a global time server DTS time format is UTC (an universal standard supported by NIST) – broadcast by a variety of sources

Security Service DCE Security Service provides the mechanisms for writing applications that support secure communications between clients and servers enables processes on different machines to be certain of one another’s identities (authentication) allows a server to determine whether a given user is authorized to access a particular resource (authorization) supports several protection levels for messages as they travel across the network

DCE Security Service Provides trustworthy identification of users, clients, servers and systems (principles) Provides integrity and privacy of communications 2 way authentication scheme. Ensures security by implementing a trusted third party approach based on Kerberos technology

Three Co-operative services Registry Service Authentication Service Manages cell’s security database Authentication Service Provides trustworthy identification Privilege Service Provides authorization information Additional Facilities Access Control List List of authorized users for a resource Login Facility Initializing the user’s security environment

Working of DCE/Security service

Distrusted File Service DCE Distributed File Service (DFS) is a high-performance, scalable, secure method for sharing remote files DFS appears to the user as a local file systems, providing access to files form anywhere in the network for any user, with the same filename used by all (uniform file access) DFS includes many advanced features not found in traditional distributed file systems, including caching, security, and scalability over wide-area networks

DCE Distributed File System It is a distributed client/server application built over underlying DCE components Features of DCE/DFS Uniform File Access Intracell Location Transparency Performance Availability Integration Interoperation Standards – POSIX 1003.1

DFS data is organized at three levels Files and Directories FileSets Aggregates

DCE/DFS Components Cache Manager File Exporter Token Manager Client side of DFS and uses local cache for access File Exporter Server side of DFS Runs on a DFS file server machine Token Manager Synchronize access to files by multiple clients by issuing token that carry access rights. Types of tokens Data Tokens Status Tokens Lock Tokens Open Tokens

Additional File Servers DCE Local File System Physical file system provided within DCE for storage of files More powerful than UNIX file system Flexible Data Protection through ACL Ability to replicate, backup and move transparently Logging for fast recovery after a crash Additional File Servers FileSet Server Basic Overseer Server Replication Server Update Server Backup Server Fileset Location Server

DCE/DFS

Distributed Time Service Provides a way to synchronize the clocks on the different machines in a distributed system Threads DCE supports multi-threaded applications i.e., programs that use “lightweight” processes to perform many actions concurrently DCE Threads are based on the POSIX threading standard

The Domain of the Distributed Environment DCE Cells The Domain of the Distributed Environment DCE can provide scalable computing environment - Small environment * two network hosts * typically consists of a single group of users who share common goals - large environment * a network (or internetworks) of thousands of hosts * typically consists of a diverse groups of users, each group having its own goals and pool of shared resources a cell is the basic unit of operation and administration a cell is a group of users, hosts, and resources that share common DCE services

Distributed Operation in a DCE Cell Cell Configurations at a minimum, a cell includes CDS, Security Service and Time Service Distributed Operation in a DCE Cell

DCE Client and Server Software

A Simple DCE Cell

Cell with DFS and Multiple DCE Clients

Cells and Naming The DCE Directory Service consists of two directory services: CDS & GDS CDS manages names inside cells GDS manages names outside cells and between cells GDS is an implementation of a directory standard known as X.500 Directory Service (XDS)

Domain Name Service (DNS) - another widely used existing global name service - used primarily as a name service for Internet host names although DNS is not a part of DCE, support for cells to address each other through DNS is provided Global Directory Agent (GDA) makes inter-cell communication possible

- begins with the … prefix DCE naming environment supports two kinds of names: Global and Local (cell-relative) names Global Names - begins with the … prefix - can refer to an object within a cell or an object outside of a cell Example 1 - uses X.500 name for global cell name Example 2 - uses DNS name for global cell name

- do not include a global cell name - begins with the /.: prefix Local Names - do not include a global cell name - begins with the /.: prefix Example: /…/C=US/O=XYZ/OU=Portland/subsys/PriceMax/price_server1 /.:/subsys/PriceMax/price_server 1 are equivalent when used within the cell named /…/C=US/O=XYZ/OU=Portland

Junctions some services connect into the cell by means of specialized CDS entries called “junctions” contain binding information that enables a client to connect to a server outside the Directory Service (e.g., Security Service, DFS) Example 1 - Security Service Junction(/.:/sec) Example 2 - DFS Junction (/.:/fs)

DCE RPC Enhanced version of the HP’s NCS (Network Computing System) RPC DCE threads allow increased concurrency in servers and clients supports TCP and UDP transport services authenticated RPC supported Interface Definition Language the service interfaces are defined by DCE IDL a universal unique identifier (UUID) in the interface distinguishes this interface form any other interface UUIDs are generated by uuidgen

Distributed Application Development Tasks

DCE client (runtime library) finds a server using a two-step process Binding DCE client (runtime library) finds a server using a two-step process The client gets the server’s host address from the CDS The client finds the server process address by searching the host’s endpoint map (which is maintained by RPC daemon, rpcd) Basic server initialization steps: Register each interface with the server runtime library Register protocol sequences that the server will use for RPCs Advertise the server location to clients Listen for remote procedure calls

Advertising Server Interface

Finding a Server

More on DCE More information on DCE can be found from The Open Group (http://www.opengroup.org/dce) Free DCE software can be downloaded from (http://www.opengroup.org/dce/download/)