Check the FQDN of your server by executing following two commands in the terminal.

Size: px
Start display at page:

Download "Check the FQDN of your server by executing following two commands in the terminal."

Transcription

1 LDAP or Lightweight Directory Access Protocol, is a protocol designed to manage and access related information in a centralized, hierarchical file and directory structure. An LDAP server is a non-relational database that is optimized for accessing, but not writing data. For example, it can be used as an address book like clients or authentication of various services like Samba, or Linux system authentication, where it replaces /etc/passwd and basically holds the user data. 1. Prerequisite a. The LDAP server should have a valid FQDN. b. Install EPEL and REMI repositories to remove any dependencies problems. a. Configure hostname Edit /etc/hosts and add the following # cat /etc/hosts demohost.com com Add hostname in /etc/hostname and /etc/sysconfig/network # cat /etc/hostname demohost # cat /etc/sysconfig/network NETWORKING=yes HOSTNAME="demohost" Check the FQDN of your server by executing following two commands in the terminal. # hostname demohost # hostname -f demohost.com b. Install EPEL/REMI Install REMI repository # wget # rpm -Uvh remi-release-6.rpm

2 Now install EPEL repository # wget # rpm -Uvh epel-release-6-8.noarch.rpm 2. Configure firewall Configure firewall to allow traffic to LDAP server. Add the following lines in /etc/sysconfig/iptables # nano /etc/sysconfig/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 389 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 636 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport j ACCEPT Restart firewall to reload new settings. # service iptables restart

3 3. Configure LDAP server for performance and security Edit few parameters in the server for performance and security. Edit the file /etc/sysctl.conf # nano /etc/sysctl.conf Append the following lines. net.ipv4.tcp_keepalive_time = 350 net.ipv4.ip_local_port_range = fs.file-max = Next edit the file /etc/security/limits.conf # nano /etc/security/limits.conf Append the following lines. * soft nofile 8192 * hard nofile 8192 Now edit the file /etc/profile # nano /etc/profile Add the following line at the end. ulimit -n 8192 Lastly edit file /etc/pam.d/login # nano /etc/pam.d/login Add the line at the end.

4 session required /lib/security/pam_limits.so Reboot the server. 4. Install 389 Directory Server Now create a LDAP user account. # useradd ldapadmin # passwd ldapadmin Install 389 directory server by executing following command # yum install -y 389-ds openldap-clients 5. Configure LDAP server Let us now configure LDAP server. Execute the following command to configure 389 directory server. # setup-ds-admin.pl Answer the questions by reading it carefully.

5 Would you like to continue with set up? [yes]:yes Would you like to continue? [no]: yes Choose a setup type [2]:2 Computer name:demohost.com System User [nobody]: ldapadmin System Group [nobody]: ldapadmin

6 Do you want to register this software with an existing configuration directory server? [no]:no Configuration directory server administrator ID [admin]: Password: Password (confirm): Administration Domain[com]: Directory server network port [389]: Directory server identifier [demohost]:demohost

7 Suffix [dc=com]: Directory Manager DN [cn=directory Manager]: ## Press Enter ## Password: ## Enter the password ## Password (confirm): Administration port [9830]:9830 Are you ready to set up your servers? [yes]:yes If the script runs successfully, then you will get the following messages at the end of installation. Updating the configuration for the httpd engine... Starting admin server... output: Starting dirsrv-admin:

8 output: [ OK ] The admin server was successfully started. Admin server was successfully created, configured, and started. Exiting... Execute the following two commands to start LDAP server automatically on reboot. # chkconfig dirsrv on # chkconfig dirsrv-admin on 6. Test LDAP server Now test LDAP server using following command. # ldapsearch -x -b "dc=demohost,dc=com" LDAP server is now ready for use. 7. Install phpldapadmin Install phpldapadmin by executing following command in the terminal. # yum install phpldapadmin

9 Now we need to configure few parameters for phpldapadmin. Edit the file /etc/phpldapadmin/config.php and look for the line $servers->setvalue( login, attr, uid ); uncomment it and comment out this line $servers->setvalue( login, attr, dn ); Next edit /etc/httpd/conf.d/phpldapadmin.conf file. It should look something like this: Alias /phpldapadmin /usr/share/phpldapadmin/htdocs Alias /ldapadmin /usr/share/phpldapadmin/htdocs <Directory /usr/share/phpldapadmin/htdocs> Order Deny,Allow Deny from all Allow from Allow from all </Directory> If you want to access phpldapadmin on the server that phpldapadmin is installed then keep this line. Allow from If you want to access phpldapadmin from the local network where phpldapserver is installed then you may want keep this line. Allow from /16

10 Change the network ID from x.x to your network ID. I want to access it from anywhere, so i kept this line Allow from all Restart Apache # service httpd restart Now navigate to the following URL using your favorite web browser. Replace demohost.com with your own domain name. Click login from left sidebar.

