How To Install Oracle On Linux On A Windows (Oracle) On A Ubuntu Oracle (Orca) On An Ubuntu 8.2 With A Windows 8.3 (Or

Size: px
Start display at page:

Download "How To Install Oracle On Linux On A Windows 7.2.2 (Oracle) On A Ubuntu 7.3.2 Oracle (Orca) On An Ubuntu 8.2 With A Windows 8.3 (Or"

Transcription

1 Instalando Oracle no Linux e preparando ambiente para Módulo 3 10g. Software Setup Instructions 1. Open a terminal window. Login as the root user. 2. Create these operating system groups: oinstall, dba, and, oper. /usr/sbin/groupadd oinstall /usr/sbin/groupadd dba /usr/sbin/groupadd oper 3. Create the operating system user oracle: oracle /usr/sbin/useradd -g oinstall -G dba,oper -d /home/oracle 4. Enter the following command to set the password of the oracle user: /usr/sbin/passwd oracle 5. With an editor of your choosing edit /home/oracle/.bash_profile to include the following entries: umask 022 PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin LD_LIBRARY_PATH=/usr/lib:/usr/X11R6/lib ORACLE_BASE=/u01/app/oracle ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1 ORACLE_SID=orcl LD_LIBRARY_PATH=$ORACLE_HOME/jdk/jre/lib/i386: $ORACLE_HOME/jdk/jre/lib/i386/server: $ORACLE_HOME/rdbms/lib:$ORACLE_HOME/lib:$LD_LIBRARY_PATH PATH=$ORACLE_HOME/bin:$PATH export PATH LD_LIBRARY_PATH export ORACLE_BASE ORACLE_HOME ORACLE_SID 6. Create the directory for the software installation and assign ownership to oracle:oinstall. mkdir -p /u01/app/oracle chown -R oracle:oinstall /u01/app chmod -R 775 /u01/app

2 7. Open the /etc/sysctl.conf file in any text editor and add lines similar to the following: kernel.sem = kernel.shmall = kernel.shmmax = kernel.shmmni = 4096 fs.file-max = net.ipv4.ip_local_port_range = Issue this command to set the kernel parameters: 9. Exit from root user. /sbin/sysctl -p 10. Connect as oracle in a Xterm enabled window to begin the installation. Mount the Oracle Database 10g CD. Execute the script /mnt/cdrom/runinstaller from oracle's home directory, /home/oracle. /mnt/cdrom/runinstaller 11. At the Welcome window, click Next. 12. You need to specify your Inventory Directory. The location should be set to /u01/app/oracle/orainventory. Operating System Group Name, oinstall. Click OK. 13. A window will appear requesting orainstroot.sh be executed. Leave this window open and open a new terminal window. 14. You need to execute orainstroot.sh as the root user. Open a terminal window and enter the following commands: su <rootpassword> cd /u01/app/oracle/orainventory./orainstroot.sh 15. In the Oracle Universal Installer window and click Continue. 16. In the Specify File Locations window, verify the path is /u01/app/oracle/product/10.2.0/db_1 then click Next. 17. Make sure the Installation Type Enterprise Edition is selected and click Next.

3 18. The installer will now verify the system meets all the minimum requirements for installing and configuring the chosen product. Correct any reported issues before continuing. This may require you to stop the installation make the changes then start again. When the check successfully completes click Next. 19. You want to create a starter database. Make sure Create a starter database and General Purpose is selected then click Next. 20. Enter orcl.oracle.com as the Global Database Name, and select the check box to Create database with example schemas. Select Unicode standard UTF-8 AL32UTF8 as the Database Character set. Click Next. 21. The Database Management Options screen allows you to choose between Database Control or Grid Control of your database. In this example, you will accept the default which is Database Control. Click Next. 22. Specify the Database file location as /u01/app/oracle/oradata and click Next. 23. At the Backup and Recovery Options screen, do not enable automated backups. Accept the default and click Next. 24. Enter a password and confirm password for all accounts and click Next. Use password oracle. 25. At the Summary screen, review what will be installed and click Install. 26. You will see the progress window. 27. The Configuration Assistants Window will appear. 28. The Database Configuration Assistant (DBCA) will start. 29. Once the database is created the DBCA Password window will appear, click OK. 30. When the Setup Privileges window appears, open a new terminal window. 31. Execute root.sh as the root user. In the open terminal window and enter the following commands: cd $ORACLE_BASE/product/10.2.0/db_1 su <rootpassword>./root.sh

4 32. End of installation summary. Click OK. 33. Click Yes to. 34. Unlock and assign passwords to all locked schemas in the database. Open a text editor and create a text file named unlock.sh which contains (cut and paste): sqlplus -S /nolog <<ENDSQL connect / as sysdba SET LINESIZE 132 SET PAGESIZE 0 SET TERMOUT OFF SET NEWPAGE 0 SET SPACE 0 SET ECHO OFF SET FEEDBACK OFF SET HEADING OFF SPOOL x.sql SELECT 'ALTER USER ' username ' IDENTIFIED BY ' username ' ACCOUNT UNLOCK;' FROM dba_users WHERE account_status LIKE '%LOCK%'; SPOOL x.sql <<ENDSQL 35. Change permissions on file unlock.sh to make it executable, then execute it. chmod u+x unlock.sh./unlock.sh 36. As root create the /u01/asmdisks directories. su mkdir p /u01/asmdisks 37. Create five 400MB files that will be used as ASM disks. Create those files in /u01/asmdisks. cd /u01/asmdisks dd if=/dev/zero of=asm_disk1 bs=1024k count=400 dd if=/dev/zero of=asm_disk2 bs=1024k count=400 dd if=/dev/zero of=asm_disk3 bs=1024k count=400 dd if=/dev/zero of=asm_disk4 bs=1024k count=400 dd if=/dev/zero of=asm_disk5 bs=1024k count=400

5 38. Make sure that the asm_disk files are associated to raw devices, and have the right permissions: chmod 777 asm_disk* losetup /dev/loop1 asm_disk1 losetup /dev/loop2 asm_disk2 losetup /dev/loop3 asm_disk3 losetup /dev/loop4 asm_disk4 losetup /dev/loop5 asm_disk5 raw /dev/raw/raw1 /dev/loop1 raw /dev/raw/raw2 /dev/loop2 raw /dev/raw/raw3 /dev/loop3 raw /dev/raw/raw4 /dev/loop4 raw /dev/raw/raw5 /dev/loop5 chown oracle:oinstall /dev/raw/raw1 chown oracle:oinstall /dev/raw/raw2 chown oracle:oinstall /dev/raw/raw3 chown oracle:oinstall /dev/raw/raw4 chown oracle:oinstall /dev/raw/raw5 39. Make sure that you stage the Oracle Secure Backup software in the /stage/osb directory: You should grab ob-4.1cdrom first. Contact your OU representative for more information. su mkdir /stage cd /stage mkdir OSB cd OSB 40. Then you need to patch the EM software for Oracle Secure Backup links to appear. For that step, you need to replace. For this step, you need to contact your OU representative. 41. As user oracle create the labs and solutions directory in $HOME cd mkdir labs mkdir solutions 42. As oracle user, extract D17092GC30_labs.zip in $HOME. First, you need to ftp

6 D17092GC30_labs.zip to $HOME in binary mode. Once done, move all the files located into $HOME/D17092GC30_labs/labs into $HOME/labs. Then, move all the files located into $HOME/D17092GC30_labs/solutions into $HOME/solutions. Then, remove the $HOME/D17092GC30_labs directory and the D17092GC30_labs.zip. cd unzip -a D17092GC30_labs.zip mv $HOME/D17092GC30_labs/labs/* $HOME/labs mv $HOME/D17092GC30_labs/solutions/* $HOME/solutions rm -Rf D17092GC30_labs rm D17092GC30_labs.zip 43. Change permissions to 777 on all the files locates into $HOME/labs and $HOME/solutions: cd $HOME/labs chmod 777 * cd $HOME/solutions chmod 777 * Non-Oracle software: Mozilla 1.4 with these plugins configured: - Adobe SVG Viewer 3.01 Beta (Build 88) - Adobe Acrobat Reader Java Runtime Environment 1.4.2_03 These plugins and the installation instructions are available from Mozilla(

Install Oracle10g Real Application Clusters Release 1 (10.1.0.4) on SuSE Linux Enterprise Server 9 and Matrix Server

Install Oracle10g Real Application Clusters Release 1 (10.1.0.4) on SuSE Linux Enterprise Server 9 and Matrix Server Install Oracle10g Real Application Clusters Release 1 (10.1.0.4) on SuSE Linux Enterprise Server 9 and Matrix Server This Installation Guide is intended to augment the Oracle and Novell documentation for

More information

1 Reviewing Information About This Guide

1 Reviewing Information About This Guide Oracle Database Quick Installation Guide 11g Release 2 (11.2) for HP-UX Itanium E10869-01 December 2009 This guide describes how to quickly install Oracle Database 11g Release 2 (11.2) on HP-UX Itanium

More information

1 Reviewing Information About This Guide

1 Reviewing Information About This Guide Oracle Database Client Quick Installation Guide 12c Release 1 (12.1) for Oracle Solaris on SPARC (64-Bit) E17758-04 April 2013 This guide describes how to quickly install Oracle Database Client for Oracle

More information

Oracle Customer Database - Overview

Oracle Customer Database - Overview Oracle Database Client Quick Installation Guide 12c Release 1 (12.1) for Oracle Solaris on x86-64 (64-Bit) E55103-02 August 2014 This guide describes how to quickly install Oracle Database Client on Oracle

More information

Oracle security done right. Secure database access on the (unix and linux) operating system level.

Oracle security done right. Secure database access on the (unix and linux) operating system level. Oracle security done right. Secure database access on the (unix and linux) operating system level. By Frits Hoogland, VX Company Security is an important part of modern database administration, and is

More information

Radica Systems Limited RI Backup/Restore Guide Page: 1

Radica Systems Limited RI Backup/Restore Guide Page: 1 Radica Systems Limited RI Backup/Restore Guide Page: 1 Copyright 2004 Radica Systems Limited. All rights reserved. Published by Radica Systems Limited. DISCLAIMERS THIS PUBLICATION IS PROVIDED "AS IS"

More information

Installing Oracle 12c Enterprise on Windows 7 64-Bit

Installing Oracle 12c Enterprise on Windows 7 64-Bit JTHOMAS ENTERPRISES LLC Installing Oracle 12c Enterprise on Windows 7 64-Bit DOLOR SET AMET Overview This guide will step you through the process on installing a desktop-class Oracle Database Enterprises

More information

Ex Libris Patch Instructions for Oracle 10 CPUs for Voyager Windows Servers 10.2.0.4

Ex Libris Patch Instructions for Oracle 10 CPUs for Voyager Windows Servers 10.2.0.4 Ex Libris Patch Instructions for Oracle 10 CPUs for Voyager Windows Servers 10.2.0.4 CONFIDENTIAL INFORMATION The information herein is the property of Ex Libris Ltd. or its affiliates and any misuse or

More information

Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64

Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64 Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64 http://www.suse.com 1 Table of Contents Introduction...3 Hardware and

More information

1 Reviewing Information About this Guide

1 Reviewing Information About this Guide Oracle Database Client Quick Installation Guide 10g Release 2 (10.2) for hp-ux PA-RISC (64-Bit) B19071-02 November 2005 This guide describes how to quickly install products available on the Oracle Database

More information

Ex Libris Patch Instructions for Oracle 10 CPUs for Voyager Windows Servers 10.2.0.4

Ex Libris Patch Instructions for Oracle 10 CPUs for Voyager Windows Servers 10.2.0.4 Ex Libris Patch Instructions for Oracle 10 CPUs for Voyager Windows Servers 10.2.0.4 CONFIDENTIAL INFORMATION The information herein is the property of Ex Libris Ltd. or its affiliates and any misuse or

More information

ULTEO OPEN VIRTUAL DESKTOP V4.0

ULTEO OPEN VIRTUAL DESKTOP V4.0 ULTEO OPEN VIRTUAL DESKTOP V4.0 MIGRATION GUIDE 28 February 2014 Contents Section 1 Introduction... 4 Section 2 Overview... 5 Section 3 Preparation... 6 3.1 Enter Maintenance Mode... 6 3.2 Backup The OVD

More information

Integration Service Database. Installation Guide - Oracle. On-Premises

Integration Service Database. Installation Guide - Oracle. On-Premises Kony MobileFabric Integration Service Database Installation Guide - Oracle On-Premises Release 6.5 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title

More information

Setting up the Oracle Warehouse Builder Project. Topics. Overview. Purpose

Setting up the Oracle Warehouse Builder Project. Topics. Overview. Purpose Setting up the Oracle Warehouse Builder Project Purpose In this tutorial, you setup and configure the project environment for Oracle Warehouse Builder 10g Release 2. You create a Warehouse Builder repository

More information

Performing Database and File System Backups and Restores Using Oracle Secure Backup

Performing Database and File System Backups and Restores Using Oracle Secure Backup Performing Database and File System Backups and Restores Using Oracle Secure Backup Purpose This lesson introduces you to Oracle Secure Backup which enables you to perform database and file system backups

More information

Setting Up Specify to use a Shared Workstation as a Database Server

Setting Up Specify to use a Shared Workstation as a Database Server Specify Software Project www.specifysoftware.org Setting Up Specify to use a Shared Workstation as a Database Server This installation documentation is intended for workstations that include an installation

More information

Oracle10g og Linux. Ingemar Jansson Haverstad. ingemar@oraklet.no www.oraklet.no/foredrag

Oracle10g og Linux. Ingemar Jansson Haverstad. ingemar@oraklet.no www.oraklet.no/foredrag Oracle10g og Linux Ingemar Jansson Haverstad ingemar@oraklet.no www.oraklet.no/foredrag Version 0.92 21.06.2005 Agenda Oracle10g Installasjon Oppgradering Verktøy Linux Dialekter Administrasjon Linux

More information

Setting up SQL Translation Framework OBE for Database 12cR1

Setting up SQL Translation Framework OBE for Database 12cR1 Setting up SQL Translation Framework OBE for Database 12cR1 Overview Purpose This tutorial shows you how to use have an environment ready to demo the new Oracle Database 12c feature, SQL Translation Framework,

More information

MySQL Backups: From strategy to Implementation

MySQL Backups: From strategy to Implementation MySQL Backups: From strategy to Implementation Mike Frank Senior Product Manager 1 Program Agenda Introduction The 5 Key Steps Advanced Options References 2 Backups are a DBAs Top Priority Be Prepared

More information

linux20 (R12 Server) R12.0.4 Single Node SID - TEST linux1 (10gAS Server) Oracle 10gAS (10.1.2.2) with OID SID - asinf server name

linux20 (R12 Server) R12.0.4 Single Node SID - TEST linux1 (10gAS Server) Oracle 10gAS (10.1.2.2) with OID SID - asinf server name Integrate Oracle Applications R12 with Oracle Internet Directory and SSO ----------------------------------------------------------------------------------------- High Level Steps --------------------

More information

A migration guide commissioned by Intel Corp. and Oracle

A migration guide commissioned by Intel Corp. and Oracle A migration guide commissioned by Intel Corp. and Oracle Table of contents Table of contents... 2 Introduction... 4 Scope of this Guide... 4 A move that will yield real benefits... 5 Features of the Sun

More information

Implementing a Weblogic Architecture with High Availability

Implementing a Weblogic Architecture with High Availability Implementing a Weblogic Architecture with High Availability Contents 1. Introduction... 3 2. Topology... 3 2.1. Limitations... 3 2.2. Servers diagram... 4 2.3. Weblogic diagram... 4 3. Components... 6

More information

IUCLID 5 Guidance and Support

IUCLID 5 Guidance and Support IUCLID 5 Guidance and Support Installation Guide for IUCLID 5.3 Client-Server Architecture Oracle and BEA Weblogic February 2013 Legal Notice Neither the European Chemicals Agency nor any person acting

More information

How to Replace ASMlib with the udev Device Manager for New and Existing Oracle Instances

How to Replace ASMlib with the udev Device Manager for New and Existing Oracle Instances How to Replace ASMlib with the udev Device Manager for New and Existing Oracle Instances Author: Jason Ganovsky Editor: Allison Pranger 05/11/2011 PURPOSE AND OVERVIEW Oracle recently announced that ASMlib

More information

1 Reviewing Information About This Guide

1 Reviewing Information About This Guide Oracle Database Client Quick Installation Guide 11g Release 2 (11.2) for Linux x86 E24323-04 April 2015 This guide describes how to quickly install Oracle Database Client 11g Release 2 (11.2) on Linux

More information

How To Install An Org Vm Server On A Virtual Box On An Ubuntu 7.1.3 (Orchestra) On A Windows Box On A Microsoft Zephyrus (Orroster) 2.5 (Orner)

How To Install An Org Vm Server On A Virtual Box On An Ubuntu 7.1.3 (Orchestra) On A Windows Box On A Microsoft Zephyrus (Orroster) 2.5 (Orner) Oracle Virtualization Installing Oracle VM Server 3.0.3, Oracle VM Manager 3.0.3 and Deploying Oracle RAC 11gR2 (11.2.0.3) Oracle VM templates Linux x86 64 bit for test configuration In two posts I will

More information

How to Upgrade Oracle Software and Databases from Oracle Version 9.2.0.x to 9.2.0.8 for Ex Libris Applications

How to Upgrade Oracle Software and Databases from Oracle Version 9.2.0.x to 9.2.0.8 for Ex Libris Applications How to Upgrade Oracle Software and Databases from Oracle Version 9.2.0.x to 9.2.0.8 for Ex Libris Applications CONFIDENTIAL INFORMATION The information herein is the property of Ex Libris Ltd. or its affiliates

More information

Deploying Oracle Database 12c with the Oracle ZFS Storage Appliance

Deploying Oracle Database 12c with the Oracle ZFS Storage Appliance Deploying Oracle Database 12c with the Oracle ZFS Storage Appliance Paul Johnson Principal Software Engineer Bryce Cracco Senior Product Manager Nagendran J Principal Software Engineer Wendy Chen Principal

More information

PUBLIC Installation: SAP Mobile Platform Server for Linux

PUBLIC Installation: SAP Mobile Platform Server for Linux SAP Mobile Platform 3.0 SP11 Document Version: 1.0 2016-06-09 PUBLIC Content 1.... 4 2 Planning the Landscape....5 2.1 Installation Worksheets....6 3 Installing SAP Mobile Platform Server....9 3.1 Acquiring

More information

Ex Libris Patch Instructions for Oracle 10 CPUs for Voyager Solaris/AIX Servers 10.2.0.4

Ex Libris Patch Instructions for Oracle 10 CPUs for Voyager Solaris/AIX Servers 10.2.0.4 Ex Libris Patch Instructions for Oracle 10 CPUs for Voyager Solaris/AIX Servers 10.2.0.4 CONFIDENTIAL INFORMATION The information herein is the property of Ex Libris Ltd. or its affiliates and any misuse

More information

Restoring To A Different Location With EBU And RMAN An AppsDBA Consulting White Paper

Restoring To A Different Location With EBU And RMAN An AppsDBA Consulting White Paper An White Paper Contents 1. OVERVIEW... 1 1.1 DEFINITIONS... 1 2. ENTERPRISE BACKUP UTILITY... 2 2.1 ARCHITECTURE... 2 2.1.1 Target Database... 2 2.1.2 Catalog... 2 2.1.3 Media Management Layer (MML)...

More information

Backing up and restoring HP Systems Insight Manager 6.0 or greater data files in a Windows environment

Backing up and restoring HP Systems Insight Manager 6.0 or greater data files in a Windows environment Technical white paper Backing up and restoring HP Systems Insight Manager 6.0 or greater data files in a Windows environment Table of contents Abstract 2 Introduction 2 Saving and restoring data files

More information

Installing, Tuning, and Deploying Oracle Database on SUSE Linux Enterprise Server 12 Technical Introduction

Installing, Tuning, and Deploying Oracle Database on SUSE Linux Enterprise Server 12 Technical Introduction Installing, Tuning, and Deploying Oracle Database on SUSE Linux Enterprise Server 12 Technical Introduction Arun Singh Sr. Technical Manager Arun.Singh@suse.com Agenda 2 Introduction SUSE Components Oracle

More information

Prerequisites and Configuration Guide

Prerequisites and Configuration Guide Prerequisites and Configuration Guide Informatica Support Console (Version 2.0) Table of Contents Chapter 1: Overview.................................................... 2 Chapter 2: Minimum System Requirements.................................

More information

Fuse ESB Enterprise Installation Guide

Fuse ESB Enterprise Installation Guide Fuse ESB Enterprise Installation Guide Version 7.1 December 2012 Integration Everywhere Installation Guide Version 7.1 Updated: 08 Jan 2014 Copyright 2012 Red Hat, Inc. and/or its affiliates. Trademark

More information

1 Certification Information

1 Certification Information Oracle Database Release Notes 10g Release 2 (10.2) for Linux Itanium B15673-02 January 2006 This document contains important information that was not included in the platform-specific or product-specific

More information

Forensic Imaging and Artifacts analysis of Linux & Mac (EXT & HFS+)

Forensic Imaging and Artifacts analysis of Linux & Mac (EXT & HFS+) Copyright: The development of this document is funded by Higher Education of Academy. Permission is granted to copy, distribute and /or modify this document under a license compliant with the Creative

More information

Oracle Tutorial. Outline: Login to oracle server Create account Use SQL*PLUS Use SQL Developer (recommended)

Oracle Tutorial. Outline: Login to oracle server Create account Use SQL*PLUS Use SQL Developer (recommended) Oracle Tutorial Outline: Login to oracle server Create account Use SQL*PLUS Use SQL Developer (recommended) Login to Oracle Server Hostname: csoracle.utdallas.edu Mac / Linux users: ssh your_netid@csoracle.utdallas.edu

More information

OpenGeo Suite for Linux Release 3.0

OpenGeo Suite for Linux Release 3.0 OpenGeo Suite for Linux Release 3.0 OpenGeo October 02, 2012 Contents 1 Installing OpenGeo Suite on Ubuntu i 1.1 Installing OpenGeo Suite Enterprise Edition............................... ii 1.2 Upgrading.................................................

More information

IGEL Universal Management. Installation Guide

IGEL Universal Management. Installation Guide IGEL Universal Management Installation Guide Important Information Copyright This publication is protected under international copyright laws, with all rights reserved. No part of this manual, including

More information

Oracle Change Management Pack Installation

Oracle Change Management Pack Installation Oracle Change Management Pack Installation This guide contains instructions on how to install the Oracle Change Management Pack. IMPORTANT: Before installing Oracle Change Management Pack, please review

More information

Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L

Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L Introduction: This guide is written to help any person with little knowledge in AIX V5.3L to prepare the P Server

More information

Verax Service Desk Installation Guide for UNIX and Windows

Verax Service Desk Installation Guide for UNIX and Windows Verax Service Desk Installation Guide for UNIX and Windows March 2015 Version 1.8.7 and higher Verax Service Desk Installation Guide 2 Contact Information: E-mail: sales@veraxsystems.com Internet: http://www.veraxsystems.com/

More information

Install BO 4.1 on Linux with Oracle database and Weblogic

Install BO 4.1 on Linux with Oracle database and Weblogic Install BO 4.1 on Linux with Oracle database and Weblogic Author: Piotr Mudlaff Introduction I decided to document complete installation process of: - Oracle Linux (Red Hat based) - Oracle 11g database

More information

Cross Platform Transportable Tablespaces Migration in Oracle 11g

Cross Platform Transportable Tablespaces Migration in Oracle 11g Cross Platform Transportable Tablespaces Migration in Oracle 11g Prepared by ViSolve Migration Team June 2012 Contact ViSolve, Inc. 4010, Moorpark Avenue, #205 San Jose, California 95117 (602) 842 2738

More information

NetNumen U31 R06. Backup and Recovery Guide. Unified Element Management System. Version: V12.14.30

NetNumen U31 R06. Backup and Recovery Guide. Unified Element Management System. Version: V12.14.30 NetNumen U31 R06 Unified Element Management System Backup and Recovery Guide Version: V12.14.30 ZTE CORPORATION No. 55, Hi-tech Road South, ShenZhen, P.R.China Postcode: 518057 Tel: +86-755-26771900 Fax:

More information

Amon Agent. User Guide

Amon Agent. User Guide Amon Agent User Guide Table of Contents Agent Installation.............................................................................. 1 Scheduling....................................................................................

More information

SSIM Database Extension Pack 4.0 for Oracle on Linux Installation Guide

SSIM Database Extension Pack 4.0 for Oracle on Linux Installation Guide SSIM Database Extension Pack 4.0 for Oracle on Linux Installation Guide SSIM Database Extension Pack 4.0 for Oracle on Linux Installation Guide The software described in this book is furnished under a

More information

A Complete Cross Platform Database Migration Guide Using Import and Export Utility

A Complete Cross Platform Database Migration Guide Using Import and Export Utility A Complete Cross Platform Database Migration Guide Using Import and Export Utility (HP-UX on PA-RISC to Linux on x86 Architecture) Prepared by: migration_engg@visolve.com 4010 Moorpark Avenue, San Jose,

More information

Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012

Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012 Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012 1 The person installing the VC is knowledgeable of the Linux file system

More information

Nutech Computer Training Institute 1682 E. Gude Dr. #102 Rockville, MD. 20850 Tel: 301-610-9300 Web:Nutechtraining.com www.nutechtraining.

Nutech Computer Training Institute 1682 E. Gude Dr. #102 Rockville, MD. 20850 Tel: 301-610-9300 Web:Nutechtraining.com www.nutechtraining. Nutech Computer Training Institute 1682 E. Gude Dr. #102 Rockville, MD. 20850 Tel: 301-610-9300 Web:Nutechtraining.com www.nutechtraining.com Total Hours: 28 hrs Tuition Fee: $2000 Registration Fee: $30

More information

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER Notes: STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER 1. These instructions focus on installation on Windows Terminal Server (WTS), but are applicable

More information

1 Reviewing Information About This Guide

1 Reviewing Information About This Guide Oracle Database Quick Installation Guide 11g Release 1 (11.1) for Linux x86-64 B32285-06 November 2010 This guide describes how to quickly install Oracle Database 11g on Linux x86-64 systems. It includes

More information

Information Technology Department Government of Sindh

Information Technology Department Government of Sindh Information Technology Department Government of Sindh Oracle Database Configuration & Installation Biometric Identification Electronic System ADP: 1488 Year: 2009 2010 Prepared By: 1. Oracle Database...

More information

User Manual - Help Utility Download MMPCT. (Mission Mode Project Commercial Taxes) User Manual Help-Utility

User Manual - Help Utility Download MMPCT. (Mission Mode Project Commercial Taxes) User Manual Help-Utility Excise and Taxation, Haryana Plot I-3, Sector 5, Panchkula, Haryana MMPCT (Mission Mode Project Commercial Taxes) User Manual Help-Utility Wipro Limited HETD For any queries call at the helpdesk numbers:

More information

IT6204 Systems & Network Administration. (Optional)

IT6204 Systems & Network Administration. (Optional) Systems & Network Administration (Optional) INTRODUCTION This is one of the Optional courses designed for Semester 6 of the Bachelor of Information Technology Degree program. This course on Systems & Network

More information

Volume SYSLOG JUNCTION. User s Guide. User s Guide

Volume SYSLOG JUNCTION. User s Guide. User s Guide Volume 1 SYSLOG JUNCTION User s Guide User s Guide SYSLOG JUNCTION USER S GUIDE Introduction I n simple terms, Syslog junction is a log viewer with graphing capabilities. It can receive syslog messages

More information

Install BA Server with Your Own BA Repository

Install BA Server with Your Own BA Repository Install BA Server with Your Own BA Repository This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright 2014

More information

This appendix describes the following procedures: Cisco ANA Registry Backup and Restore Oracle Database Backup and Restore

This appendix describes the following procedures: Cisco ANA Registry Backup and Restore Oracle Database Backup and Restore APPENDIXA This appendix describes the following procedures: Cisco ANA Registry Oracle Database Cisco ANA Registry This section describes the Cisco ANA Registry backup and restore procedure. Overview Provides

More information

Oracle Data Mining. Administrator's Guide 11g Release 2 (11.2) E16807-05

Oracle Data Mining. Administrator's Guide 11g Release 2 (11.2) E16807-05 Oracle Data Mining Administrator's Guide 11g Release 2 (11.2) E16807-05 October 2010 Oracle Data Mining Administrator's Guide, 11g Release 2 (11.2) E16807-05 Copyright 1996, 2010, Oracle and/or its affiliates.

More information

Table of Content. Official website: www.no-backup.eu

Table of Content. Official website: www.no-backup.eu This chapter will describe in details how to use No-Backup Software to backup your Lotus Domino server / Notes client 5 / 6 / 6.5 and how you can restore your Lotus Domino server / Notes client 5 / 6 /

More information

Digital Forensics Tutorials Acquiring an Image with Kali dcfldd

Digital Forensics Tutorials Acquiring an Image with Kali dcfldd Digital Forensics Tutorials Acquiring an Image with Kali dcfldd Explanation Section Disk Imaging Definition Disk images are used to transfer a hard drive s contents for various reasons. A disk image can

More information

TECHNICAL REPORT. Nimble Storage Oracle Backup and Recovery Guide

TECHNICAL REPORT. Nimble Storage Oracle Backup and Recovery Guide TECHNICAL REPORT Nimble Storage Oracle Backup and Recovery Guide N I M B L E T E C H N I C A L R E P O R T : N I M B L E S T O R A G E F O R O R A C L E B A C K U P A N D R E C O V E R Y 1 Document Revision

More information

WA1826 Designing Cloud Computing Solutions. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA1826 Designing Cloud Computing Solutions. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA1826 Designing Cloud Computing Solutions Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum

More information

Command Line Install and Config For IBM BPM 8.5

Command Line Install and Config For IBM BPM 8.5 PERFICIENT Command Line Install and Config For IBM BPM 8.5 Command line Install and Configure of BPM v8.5 Technical Architect: Chuck Misuraca Change History Table 1: Document Change History Document Revision

More information

Cassandra Installation over Ubuntu 1. Installing VMware player:

Cassandra Installation over Ubuntu 1. Installing VMware player: Cassandra Installation over Ubuntu 1. Installing VMware player: Download VM Player using following Download Link: https://www.vmware.com/tryvmware/?p=player 2. Installing Ubuntu Go to the below link and

More information

Procedure to Create and Duplicate Master LiveUSB Stick

Procedure to Create and Duplicate Master LiveUSB Stick Procedure to Create and Duplicate Master LiveUSB Stick A. Creating a Master LiveUSB stick using 64 GB USB Flash Drive 1. Formatting USB stick having Linux partition (skip this step if you are using a new

More information

StreamServe Persuasion SP5 Oracle Database

StreamServe Persuasion SP5 Oracle Database StreamServe Persuasion SP5 Oracle Database Database Guidelines Rev A StreamServe Persuasion SP5 Oracle Database Database Guidelines Rev A 2001-2011 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent

More information

LAE 4.6.0 Enterprise Server Installation Guide

LAE 4.6.0 Enterprise Server Installation Guide LAE 4.6.0 Enterprise Server Installation Guide 2013 Lavastorm Analytics, Inc. Rev 01/2013 Contents Introduction... 3 Installing the LAE Server on UNIX... 3 Pre-Installation Steps... 3 1. Third-Party Software...

More information

National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide

National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide NFIRS 5.0 Software Version 5.6 1/7/2009 Department of Homeland Security Federal Emergency Management Agency

More information

To integrate Oracle Application Server with Active Directory follow these steps.

To integrate Oracle Application Server with Active Directory follow these steps. Active Directory to Oracle Internet Directory (OID) Integration To integrate Oracle Application Server with Active Directory follow these steps. Active Directory Synchronization 1. The ability to connect

More information

Novell Nsure Audit Installation Guide. novdocx (ENU) 01 February 2006. Novell NsureTM Audit. www.novell.com 1.0.3 INSTALLATION GUIDE.

Novell Nsure Audit Installation Guide. novdocx (ENU) 01 February 2006. Novell NsureTM Audit. www.novell.com 1.0.3 INSTALLATION GUIDE. Novell Nsure Audit Installation Guide Novell NsureTM Audit 1.0.3 July 18, 2006 INSTALLATION GUIDE www.novell.com Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents

More information

IBM Pure Application Create Custom Virtual Image Guide - Part 1 Virtual Image by extending

IBM Pure Application Create Custom Virtual Image Guide - Part 1 Virtual Image by extending PERFICIENT IBM Pure Application Create Custom Virtual Image Guide - Part 1 Virtual Image by extending How to guide on Virtual Image creation for Pure Application Technical Architect: Chuck Misuraca Change

More information

CA and SSL Certificates

CA and SSL Certificates 1 For this exercise you must again be root. Login and obtain root privileges: sudo su 2 Create a working directory only accessible to root: mkdir ~/ca cd ~/ca chmod og rwx. 3 Install openssl if necessary

More information

2. Boot using the Debian Net Install cd and when prompted to continue type "linux26", this will load the 2.6 kernel

2. Boot using the Debian Net Install cd and when prompted to continue type linux26, this will load the 2.6 kernel These are the steps to build a hylafax server. 1. Build up your server hardware, preferably with RAID 5 (3 drives) plus 1 hotspare. Use a 3ware raid card, 8000 series is a good choice. Use an external

More information

Oracle Database 11g R2 (11.2.0.1) on SUSE Linux Enterprise Server 11 SP1

Oracle Database 11g R2 (11.2.0.1) on SUSE Linux Enterprise Server 11 SP1 Oracle Database 11g R2 (11.2.0.1) on SUSE Linux Enterprise Server 11 SP1 ( How to Install ) Arun Singh Novell Inc. Introduction Oracle Database 11g R2 (11.2.0.1) is fully certified on SUSE Linux Enterprise

More information

Tutorial Guide to the IS Unix Service

Tutorial Guide to the IS Unix Service Tutorial Guide to the IS Unix Service The aim of this guide is to help people to start using the facilities available on the Unix and Linux servers managed by Information Services. It refers in particular

More information

TEL2821/IS2150: INTRODUCTION TO SECURITY Lab: Operating Systems and Access Control

TEL2821/IS2150: INTRODUCTION TO SECURITY Lab: Operating Systems and Access Control TEL2821/IS2150: INTRODUCTION TO SECURITY Lab: Operating Systems and Access Control Version 3.4, Last Edited 9/10/2011 Students Name: Date of Experiment: Read the following guidelines before working in

More information

Veritas High Availability Agent for Oracle Installation and Configuration Guide

Veritas High Availability Agent for Oracle Installation and Configuration Guide Veritas High Availability Agent for Oracle Installation and Configuration Guide AIX 5.0 N18473J Veritas High Availability Agent for Oracle Installation and Configuration Guide Copyright 2006 Symantec Corporation.

More information

Automated Deployment of Oracle RAC Using Enterprise Manager Provisioning Pack

Automated Deployment of Oracle RAC Using Enterprise Manager Provisioning Pack Automated Deployment of Oracle RAC Using Enterprise Manager Provisioning Pack By Kai Yu As a part of the Oracle Enterprise Manager s lifecycle management solutions, the Oracle Enterprise Manager Provisioning

More information

What s New with Oracle Database 12c on Windows On-Premises and in the Cloud

What s New with Oracle Database 12c on Windows On-Premises and in the Cloud What s New with Oracle Database 12c on Windows On-Premises and in the Cloud Santanu Datta Vice President Server Technologies Alex Keh Senior Principal Product Manager Server Technologies Oracle Database

More information

Installation Instruction STATISTICA Enterprise Small Business

Installation Instruction STATISTICA Enterprise Small Business Installation Instruction STATISTICA Enterprise Small Business Notes: ❶ The installation of STATISTICA Enterprise Small Business entails two parts: a) a server installation, and b) workstation installations

More information

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active HP AppPulse Active Software Version: 2.2 For AppPulse Active Document Release Date: February 2015 Software Release Date: November 2014 Legal Notices Warranty The only warranties for HP products and services

More information

Installation & Configuration Guide for Solaris 8

Installation & Configuration Guide for Solaris 8 Installation & Configuration Guide for Solaris 8 Document version 1.1.2, 2003-02-27 CWRU Information Technology Services If you have any questions or problems using these instructions, simply contact the

More information

Oracle Business Intelligence 10g Installation, Configuration And EUL Migration

Oracle Business Intelligence 10g Installation, Configuration And EUL Migration Oracle Business Intelligence 10g Installation, Configuration And EUL Migration Version Status When Who Why Contents NOETIX UPGRADE...3 APPLICATION PATCHES...3 ORACLE BI 10G INSTALLATION AND CONFIGURATION...3

More information

National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide

National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide NFIRS 5.0 Software Version 5.3 Prepared for: Directorate of Preparedness and Response (FEMA) Prepared by:

More information

NATIONAL POPULATION REGISTER (NPR)

NATIONAL POPULATION REGISTER (NPR) NATIONAL POPULATION REGISTER (NPR) Project Name: NPR Version No: 1.0.0 Release Date: Group Name: NPR-ECIL Version Date: LINUX SERVER INSTALLATION AND CONFIGURATION FOR JAVA BASED NPR DATAENTRY SOFTWARE

More information

Backing up AIR to Microsoft Windows

Backing up AIR to Microsoft Windows Backing up AIR to Microsoft Windows Dear Valued Customer, Avaya realizes the importance of your data and the significance of a backup and restore strategy for this data. To assist you in performing a backup

More information

Oracle Database 11g: Administration I

Oracle Database 11g: Administration I Oracle Database 11g: Administration I Course ID ORA900 Course Description Administration of the Oracle database management system (DBMS) software environment and of the server systems on which the DBMS

More information

DOCUMENTATION LOTUS NOTES BACKUP & RESTORE OPERATIONS

DOCUMENTATION LOTUS NOTES BACKUP & RESTORE OPERATIONS DOCUMENTATION LOTUS NOTES BACKUP & RESTORE OPERATIONS Copyright Notice The use and copying of this product is subject to a license agreement. Any other use is prohibited. No part of this publication may

More information

Configuring an Alternative Database for SAS Web Infrastructure Platform Services

Configuring an Alternative Database for SAS Web Infrastructure Platform Services Configuration Guide Configuring an Alternative Database for SAS Web Infrastructure Platform Services By default, SAS Web Infrastructure Platform Services is configured to use SAS Framework Data Server.

More information

TABLE OF CONTENTS OVERVIEW SYSTEM REQUIREMENTS - SAP FOR ORACLE IDATAAGENT GETTING STARTED - DEPLOYING ON WINDOWS

TABLE OF CONTENTS OVERVIEW SYSTEM REQUIREMENTS - SAP FOR ORACLE IDATAAGENT GETTING STARTED - DEPLOYING ON WINDOWS Page 1 of 44 Quick Start - SAP for Oracle idataagent TABLE OF CONTENTS OVERVIEW Introduction Key Features Full Range of Backup and Recovery Options SnapProtect Backup Command Line Support Backup and Recovery

More information

Installation Guidelines (MySQL database & Archivists Toolkit client)

Installation Guidelines (MySQL database & Archivists Toolkit client) Installation Guidelines (MySQL database & Archivists Toolkit client) Understanding the Toolkit Architecture The Archivists Toolkit requires both a client and database to function. The client is installed

More information

Oracle Data Mining. Administrator's Guide 11g Release 2 (11.2) E16807-03

Oracle Data Mining. Administrator's Guide 11g Release 2 (11.2) E16807-03 Oracle Data Mining Administrator's Guide 11g Release 2 (11.2) E16807-03 August 2010 Oracle Data Mining Administrator's Guide, 11g Release 2 (11.2) E16807-03 Copyright 1996, 2010, Oracle and/or its affiliates.

More information

SOCET GXP V4.1 LICENSE MANAGER QUICK-START GUIDE

SOCET GXP V4.1 LICENSE MANAGER QUICK-START GUIDE SOCET GXP V4.1 LICENSE MANAGER QUICK-START GUIDE FOR WINDOWS AND ORACLE SOLARIS Important Notice SOCET GXP v4.1 requires installation of the GXP License Manager v8.4. Contact Customer Support Customer

More information

4cast Client Specification and Installation

4cast Client Specification and Installation 4cast Client Specification and Installation Version 2015.00 10 November 2014 Innovative Solutions for Education Management www.drakelane.co.uk System requirements The client requires Administrative rights

More information

Computer Science and Engineering Linux Cisco VPN Client Installation and Setup Guide

Computer Science and Engineering Linux Cisco VPN Client Installation and Setup Guide Computer Science and Engineering Linux Cisco VPN Client Installation and Setup Guide Contents Installation: Ubuntu Linux 7.10 Gusty Gibbon:... 2 Installation: Redhat Enterprise 5 and Fedora 8 Linux:...

More information

nshield Modules Integration Guide for Oracle Database 11g Release 2 Transparent Data Encryption

nshield Modules Integration Guide for Oracle Database 11g Release 2 Transparent Data Encryption nshield Modules Integration Guide for Oracle Database 11g Release 2 Transparent Data Encryption Version: 2.0 Date: 01 November 2013 Copyright 2013 Thales e-security Limited. All rights reserved. Copyright

More information

Step by Step Enterprise Manager Cloud Control-12c installation on OEL

Step by Step Enterprise Manager Cloud Control-12c installation on OEL Step by Step Enterprise Manager Cloud Control-12c installation on OEL As you heard/known Oracle Enterprise Manager family has new member Oracle Enterprise Manager 12c Previous release we call it Grid Control

More information