11 Enter username and password that you have created in step 5 and click Authenticate. If the authentication is successful, then you will be logged in inside phpldapadmin. LDAP server is installed. Now you can explore all the features of LDAP through phpldapadmin.

Install Apache, PHP And MySQL On CentOS 7 (LAMP)

Install Apache, PHP And MySQL On CentOS 7 (LAMP) Install Apache, PHP And MySQL On CentOS 7 (LAMP) Version 1.0 Authors: Till Brehm , Falko Timme Updates: Srijan Kishore Follow Howtoforge

More information

Spacewalk. Installation Guide RHEL 5.9

Spacewalk. Installation Guide RHEL 5.9 Spacewalk Installation Guide RHEL 5.9 Contents Spacewalk Overview... 3 Spacewalk Project Architecture... 3 System Prerequisites... 3 Installation... 4 Spacewalk Components... 4 Prerequisites Install for

More information

Spacewalk. Installation Guide for CentOS 6.4

Spacewalk. Installation Guide for CentOS 6.4 Spacewalk Installation Guide for CentOS 6.4 Contents Spacewalk Overview... 3 Spacewalk Project Architecture... 3 System Prerequisites... 3 Installation... 4 Spacewalk Components... 4 Prerequisites Install

More information

Configure CEM Controller on CentOS 6.9

Configure CEM Controller on CentOS 6.9 Configure CEM Controller on CentOS 6.9 Contents Introduction Background Prerequisites Requirements Components Used Installing Oracle Java SE Runtime Environment 8 Downloading and Installing the CEM Controller

More information

Oracle VM. Installation and Upgrade Guide for Release 3.0.3

Oracle VM. Installation and Upgrade Guide for Release 3.0.3 Oracle VM Installation and Upgrade Guide for Release 3.0.3 E18548-04 January 2012 Oracle VM: Installation and Upgrade Guide for Release 3.0.3 Copyright 2009, 2012, Oracle and/or its affiliates. All rights

More information

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the all nodes.

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the all nodes. Network setup As the root user execute the command "ifconfig" on each host. Take a note of ipaddress's of all machines I have a home LAN so my addresses are class C which might be in the format 192.168.192.x.

More information

This tutorial will guide you how to setup and run your own minecraft server on a Linux CentOS 6 in no time.

This tutorial will guide you how to setup and run your own minecraft server on a Linux CentOS 6 in no time. This tutorial will guide you how to setup and run your own minecraft server on a Linux CentOS 6 in no time. Running your own server lets you play together with your friends and family with your own set

More information

Flush Dns Settings Linux Redhat 5 Step Step

Flush Dns Settings Linux Redhat 5 Step Step Flush Dns Settings Linux Redhat 5 Step Step Setup Cahing DNS Server in RHEL/CentOS 7. DNS cache servers are used to resolve any DNS query they receive. Operating System : CentOS Linux release 7.0.1406

More information

Configuring User Access for the Cisco PAM Desktop Client

Configuring User Access for the Cisco PAM Desktop Client CHAPTER 4 Configuring User Access for the Cisco PAM Desktop Client This chapter describes how to configure operators for the Cisco PAM desktop client. Note Whenever you upgrade the server software, you

More information

Installing Connector on Linux

Installing Connector on Linux CHAPTER 3 Revised: July 15, 2010 Overview This chapter provides a step-by-step guide to installing the Linux Connector on x86 and x86-64 servers running either Red Hat Enterprise Linux version 5 or Cent

More information

ULTEO OPEN VIRTUAL DESKTOP CENTOS 6.0 SUPPORT

ULTEO OPEN VIRTUAL DESKTOP CENTOS 6.0 SUPPORT ULTEO OPEN VIRTUAL DESKTOP V4.0.2 CENTOS 6.0 SUPPORT Contents 1 Prerequisites: CentOS 6.0 3 1.1 System Requirements.............................. 3 1.2 SELinux....................................... 3

More information

Content Gateway v7.x: Frequently Asked Questions

Content Gateway v7.x: Frequently Asked Questions Content Gateway v7.x: Frequently Asked Questions Topic 60066 Content Gateway FAQs Updated: 22-October-2013 Websense Content Gateway v7.x, v7.x Websense Web Security Gateway / Anywhere v7.x, v7.x How do

More information

User Manual op5 System 3.1

User Manual op5 System 3.1 User Manual op5 System 3.1 Table of Contents 1 Introduction... 2 2 Fundamentals... 2 2.1 op5 System... 2 2.2 System access... 2 2.2.1 The portal page... 2 2.2.2 Console and SSH access... 3 2.3 System accounts...

More information

Configuring User Access for the Cisco PAM Desktop Client

Configuring User Access for the Cisco PAM Desktop Client 5 CHAPTER Configuring User Access for the Cisco PAM Desktop Client This chapter describes how to configure operators for the Cisco PAM desktop client. Note Whenever you upgrade the server software, you

More information

(U) Hive Infrastructure Installation and Configuration Guide

(U) Hive Infrastructure Installation and Configuration Guide (U) Hive Infrastructure Installation and Configuration Guide November 11, 2012 Classified By: 0706993 Reason: 1.4(c) Declassify On: 20371105 Derived From: COL S-06 ii //20371105 November 2012 (U) Table

More information

Link Gateway Initial Configuration Manual

Link Gateway Initial Configuration Manual Link Gateway Initial Configuration Manual Copyright 2016 NetLinkz. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated

More information

Build Your Own Oracle RAC 11g Release 2 Cluster on Red Hat 4 and iscsi

Build Your Own Oracle RAC 11g Release 2 Cluster on Red Hat 4 and iscsi Build Your Own Oracle RAC 11g Release 2 Cluster on Red Hat 4 and iscsi Here is my setup which I have used for Installing Oracle RAC 11gR2 Laptop windows XP To access linux1 and linux2 There are 2 operating

More information

Setting Up Identity Management

Setting Up Identity Management APPENDIX D Setting Up Identity Management To prepare for the RHCSA and RHCE exams, you need to use a server that provides Lightweight Directory Access Protocol (LDAP) and Kerberos services. The configuration

More information

Authenticating and Importing Users with AD and LDAP

Authenticating and Importing Users with AD and LDAP Purpose This document describes how to integrate with Active Directory (AD) or Lightweight Directory Access Protocol (LDAP). This allows user authentication and validation through the interface. This is

More information

Virtual Hosting With PureFTPd And MySQL (Incl. Quota And Bandwidth Management) On CentOS 6.4

Virtual Hosting With PureFTPd And MySQL (Incl. Quota And Bandwidth Management) On CentOS 6.4 Virtual Hosting With PureFTPd And MySQL (Incl. Quota And Bandwidth Management) On CentOS 6.4 Version 1.0 Author: Falko Timme Follow me on Twitter Last edited 03/22/2013 This

More information

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the other 3(4) nodes.

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the other 3(4) nodes. Network setup As the root user execute the command "ifconfig" on each host. Take a note of ipaddress's of all machines I have a home LAN so my addresses are class C which might be in the format 192.168.192.x.

More information

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition BLUEPRINT TEAM REPOSITORY Installation Guide for Windows For Requirements Center & Requirements Center Test Definition Table Of Contents Contents Table of Contents Getting Started... 3 About the Blueprint

More information

User Manual. op5 System 3.0

User Manual. op5 System 3.0 User Manual op5 System 3.0 Table of Contents 1 Introduction...3 2 Fundamentals...3 2.1 op5 System...3 2.2 System access...3 2.2.1 The portal, web access...3 2.2.2 Console and SSH access...5 2.3 System

More information

a. puppet should point to master (i.e., append puppet to line with master in it. Use a text editor like Vim.

a. puppet should point to master (i.e., append puppet to line with master in it. Use a text editor like Vim. Head Node Make sure that you have completed the section on Precursor Steps and Storage. Key parts of that are necessary for you to continue on this. If you have issues, please let an instructor know to

More information

Authenticating and Importing Users with AD and LDAP

Authenticating and Importing Users with AD and LDAP Purpose This document describes how to integrate with Active Directory (AD) or Lightweight Directory Access Protocol (LDAP). This allows user authentication and validation through the interface. This is

More information

Red Hat Gluster Storage 3.2 Console Installation Guide

Red Hat Gluster Storage 3.2 Console Installation Guide Red Hat Gluster Storage 3.2 Console Installation Guide Installing Red Hat Gluster Storage Console Red Hat Gluster Storage Documentation Team Red Hat Gluster Storage 3.2 Console Installation Guide Installing

More information

LAMP Stack with VirtualHosts On Centos 6.x

LAMP Stack with VirtualHosts On Centos 6.x LAMP Stack with VirtualHosts On Centos 6.x This article illustrates how to install the Apache Mysql PHP Stack on Centos 6.x. Additionally, with this configuration, you can serve Multiple Domains using

More information

Deploying Rubrik Datos IO to Protect MongoDB Database on GCP

Deploying Rubrik Datos IO to Protect MongoDB Database on GCP DEPLOYMENT GUIDE Deploying Rubrik Datos IO to Protect MongoDB Database on GCP TABLE OF CONTENTS INTRODUCTION... 1 OBJECTIVES... 1 COSTS... 2 BEFORE YOU BEGIN... 2 PROVISIONING YOUR INFRASTRUCTURE FOR THE

More information

Realms and Identity Policies

Realms and Identity Policies The following topics describe realms and identity policies: Introduction:, page 1 Creating a Realm, page 5 Creating an Identity Policy, page 11 Creating an Identity Rule, page 15 Managing Realms, page

More information

HOW TO SECURELY CONFIGURE A LINUX HOST TO RUN CONTAINERS

HOW TO SECURELY CONFIGURE A LINUX HOST TO RUN CONTAINERS HOW TO SECURELY CONFIGURE A LINUX HOST TO RUN CONTAINERS How To Securely Configure a Linux Host to Run Containers To run containers securely, one must go through a multitude of steps to ensure that a)

More information

Two factor authentication for Apache using mod_auth_xradius

Two factor authentication for Apache using mod_auth_xradius Two factor authentication for Apache using mod_auth_xradius sandbox-logintc.com/docs/connectors/apache_alt.html Introduction LoginTC makes it easy for administrators to add multi-factor to Apache. This

More information

An internal CA that is part of your IT infrastructure, like a Microsoft Windows CA

An internal CA that is part of your IT infrastructure, like a Microsoft Windows CA Purpose This document will describe how to setup to use SSL/TLS to provide encrypted connections to the. This document can also be used as an initial point for troubleshooting SSL/TLS connections. Target

More information

Authenticating and Importing Users with Active Directory and LDAP

Authenticating and Importing Users with Active Directory and LDAP Purpose This document describes how to integrate Nagios with Active Directory (AD) or Lightweight Directory Access Protocol (LDAP) to allow user authentication and validation with an AD or LDAP infrastructure

More information

Installing idenprotect server on RHEL 6 or CentOS 6. idenprotect Ltd.

Installing idenprotect server on RHEL 6 or CentOS 6. idenprotect Ltd. Installing idenprotect server 1.2.0 on RHEL 6 or CentOS 6 idenprotect Ltd. Version 1.2.0, August 10th, 2017 Table of Contents Before Starting............................................................................

More information

Braindumps EX200 15q

Braindumps EX200 15q Braindumps EX200 15q Number: EX200 Passing Score: 800 Time Limit: 120 min File Version: 22.5 http://www.gratisexam.com/ Red Hat EX200 Red Hat Certified System AdministratorRHCSA This is the best VCE I

More information

Gateway Guide. Leostream Gateway. Advanced Capacity and Connection Management for Hybrid Clouds

Gateway Guide. Leostream Gateway. Advanced Capacity and Connection Management for Hybrid Clouds Gateway Guide Leostream Gateway Advanced Capacity and Connection Management for Hybrid Clouds Version 9.0 June 2018 Contacting Leostream Leostream Corporation 271 Waverley Oaks Rd Suite 206 Waltham, MA

More information

High Availability & Fault Tolerance of the Deployment Manager using NFS on Linux

High Availability & Fault Tolerance of the Deployment Manager using NFS on Linux High Availability & Fault Tolerance of the Deployment Manager using NFS on Linux Abstract: For this exercise a shared filesystem will be created using NFS 4 on which the dmgr profile will be created. This

More information

Globus Online: Setup and configure Globus Connect Endpoints howto guide - V1.4

Globus Online: Setup and configure Globus Connect Endpoints howto guide - V1.4 Globus Online: Setup and configure Globus Connect Endpoints howto guide - V1.4 A technical howto document presented to H3ABioNet Created by The System Administrator Task-Force Prepared for The greater

More information

Deploying Oracle Real Application Clusters 11g R2 on Red Hat Linux 6.x

Deploying Oracle Real Application Clusters 11g R2 on Red Hat Linux 6.x Deploying Oracle Real Application Clusters 11g R2 on Red Hat Linux 6.x Application Note Version: 1.0 Abstract: This application note covers key operations in detail to help you better understand how to

More information

AsteriskNow IPTables Firewall Configuration

AsteriskNow IPTables Firewall Configuration AsteriskNow IPTables Firewall Configuration In a previous guide I discussed how to setup an AsteriskNow server with Polycom phone support. In this guide I will illustrate how to tighten up your server

More information

Using SSL/TLS with Active Directory / LDAP

Using SSL/TLS with Active Directory / LDAP Purpose This document describes how to install the required certificate on the for use with LDAP or Active Directory (AD) Integration in. This process is required if your LDAP / AD server has a self signed

More information

How to Use This Lab Manual

How to Use This Lab Manual 3 Contents How to Use This Lab Manual........................................ 5 Lab 1: Setting Up the Student System.................................. 7 Lab 2: Installing Fedora............................................

More information

INUVIKA TECHNICAL GUIDE

INUVIKA TECHNICAL GUIDE Version 1.6 December 13, 2018 Passing on or copying of this document, use and communication of its content not permitted without Inuvika written approval PREFACE This document describes how to integrate

More information

Using Fluentd as an alternative to Splunk

Using Fluentd as an alternative to Splunk Using Fluentd as an alternative to Splunk As infrastructure within organizations grows in size and the number of hosts, the cost of Splunk may become prohibitive. I created this document to demonstrate,

More information

ULTEO OPEN VIRTUAL DESKTOP SUSE LINUX ENTERPRISE SERVER (SLES) 11 SP1 SUPPORT

ULTEO OPEN VIRTUAL DESKTOP SUSE LINUX ENTERPRISE SERVER (SLES) 11 SP1 SUPPORT ULTEO OPEN VIRTUAL DESKTOP V4.0.2 SUSE LINUX ENTERPRISE SERVER (SLES) 11 SP1 SUPPORT Contents 1 Prerequisites: SUSE Linux Enterprise Server (SLES) 11 SP1 3 1.1 System Requirements..............................

More information

Installation 1. Installing DPS. Date of Publish:

Installation 1. Installing DPS. Date of Publish: 1 Installing DPS Date of Publish: 2018-05-18 http://docs.hortonworks.com Contents DPS Platform support requirements...3 Installation overview...4 Installation prerequisites...5 Setting up the local repository

More information

Configuring User VPN For Azure

Configuring User VPN For Azure Configuring User VPN For Azure Last updated: April 11, 2017 Aviatrix Systems, Inc. 411 High Street Palo Alto CA 94301 USA http://www.aviatrix.com Tel: +1 844.262.3100 Page 1 of 10 TABLE OF CONTENTS 1 Overview...3

More information

LDAP Configuration Guide

LDAP Configuration Guide LDAP Configuration Guide Publication date: 11/8/2017 www.xcalar.com Copyright 2017 Xcalar, Inc. All rights reserved. Table of Contents About this guide 3 Configuring LDAP 4 Before you start 5 Configuring

More information

How to install LDAP. # yum install openldap-servers openldap nss_ldap python-ldap openldap-clients -y

How to install LDAP. # yum install openldap-servers openldap nss_ldap python-ldap openldap-clients -y How to install LDAP 1. First Check LDAP Components # rpm -qa grep ldap 2. You should reach to following files. If they are not present then you need to install them from yum or rpm openldap-servers-2.3.27-8.el5_2.4

More information

Installing MyDNS And The MyDNSConfig Control Panel On Fedora 8

Installing MyDNS And The MyDNSConfig Control Panel On Fedora 8 By Falko Timme Published: 2007-12-06 19:24 Installing MyDNS And The MyDNSConfig Control Panel On Fedora 8 Version 1.0 Author: Falko Timme Last edited 12/03/2007 In this tutorial

More information

Horizon DaaS Platform 6.1 Service Provider Installation - vcloud

Horizon DaaS Platform 6.1 Service Provider Installation - vcloud Horizon DaaS Platform 6.1 Service Provider Installation - vcloud This guide provides information on how to install and configure the DaaS platform Service Provider appliances using vcloud discovery of

More information

Two factor authentication for Apache using mod_auth_radius

Two factor authentication for Apache using mod_auth_radius Two factor authentication for Apache using mod_auth_radius sandbox-logintc.com/docs/connectors/apache.html Introduction LoginTC makes it easy for administrators to add multi-factor to Apache. This document

More information

CRM Integration LDAP 06/01/2016

CRM Integration LDAP 06/01/2016 CRM Integration LDAP 06/01/2016 CRM Integration LDAP Page 0 CRM Integration Contents Intro... 2 Configuration... 2 Connection... 2 Fields... 2 Show Contact... 3 Testing... 4 CRM Integration LDAP Page 1

More information

Offloading NDO2DB To Remote Server

Offloading NDO2DB To Remote Server Purpose This document is meant to show a step-by-step guide for offloading the NDO2DB daemon from the central server to an external, remote server. NDO2DB is an acronym of "Nagios Data Output To Database"

More information

Connector Administrator Guide, Release 3.X

Connector Administrator Guide, Release 3.X First Published: 2010-07-15 Last Modified: 2018-01-04 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387)

More information

CLI users are not listed on the Cisco Prime Collaboration User Management page.

CLI users are not listed on the Cisco Prime Collaboration User Management page. Cisco Prime Collaboration supports creation of user roles. A user can be assigned the Super Administrator role. A Super Administrator can perform tasks that both system administrator and network administrator

More information

Integrating Ubuntu based workstations in IPBrick s domain

Integrating Ubuntu based workstations in IPBrick s domain Integrating Ubuntu based workstations in IPBrick s domain IPBRICK International November 29, 2012 1 Contents 1 Introduction 3 2 IPBrick servers Setup Datasheet 3 2.1 IPBrick.I server - Intranet Master.......................

More information

CIS 192 Linux Lab Exercise

CIS 192 Linux Lab Exercise CIS 192 Linux Lab Exercise Lab 8: Samba Spring 2009 Lab 8: Samba The purpose of this lab is to share files among Windows and Linux hosts on a common network. The goal is to browse directories on the Linux

More information

akkadian Global Directory 3.0 System Administration Guide

akkadian Global Directory 3.0 System Administration Guide akkadian Global Directory 3.0 System Administration Guide Updated July 19 th, 2016 Copyright and Trademarks: I. Copyright: This website and its content is copyright 2014 Akkadian Labs. All rights reserved.

More information

An Introduction to Puppet Enterprise

An Introduction to Puppet Enterprise An Introduction to Puppet Enterprise Exercise & Lab Guide Puppet Education www.puppetlabs.com/education 2013 Puppet Labs 2013 Puppet Labs Lab 3.1: Pre-installation Objective: Assign a hostname to your

More information

Installation Oracle Applications R on OEL 5.2

Installation Oracle Applications R on OEL 5.2 Installation Oracle Applications R12.1.1 on OEL 5.2 Metalink Note Oracle E-Business Suite Release 12 Installation Guidelines [ID 405565.1] Oracle E-Business Suite Installation and Upgrade Notes Release

More information

User Management in Resource Manager

User Management in Resource Manager CHAPTER 8 This section describes how to manage user profiles. Topics in this section include: Overview of User Management, page 8-1 Using User Management, page 8-1 Overview of User Management In Resource

More information

Linux Essentials Objectives Topics:

Linux Essentials Objectives Topics: Linux Essentials Linux Essentials is a professional development certificate program that covers basic knowledge for those working and studying Open Source and various distributions of Linux. Exam Objectives

More information

Oracle Communications Session Delivery Manager Installation Guide. Release 8.1

Oracle Communications Session Delivery Manager Installation Guide. Release 8.1 Oracle Communications Session Delivery Manager Installation Guide Release 8.1 October 2018 Oracle Communications Session Delivery Manager Installation Guide, Release 8.1 Copyright 2014, 2018, Oracle and/or

More information

ULTEO OPEN VIRTUAL DESKTOP OPENSUSE 11.3 SUPPORT

ULTEO OPEN VIRTUAL DESKTOP OPENSUSE 11.3 SUPPORT ULTEO OPEN VIRTUAL DESKTOP V4.0.2 OPENSUSE 11.3 SUPPORT Contents 1 Prerequisites: opensuse 11.3 3 1.1 System Requirements.............................. 3 2 Repository 4 2.1 Online Method..................................

More information

Flush Dns Settings Linux Redhat 5 Step Step Pdf

Flush Dns Settings Linux Redhat 5 Step Step Pdf Flush Dns Settings Linux Redhat 5 Step Step Pdf How to setup a named DNS service on Redhat 7 Linux Server. ( 1, Serial 3h, Refresh after 3 hours 1h, Retry after 1 hour 1w, Expire after 1 week 1h ) As a

More information

03. (). ( oracle )..

03. (). ( oracle ).. 03 () ( oracle ) chkconfig --level 123456 xinetd off chkconfig --level 123456 sendmail off chkconfig --level 123456 cups off chkconfig --level 123456 cups-config-daemon off chkconfig --level 123456 smartd

More information

SECURE Gateway with Microsoft Azure Installation Guide. Version Document Revision 1.0

SECURE  Gateway with Microsoft Azure Installation Guide. Version Document Revision 1.0 SECURE Email Gateway with Microsoft Azure Installation Guide Version 4.7.0 Document Revision 1.0 Copyright Revision 1.0, November, 2017 Published by Clearswift Ltd. 1995 2017 Clearswift Ltd. All rights

More information

Sharing files and printers with Microsoft Windows

Sharing files and printers with Microsoft Windows 1 Sharing files and printers with Microsoft Windows CIFS, Samba, SMB. Different words, same thing. Samba is mainly used as a share in a mixed environment, usually with Windows and Linux. Samba is also

More information

Using RDP with Azure Linux Virtual Machines

Using RDP with Azure Linux Virtual Machines Using RDP with Azure Linux Virtual Machines 1. Create a Linux Virtual Machine with Azure portal Create SSH key pair 1. Install Ubuntu Bash shell by downloading and running bash.exe file as administrator.

More information

Installation and Upgrade 1. Installing DataPlane. Date of Publish:

Installation and Upgrade 1. Installing DataPlane. Date of Publish: 1 Installing DataPlane Date of Publish: 2018-08-07 http://docs.hortonworks.com Contents DataPlane Platform support requirements...3 Installation overview...4 Pre-installation tasks... 6 Prepare your clusters...

More information

OpenVPN Access Server v1.3 System Administrator Guide. Rev 1.0

OpenVPN Access Server v1.3 System Administrator Guide. Rev 1.0 OpenVPN Access Server v1.3 System Administrator Guide Rev 1.0 COPYRIGHT NOTICE Copyright OpenVPN Technologies 2009 OpenVPN Access Server System Administrator Guide ii TABLE OF CONTENTS 1 Introduction...

More information

Downloading and installing Db2 Developer Community Edition on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 24, 2018

Downloading and installing Db2 Developer Community Edition on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 Downloading and installing Db2 Developer Community Edition on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 This guide will help you download and install IBM Db2 software,

More information

RAP Installation README

RAP Installation README RAP Installation README (Redhat 9.x as platform) 1. Hardware System requirement CPU P3 100 + RAM 512M + Hard Disk (None SCSI) 20G+ Network Ports: 10/100/1000 1+ (HA and Clustering need 2+) CDROM System

More information

Stop all processes and then reboot - same as above startx. Log in as superuser from current login exit

Stop all processes and then reboot - same as above startx. Log in as superuser from current login exit Starting & Stopping shutdown -h now Shutdown the system now and do not reboot shutdown -r 5 Shutdown the system in 5 minutes and reboot shutdown -r now Shutdown the system now and reboot reboot Stop all

More information

EX200 EX200. Red Hat Certified System Administrator RHCSA

EX200 EX200. Red Hat Certified System Administrator RHCSA EX200 Number: EX200 Passing Score: 800 Time Limit: 120 min File Version: 14.0 http://www.gratisexam.com/ EX200 Red Hat Certified System Administrator RHCSA EX200 QUESTION 1 Configure your Host Name, IP

More information

CLI users are not listed on the Cisco Prime Collaboration User Management page.

CLI users are not listed on the Cisco Prime Collaboration User Management page. Cisco Prime Collaboration supports creation of user roles. A user can be assigned the Super Administrator role. A Super Administrator can perform tasks that both system administrator and network administrator

More information

How to open ports in the DSL router firmware version 2.xx and above

How to open ports in the DSL router firmware version 2.xx and above How to open ports in the DSL router firmware version 2.xx and above This example shows how to open port 3389 (which is used by Remote Desktop service) in the DSL router running firmware version 2.xx or

More information

Project #3: Implementing NIS

Project #3: Implementing NIS Project #3: Implementing NIS NIS Daemons Limitations of NIS How We Will Use NIS NIS Domain Name NIS Software Setting Up NIS on it20 /etc/nsswitch.conf Creating New Accounts on Ubuntu /etc/passwd /etc/shadow

More information

Installing FreePBX 14 on CentOS 7

Installing FreePBX 14 on CentOS 7 Installing FreePBX 14 on CentOS 7 READ FIRST Manual installations of FreePBX is considered an EXPERTS ONLY exercise. This method of installation is enough to get CORE functionality of FreePBX. Non-commercial

More information

Red Hat.Actualtests.EX200.v by.Dixon.22q. Exam Code: EX200. Exam Name: Red Hat Certified System Administrator (RHCSA) Exam

Red Hat.Actualtests.EX200.v by.Dixon.22q. Exam Code: EX200. Exam Name: Red Hat Certified System Administrator (RHCSA) Exam Red Hat.Actualtests.EX200.v2014-12-02.by.Dixon.22q Number: EX200 Passing Score: 800 Time Limit: 120 min File Version: 14.5 http://www.gratisexam.com/ Exam Code: EX200 Exam Name: Red Hat Certified System

More information

Let s Install FreeSwitch

Let s Install FreeSwitch Let s Install FreeSwitch Created by: Mack Hendricks (mack@dopensource.com) Sponsored by Tip s for Running This Lab This lab material is provided for free by dopensource You will need a SIP Provider to

More information

Implementing Single-Sign-On(SSO) for APM UI

Implementing Single-Sign-On(SSO) for APM UI Implementing Single-Sign-On(SSO) for APM UI 1.Introduction...2 2.Overview of SSO with LTPA...3 3.Installing and configuring TDS...5 3.1.Installing TDS 6.3...5 3.2.Changing the administrator password (Optional)...7

More information

Xcalar Installation Guide

Xcalar Installation Guide Xcalar Installation Guide Publication date: 2018-03-16 www.xcalar.com Copyright 2018 Xcalar, Inc. All rights reserved. Table of Contents Xcalar installation overview 5 Audience 5 Overview of the Xcalar

More information

Hands-on Exercise Hadoop

Hands-on Exercise Hadoop Department of Economics and Business Administration Chair of Business Information Systems I Prof. Dr. Barbara Dinter Big Data Management Hands-on Exercise Hadoop Building and Testing a Hadoop Cluster by

More information

Avaya CFA 7.1 Patch 1 (X01) Release Notes October 13, 2014

Avaya CFA 7.1 Patch 1 (X01) Release Notes October 13, 2014 Avaya CFA 7.1 Patch 1 (X01) October 13, 2014 Contents 1. PURPOSE... 3 2. PATCH PREREQUISITES AND CONSIDERATIONS... 3 2.1 PATCH PREREQUISITES... 3 2.1.1 CHECK THE HEALTH SYSTEM... 3 2.1.2 PERFORM BACKUP...

More information

EX200 Q&A. DEMO Version

EX200 Q&A. DEMO Version Red Hat Certified System Administrator (RHCSA) Exam Q&A DEMO Version Copyright (c) 2015 Chinatag LLC. All rights reserved. Important Note Please Read Carefully For demonstration purpose only, this free

More information

NOCTION. Intelligent Routing Platform Lite Self-Deployment Guide. Intelligent Routing Platform. Lite (free version)

NOCTION. Intelligent Routing Platform Lite Self-Deployment Guide. Intelligent Routing Platform. Lite (free version) NOCTION Intelligent Routing Platform Lite (free version) Intelligent Routing Platform Lite Self-Deployment Guide Table of Contents Intro...3 1. IRP Requirements...3 Hardware requirements...3 Software requirements...4

More information

Viglen NPACI Rocks. Getting Started and FAQ

Viglen NPACI Rocks. Getting Started and FAQ Viglen NPACI Rocks Getting Started and FAQ Table of Contents Viglen NPACI Rocks...1 Getting Started...3 Powering up the machines:...3 Checking node status...4 Through web interface:...4 Adding users:...7

More information

How to Set Up External CA VPN Certificates

How to Set Up External CA VPN Certificates To configure a client-to-site, or site-to-site VPN using s created by External CA, you must create the following VPN s for the VPN service to be able to authenticate Before you begin Use an external CA

More information

AWS Remote Access VPC Bundle

AWS Remote Access VPC Bundle AWS Remote Access VPC Bundle Deployment Guide Last updated: April 11, 2017 Aviatrix Systems, Inc. 411 High Street Palo Alto CA 94301 USA http://www.aviatrix.com Tel: +1 844.262.3100 Page 1 of 12 TABLE

More information

ACE Live on RSP: Installation Instructions

ACE Live on RSP: Installation Instructions ACE Live on RSP ACE Live on RSP: Installation Instructions These installation instructions apply to OPNET ACE Live on RSP Release 7.1.3. You can find the latest version of this document at the OPNET Support

More information

SAS Visual Investigator : Deployment Guide

SAS Visual Investigator : Deployment Guide SAS Visual Investigator 10.1.2: Deployment Guide Introduction.................................................................................... 3 About This Guide............................................................................

More information

3) Click the Screen Sharing option and click connect to establish the session

3) Click the Screen Sharing option and click connect to establish the session Preliminary steps before starting the experiment: 1) Click the Launch button to start the experiment. 2) Click OK to create a new session 3) Click the Screen Sharing option and click connect to establish

More information

SELinux Workshop Redux Jamie Duncan, Red Hat RVaLUG 19 April 2014

SELinux Workshop Redux Jamie Duncan, Red Hat RVaLUG 19 April 2014 SELinux Workshop Redux Jamie Duncan, Red Hat RVaLUG 19 April 2014 Introduction The expectation is that you will either have a virtual machine to use, or that you will revert any changes made to your machine

More information

Yong Peng High School System Documentation PC Section

Yong Peng High School System Documentation PC Section Yong Peng High School System Documentation PC Section Kent Ong Date: 26 May 2008 System Engineer Revision 1 Liew Toh Seng System Consultant Table of Contents Preface...1 Network Configuration (Manual Configuration)...1

More information

Step 1 - Install Apache and PostgreSQL

Step 1 - Install Apache and PostgreSQL How to install OTRS (Open Source Trouble Ticket System) on Ubuntu 16.04 Prerequisites Ubuntu 16.04. Min 2GB of Memory. Root privileges. Step 1 - Install Apache and PostgreSQL In this first step, we will

More information

MULTI FACTOR AUTHENTICATION USING THE NETOP PORTAL. 31 January 2017

MULTI FACTOR AUTHENTICATION USING THE NETOP PORTAL. 31 January 2017 MULTI FACTOR AUTHENTICATION USING THE NETOP PORTAL 31 January 2017 Contents 1 Introduction... 2 1.1 Prerequisite for configuring the multi-factor authentication:... 2 1.1.1 On the Guest side... 2 1.1.2

More information

Cisco Stealthwatch Cloud. Private Network Monitoring Advanced Configuration Guide

Cisco Stealthwatch Cloud. Private Network Monitoring Advanced Configuration Guide Cisco Stealthwatch Cloud Private Network Monitoring Advanced Configuration Guide TOC About Stealthwatch Cloud Private Network Monitor Sensor 3 Checking Your Sensor Version 4 Manually Installing the Package

More information

Cluster Computing Spring 2004 Paul A. Farrell

Cluster Computing Spring 2004 Paul A. Farrell Configuring & Tuning Cluster Networks Node connectivity Node visibility Networking Services Security Performance Enhancement Internet Protocol Stack and Parameters NIC/OS Driver Maximum Amount of Data

More information