Oracle 11g R2. Installation and Configuration Guide. Abstract

Size: px
Start display at page:

Download "Oracle 11g R2. Installation and Configuration Guide. Abstract"

Transcription

1 Oracle 11g R2 Installation and Configuration Guide Abstract This guide contains configuration information for installing and managing an Oracle Database 11g R2 for IMC on the Linux operating system. Part number: Software version: IMC PLAT 5.1 (E0202) Document version: 5P

2 Legal and notice information Acknowledgments Copyright Hewlett-Packard Development Company, L.P. No part of this documentation may be reproduced or transmitted in any form or by any means without prior written consent of Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. HEWLETT-PACKARD COMPANY MAKES NO WARRANTY OF ANY KIND WITH REGARD TO THIS MATERIAL, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Hewlett-Packard shall not be liable for errors contained herein or for incidental or consequential damages in connection with the furnishing, performance, or use of this material. The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. HP shall not be liable for technical or editorial errors or omissions contained herein. Oracle and Java are registered trademarks of Oracle and/or its affiliates.

3 Contents 1 Overview 1 2 Preparing for Installation 2 Checking required software packages 2 Checking the disk space 3 Adjusting kernel parameters 3 Creating required user and groups user password 3 Modifying the access right on the Oracle directory 4 Creating the Oracle base directory, directory owner and access right, directory owner, and access right 4 Modifying the profile file 4 Setting environment variables for the oracle user 4 Checking the availability of environment variables 5 Uploading the Oracle database to be installed 5 3 Installing Oracle database 11g R2 6 4 Installing the Oracle database client 29 Installing the client 29 Configuring the Oracle client 41 5 Configuring a network service name 49 6 Managing Oracle database 11g R2 58 Enabling the Oracle service manually 58 Configuring Oracle database 11g R2 58 Adding the database service for a listener 58 Setting the maximum number of Oracle processes and Oracle connection limit 59 Shutting down the Oracle service manually 59 Configuring Oracle automatic startup 60 Creating a database user 60 Setting the character set for the Oracle client 61 7 Installing IMC 62 8 FAQ 63 9 Support and other resources 65 Contacting HP 65 Subscription service 65 Related information 65 Documents 65 Websites 65 Conventions 66 Index 67 i

4 1 Overview This document describes the configuration information you should pay attention to when you install an Oracle Database 11g R2 for IMC on the Linux operating system and after the installation. The database version used in this guide is Oracle Database 11g R2. If you are using a different Oracle database version, the configuration procedure may differ slightly. Before installing IMC, install Oracle Database 11g R2 first. Then restart the operating system, and proceed with the IMC installation. This guide only provides a generic Oracle database installation procedure. You can configure your Oracle database based on system software and hardware to achieve optimized performance. For more information, see the Oracle Database Installation Guide, Oracle Database Quick Installation Guide, and Oracle Universal Installer and OPatch User s Guide at Currently, you can install the database on a separate database server and save the IMC data on the database server. To install the database on a separate database server, follow these guidelines: On the IMC server, install an Oracle client with the same version as the database. Create a data file folder on the database server before you start the installation. When deploying the IMC components, you can input the local path to the folder. 1

5 2 Preparing for Installation CAUTION: Type rather than copy and paste commands during database installation to make them correctly recognized. A 32-bit operating system must use the 32-bit Oracle database and a 64-bit operating system must use the 64-bit Oracle database. Before installing Oracle Database 11g R2, log in to the system as a root user and complete configurations as follows: Checking required software packages Before installing the Oracle database, make sure that you have installed required software packages on the operating system. If you are running Linux AS 5 or 6.1, use rpm qa to check all the installed software packages, and use rpm -q to check whether an rpm file is available. When a software package is not installed, copy the software package to your local device and use the rpm -i xxx.rpm command to install it. The software packages that are to be installed are: binutils compat-libstdc elfutils-libelf elfutils-libelf-devel glibc glibc-common glibc-devel gcc gcc-c libaio-devel libaio libgcc libstdc libstdc++-devel make sysstat unixodbc unixodbc-devel libxext CAUTION: Make sure you install the following software packages: glibc (32bit), libaio (32bit), libgcc (32bit), and libstdc (32bit). 2

6 NOTE: On Linux AS 5, you can locate uninstalled software packages in the server directory of your installation disk and use the rpm ivh command to install them. On Linux AS 6.1, you can locate uninstalled software packages in the packages directory of your installation disk and use the rpm ivh command to install them. Checking the disk space Before installing the Oracle database, make sure that the hard disk drive where the home directory is located has at least 10 GB free space (The actual memory space requirements for the home directory depend on the managed devices and the number of performance monitoring instances) and the hard disk drive where the /tmp directory is located has at least 400 MB free space. To view available space on hard disk drives, use the following command: #df -k Adjusting kernel parameters To ensure the normal operation of the Oracle database, adjust the kernel parameters in the /etc/sysctl.conf directory using a text editor. If you are running Linux AS 5 or 6.1, make sure that the following kernel parameters take the same or larger values than those recommended: kernel.shmall= kernel.shmmax= kernel.shmmni=4096 kernel.sem= fs.file-max=65536 net.ipv4.ip_local_port_range= net.core.rmem_default= net.core.rmem_max= net.core.wmem_default= net.core.wmem_max= After you adjust the kernel parameters, use the /sbin/sysctl -p /etc/sysctl.conf command to make them take effect. Creating required user and groups user password You must create the oracle user, the oinstall group, and the dba group before installing Oracle because: Only the oracle user can install, start up, or shut down the Oracle database. The oinstall group user can install Oracle software The dba group user can manage the database. To create them, use these commands: Execute the following commands as the root user: groupadd oinstall groupadd dba useradd -g oinstall -G dba d /home/oracle m s /bin/bash oracle 3

7 Set the Oracle user password: passwd oracle Modifying the access right on the Oracle directory To enable the oracle user to execute the oracle database installation program, you need to modify the owner and access right of the directory where the Oracle database installation program is to be saved. # chown -R oracle:oinstall /home/oracle/ # chmod -R 775 /home/oracle/ Creating the Oracle base directory, directory owner and access right, directory owner, and access right Use these commands: mkdir -p /u01/app/ chown -R oracle:oinstall /u01/app/ chmod -R 775 /u01/app/ Modifying the profile file To make the environment variables of the Oracle database take effect automatically with the system loading, you need to modify the profile file as follows: #su - root #vi /etc/profile ORACLE_BASE=/u01/app/oracle ORACLE_HOME=$ORACLE_BASE/product/11.1.0/db_1 ORACLE_SID=orc1 PATH=$PATH:$ORACLE_HOME/bin:$HOME/bin LD_LIBRARY_PATH=$ORACLE_HOME/lib export ORACLE_BASE ORACLE_HOME ORACLE_SID PATH LD_LIBRARY_PATH where, The directories for ORACLE_BASE and ORACLE_HOME are flexibly set specific to the directory structure. ORACLE_SID is the Oracle database instance ID. Note that you must specify consistent ORACLE_SID in the subsequent installation procedure. Save the file after setting the language environment variable. Setting environment variables for the oracle user To ensure normal startup and operation of the Oracle database, you must configure the environment variables for the oracle user. For example, set the environment variables in file.bash_profile in the home directory: su - oracle vi.bash_profile 1. Open the file and set the language environment variable according to the language your system supports. 4

8 LANG=en_US.UTF-8 export LANG 2. Add the following line at the end of the text. umask Save the file, exit the system, and re-log in as the oracle user. exit su - oracle export DISPLAY=localhost:0.0 Checking the availability of environment variables Before installing the Oracle database, make sure that the environment variables have taken effect. Otherwise, you will fail to install the Oracle database. For more information, see "How to verify if the environment variables take effect? (page 63). Uploading the Oracle database to be installed Copy the Oracle installation package to the /home/oracle directory and decompress the package. If you use the installation disk, just follow the guide of the disk. Now, the preparation for installing the Oracle database is completed. Restart the operating system and then proceed with the Oracle installation. 5

9 3 Installing Oracle database 11g R2 After restarting the operating system, log in to the system as the oracle user, and perform the following command in the installation package directory: $./runinstaller. NOTE: Input a dot (.) in front of the slash (/) in the preceding command line. Run the runinstallar program in the installation package to display the universal installation screen, as shown in Figure 1 (page 6). Figure 1 Configure security updates Type the address and Oracle support password, or clear the selection of I wish to receive security updates via My Oracle Support without providing the address, and then click Next. The dialog box as shown in Figure 2 (page 7) appears. 6

10 Figure 2 address not specified Click Yes and then Next to enter the installation option selection page, as shown in Figure 3 (page 8). 7

11 Figure 3 Select installation option Select Create and configure a database and click Next to enter the system class setting page, as shown in Figure 4 (page 9). 8

12 Figure 4 Select system class Select Server Class and click Next to enter the node selection page, as shown in Figure 5 (page 10). 9

13 Figure 5 Node selection Select Single instance database installation, and click Next to enter the installation type selection page, as shown in Figure 6 (page 11). 10

14 Figure 6 Select install type Select Advanced Installation and click Next to enter the product langrage selection page, as shown in Figure 7 (page 12). 11

15 Figure 7 Select product languages Select English (United Kingdom) and click Next to enter the database edition selection page, as shown in Figure 8 (page 13). 12

16 Figure 8 Select database edition Select Enterprise Edition and click Next to enter the installation location configuration page, as shown in Figure 9 (page 14). 13

17 Figure 9 Specify installation location Use the default settings, and click Next to enter the configuration type selection page, as shown in Figure 10 (page 15). 14

18 Figure 10 Select configuration type Select General Purpose / Transaction Processing and click Next to enter the database identifiers configuration page, as shown in Figure 11 (page 16). 15

19 Figure 11 Specify database identifiers Enter the global database name and SID (the SID must be consistent with ORACLE_SID in "Modifying the profile file (page 4)), and click Next to enter the configuration options configuration page, as shown in Figure 12 (page 17). 16

20 Figure 12 Specify configuration options Configure the memory settings as needed. See Table 1 (page 17) for setting the memory size. Table 1 Value for setting memory size System memory For centralized installed database For standalone database 4 GB 1400 MB 2400 MB 6 GB 2400 MB 3600 MB 8 GB 3600 MB 4800 MB 10 GB or larger 4500 MB 5000 MB Click the Character Sets tab and set the character set for the database, as shown in Figure 13 (page 18). 17

21 Figure 13 Select character sets NOTE: You can set WE8ISO8859P15 for western European languages. Make sure the database character set is set correctly, or garbled characters may appear. For more information about setting database character set, see the Oracle Database Globalization Support Guide at If you are not sure of the language, select Use Unicode (AL32UTF8) for the database character set. After setting the initialization parameters, click Next to enter the management options configuration page, as shown in Figure 14 (page 19). 18

22 Figure 14 Specify management options Use the default settings and click Next to enter the database storage options configuration page, as shown in Figure 15 (page 20). 19

23 Figure 15 Specify database storage options Select File System, use the default database file location, and click Next to enter the recovery options configuration page, as shown in Figure 16 (page 21). 20

24 Figure 16 Specify recovery options Select Do not enable automated backups and click Next to enter the schema passwords configuration page, as shown in Figure 17 (page 22). 21

25 Figure 17 Specify schema passwords You can set different passwords for the database accounts SYS, SYSTEM, DBSNMP, and SYSMAN, or use the same password for all counts. Then click Next to enter the privileged operating system groups configuration page, as shown in Figure 18 (page 23). CAUTION: For imc to correctly identify the password of the user SYS during installation, make sure that the password does not contain any of the following characters: ` ' \ "! ( ) & \\ $ < > / ^ \t If you do not want to change the password of the user SYS, create a user with the same privileges as the user SYS and make sure that the password does not contain any of the previous characters. For more information about creating a database user, see "Creating a database user (page 60). 22

26 Figure 18 Privileged operating system groups Use the default settings and click Next to enter the prerequisite checks page, as shown in Figure 19 (page 24). 23

27 Figure 19 Perform prerequisite checks In Figure 19 (page 24), the installation program checks the environment settings and displays the check results. Manually verify the items that are flagged with warnings and items that require manual check, and modify the environment settings. Then click Next. If no item needs to be verified manually, click Next to enter the summary page, as shown in Figure 20 (page 25). 24

28 Figure 20 Summary Click Finish to enter the product installation page, as shown in Figure 21 (page 26). 25

29 Figure 21 Install product The installation program starts to create the database and displays the progress bar. After the database is created, the script execution page appears, as shown in Figure 22 (page 27). 26

30 Figure 22 Execute configuration scripts Open a terminal window, log in as the root user, and execute the scripts. After that, close the terminal window and return to the script execution page. Click OK to complete installation, as shown in Figure 23 (page 28). 27

31 Figure 23 Finish Click Close to complete installing the database. Reboot your operating system and configure the database For more information, see "Managing Oracle database 11g R2 (page 58). 28

32 4 Installing the Oracle database client To deploy the IMC server and database server on different hosts, you must install the Oracle 11g R2 client with the same version as the database server on the IMC server. For installation preparations, see "2 Preparing for Installation (page 2). Installing the client After restarting the operating system, log in to the system as an Oracle user. In the Oracle client installation directory, execute the following command: $./runinstaller The installation type selection page appears, as shown in Figure 24 (page 29). Figure 24 Select an installation type Select Custom and click Next to enter the product languages selection page, as shown in Figure 25 (page 30). 29

33 Figure 25 Select product languages Select English and click Next to enter the installation location selection page, as shown in Figure 26 (page 31). 30

34 Figure 26 Select the installation location Use default settings. Click Next to enter the inventory creation page, as shown in Figure 27 (page 32). 31

35 Figure 27 Create inventory Use default settings. Click Next to enter the available product components page, as shown in Figure 28 (page 33). 32

36 Figure 28 Available product components Select the following components: Oracle SQLJ Oracle Database Utilities Oracle Java Client SQL *Plus Oracle JDBC/THIN Interfaces Oracle Call Interface(OCI) Oracle Connection Manager Oracle ODBC Driver Oracle SQL Developer Click Next to perform prerequisite checks. If your system environment settings meet the requirement, you will directly enter the summary page, as shown in Figure 29 (page 34); if not, you must modify your system environment variables as prompted before going to the next step. 33

37 Figure 29 Summary page Click Finish on the summary page to enter the product installation page, as shown in Figure 30 (page 35). 34

38 Figure 30 Install the product The system starts installing the Oracle client, and provides a progress bar on the page. During installation, an Oracle Net Configuration Assistant page pops up, as shown in Figure 31 (page 36). 35

39 Figure 31 Welcome page 1 Select the Perform typical configuration check box, and click Next to enter the welcome page, as shown in Figure 32 (page 37). 36

40 Figure 32 Welcome page 2 Click Next to complete product installation, as shown in Figure 33 (page 38). 37

41 Figure 33 Complete product installation Click Finish to enter the script execution page, as shown in Figure 34 (page 39). 38

42 Figure 34 Execute configuration scripts Open a terminal window and log in as the root user. Execute the scripts in the specified directory, as shown in Figure 35 (page 40). 39

43 Figure 35 Execute scripts After executing the scripts, close the terminal window and return to the script execution page. Click OK to complete Oracle client installation, as shown in Figure 36 (page 41). 40

44 Figure 36 Complete Oracle client installation Click Close to complete the installation. Configuring the Oracle client After installing the Oracle client, configure relevant parameters, including network service name, protocol, port number, and database server address. You can perform service naming by modifying the configuration file, or by using the netmgr tool provided by Oracle. This section describes how to use the netmgr tool. First, go to the $ORACLE_HOME/bin/ directory and launch netmgr. $cd $ORACLE_HOME/bin/ #./netmgr Select Local Service Naming from the navigation tree, as shown in Figure 37 (page 42). 41

45 Figure 37 netmgr Click the create link + on the left of the page to specify the network service name on the Net Service Name Wizard page, as shown in Figure 38 (page 43). 42

46 Figure 38 Network service name wizard Enter a network service name. Click Next to enter the protocol selection page, as shown in Figure 39 (page 44). 43

47 Figure 39 Select a protocol Select TCP/IP (Internet Protocol), and click Next to enter the protocol settings page, as shown in Figure 40 (page 45). 44

48 Figure 40 Protocol settings page Type the database server s IP address for Host Name, and use the default port number. Click Next to enter the service configuration page, as shown in Figure 41 (page 46). 45

49 Figure 41 Service configuration page Type the global database name of the database server for Service Name, and use the default connection type. Click Next to enter the test page, as shown in Figure 42 (page 47). 46

50 Figure 42 Test page Click Finish. You can see the service name you specified by selecting Local Service Naming from the navigation tree, and the configuration you made by clicking that service name, as shown in Figure 43 (page 48). 47

51 Figure 43 View the configuration Save your configuration and quit. 48

52 5 Configuring a network service name CAUTION: If IMC servers deployed in distributed mode do not use the same database, do not configure network service names with the same name but different configurations for the IMC servers. When IMC servers are deployed in distributed mode or use a separate database server, you must configure a network service name for the IMC server to connect to its database server. The network service name includes the parameters, such as the name, host name, protocol, and database name. You can configure the network service name in the following ways: Execute the command as an Oracle user: Netca The window, shown in Figure 44 (page 49), for configuring an Oracle network service name appears. Figure 44 Welcome interface Select Local Net Service Name configuration and click Next. The Select an Operation window appears, as shown in Figure 45 (page 50). 49

53 Figure 45 Select an operation Select Add and click Next. You can also select any other operation as needed, as shown in Figure 46 (page 50). Figure 46 Service Name 50

54 Enter the service name of the database you want to access, shown in Figure 47 (page 51) and click Next. An oracle database s service name is normally its global database name. Figure 47 Select a protocol Select transmission protocol TCP and click Next. The Configure Host and Port Number window, shown in Figure 48 (page 52) appears. 51

55 Figure 48 Configure host name and port number Enter the IP address of the database server, select Use the standard port number of 1521, and click Next to advance to the Perform a Test window shown in Figure 49 (page 52). Figure 49 Perform a test 52

56 Select Yes, perform a test and click Next. The Test Interface window displays as shown in Figure 50 (page 53). Figure 50 Test interface The interface displays the test result of connecting to the Oracle database server. If the connection fails, click Change Login to change the login username and password, shown in Figure 51 (page 54). 53

57 Figure 51 Change username and password Still use the username system, enter the password, and click OK. Figure 52 Test result 54

58 The interface shows that the connection is successful (Figure 52 (page 54)) and you can access the Oracle database server. Click Next to advance to enter a name for the network service name screen, shown in Figure 53 (page 55). Figure 53 Enter a name for the network service name Enter a name for the network service name. This name is automatically added to the list for selecting a network service name when you install IMC. Click Next to advance to the service name screen, shown in Figure 54 (page 56). 55

59 Figure 54 Whether to configure another network service name If you want to configure another network service name, select Yes and click Next. If not, select No and click Next to access the configuration complete screen, shown in Figure 55 (page 56). Figure 55 Complete network service name configuration 56

60 Click Next to complete network service name configuration, shown in Figure 56 (page 57). Figure 56 Finish Click Finish. To illustrate the network service name configuration, take the following application scenarios for example: Scenario 1: If Server A (master IMC server), and Servers B and C (subordinate IMC servers) use local databases and have been configured with network service names TNSNAME_A for connecting to Server A, TNSNAME_B for connecting to Server B, and TNSNAME_C for connecting to Server C, respectively, you must configure the other two unavailable network service names for each server, for example, TNSNAME_B and TNSNAME_C for Server A. The configuration of the same network service name must be the same. Scenario 2: If Server A (master IMC server), and Servers B and C (subordinate IMC servers) use a separate database server DBServer_D and have been configured with a network service name TNSNAME_D for connecting to DBServer_D, Servers A, B, and C can use the network service name TNSNAME_D when you install IMC on them. NOTE: The network service names in the example are for illustration only. 57

61 6 Managing Oracle database 11g R2 To operate the database, you must log in to the system as oracle. Perform the commands in the subsequent sections as the oracle user unless otherwise specified. NOTE: The following operations apply only to the Oracle database server. Enabling the Oracle service manually 1. Enable the listener controller After rebooting the operating system, enable the listener controller using the following commands: $ cd $ORACLE_HOME/bin $./lsnrctl start To view the status of the listener controller named lsnrctl, use the following command: $./lsnrctl service 2. Enable the Oracle database After ensuring that you have successfully started up the listener controller, start up the Oracle database with the following commands: $ cd $ORACLE_HOME/bin $./sqlplus sys/ora123 as sysdba SQL>startup SQL>exit where, sys is the name of the administrator user of the Oracle database, and the user password is ora123. After running the preceding commands, you can successfully start up the Oracle database. Configuring Oracle database 11g R2 After installing the database server, make some configurations by changing the configuration file directly, or using the tool netmgr offered by Oracle. The following part of this section describes how to configure the Oracle database by using netmgr. Tool netmgr locates in the $ORACLE_HOME/bin/ directory. To enable netmgr, use the following commands: $ cd $ORACLE_HOME/bin/ $./netmgr Adding the database service for a listener On page Oracle Net Manager, select node LISTENER from the navigation tree. Select Database Services from the list box and then click Add Database. Specify the global database name, Oracle home directory, and the SID specified during the Oracle installation. Make sure the global database name and the SID are the same as those configured in the database identification page (see Figure 11 (page 16)). The detailed configurations are shown in Figure 57 (page 59). 58

62 Figure 57 Add the database service for a listener Setting the maximum number of Oracle processes and Oracle connection limit By default, the Oracle database allows 150 connections at most. When multiple IMC modules are deployed in centralized mode, or database errors occur on some IMC modules, you must set a proper maximum number of Oracle processes and a proper Oracle connection limit. For more information about the configuration procedure, see HP Intelligent Management Center Getting Started Guide. Shutting down the Oracle service manually To shut down the Oracle service, you need to shut down the Oracle database first, and then the listener controller. 1. Shut down the Oracle database Execute the following commands: $./sqlplus sys/ora123 as sysdba SQL>shutdown immediate SQL>exit where, sys is the name of the administrator user of the Oracle database, and the user password is ora Shut down the listener controller $ cd $ORACLE_HOME/bin $./lsnrctl stop Now, the Oracle service is shut down. 59

63 Configuring Oracle automatic startup To achieve Oracle automatic startup at the Linux operating system startup, register Oracle as the system service. 1. Copy the script file named oracled.tar.gz to the Linux operating system and then use the following command to unzip the file: tar -xzf oracled.tar.gz NOTE: The oracled.tar.gz file is in the manual/db/oracle directory of the IMC installation package. 2. Copy the unzipped file to the directory of /etc/rc.d/init.d/. (Execute the cp command as a root user.) cp oracled /etc/rc.d/init.d/ 3. Modify the attribute value of the file to 755 with the command chmod. (Execute the chmod command as a root user.) chmod R 755 oracled 4. Execute the service register command as a root user: chkconfig --add oracled 5. Edit the Oracle configuration file /etc/oratab, and change the last line: vi /etc/oratab Change the line: orcl:/u01/app/oracle/product/11.1.0/db_1:n to: orcl:/u01/app/oracle/product/11.1.0/db_1:y Save and quit the configuration. 6. You can use the commands of service oracled start and service oracled stop to start and stop Oracle services. Creating a database user Follow these steps to create a database user: 1. Log in to the Oracle database as the user SYS:./sqlplus sys/imc123 as sysdba sys is the username and IMC123 is the password. 2. Create a database user: NOTE: create user imc identified by imcpassword; imc is the username and imcpassword is the password. For IMC to correctly identify the password during installation, make sure that the password does not contain any of the following characters: ` ' \ "! ( ) & \\ $ < > / ^ \t 3. Grant the sysdba privilege to the user: grant sysdba to imc; 60

64 NOTE: Database users must be granted with the sysdba privilege for connecting to the database. Otherwise, deployment errors occur. Setting the character set for the Oracle client After installing the Oracle database ("Installing Oracle database 11g R2 (page 6)), you must set the NLS_LANG environment variable to comply with the client language environment. To make the NLS_LANG environment variable automatically take effect with the system loading, modify the /etc/profile file as follows: vi /etc/profile To set the language environment variables for client character set NLS_LANG, use these commands for different languages: English NLS_LANG=AMERICAN_AMERICA.WE8IS08859P15 export NLS_LANG Other languages Set a proper character set with the following format. NLS_LANG=LANGUAGE_NATIONAL.CHARACTERSET export NLS_LANG. TIP: You can set WE8ISO8859P15 for western European languages. Make sure the character set is set correctly, or garbled characters may appear. For more information about setting the client character set, see the Oracle Database Globalization Support Guide at 61

65 7 Installing IMC After completing all the configurations, reboot your operating system and log in to it as the root user. For information about how to install IMC, see IMC Installation Guide. TIP: After installing IMC, use the following commands to enable the IMC deployment monitoring agent. /opt/imc/deploy]#./dms.sh start /opt/imc/deploy]#./dma.sh 62

66 8 FAQ How to handle the case where the system displays that the space is not enough when creating the database instance? Check whether you have the file in the etc/sysctl.conf directory correctly configured. For more information, see "Adjusting kernel parameters" (page 3). How to handle garbled characters displayed on IMC? The garbled charactersmay be caused by the following reasons: Incorrect character set for the database Garbled characters may appear if you set the character set that is incompatible to IMC. For example, you set the English character set for Chinese IMC system. To solve this problem, reinstall the Oracle database, and select the correct character set. Incorrect character set for the clients Garbled characters may appear when NLS_LANG is not correctly set or modified during IMC operation. To solve this problem, correct the environment variable and restart the server and IMC. Incorrect environment variables for the server and the default installation of the Oracle database If you install the Oracle database by using the default mode, the Oracle is set with the default character set according to the LANG environment variables, which may not be correctly set. For example, if you use the default installation where LANG is C to install a database of Japanese character set, WE8ISO8859P1 will be set as the character set, so garbled characters appear. To solve this problem, follow the correct steps to re-install the Oracle database. You can follow the steps as in "Installing Oracle database 11g R2" (page 6) to install the Oracle database. TIP: For more information about setting the database and client character sets, see the Oracle Database Globalization Support Guide at How to verify if the environment variables take effect? Execute the command echo $variable name to verify if the configurations about the home directory, Oracle LIB, and Oracle instance take effect. For example: #echo $ORACLE_HOME /u01/app/oracle/product/11.1.0/db_1 #echo $LD_LIBRARY_PATH :/u01/app/oracle/product/11.1.0/db_1/lib #echo $ORACLE_SID orcl How can I update database passwords for IMC? The usernames and passwords used by the IMC modules are stored in cipher text in file \common\conf\ server-addr.xml in the installation path. You can use the./pwdmgr command to obtain passwords in clear text or update the latest passwords to the file. 63

67 Usually, a user can use the database management tool to change the database password of a certain IMC module. To ensure communication between IMC and the database, use the./pwdmgr command to update the corresponding password in file server-addr.xml. If IMC is deployed in distributed mode, you must update the password for every IMC server, as shown below. [root@daemon8829 imc]# cd deploy/ [root@daemon8829 imc]#./pwdmgr.sh modify config_db imc_config dbpasswd Change password successfully In the preceding commands, dbpasswd represents the latest database password of the imc_config user, config_db represents the database name, and represents the IP address of the database. To obtain the IP address and name of a Oracle database, view the settings of the corresponding user in file $IMCROOT/common/conf/server-addr.xml. If the database server connection is very slow, what can I do? Verify the DNS configuration: use the vi editing tool to check the DNS configuration information in the directory of /etc/resolv.conf: cd /etc vi resolv.conf serch rhel55x64.imc nameserver nameserver

68 9 Support and other resources Contacting HP For worldwide technical support information, see the HP support website: Before contacting HP, collect the following information: Product model names and numbers Technical support registration number (if applicable) Product serial numbers Error messages Operating system type and revision level Detailed questions Subscription service HP recommends that you register your product at the Subscriber's Choice for Business website: After registering, you will receive notification of product enhancements, new driver versions, firmware updates, and other product resources. Related information Documents Websites To find related documents, browse to the Manuals page of the HP Business Support Center website: For related documentation, navigate to the Networking section, and select a networking category. For a complete list of acronyms and their definitions, see HP A-Series Acronyms. HP.com HP Networking HP manuals HP download drivers and software HP software depot 65

69 Conventions GUI conventions This section describes the conventions used in this documentation set. Convention Boldface Description Window names, button names, field names, and menu items are in bold text. For example, the New User window appears; click OK. Multi-level menus are separated by arrows. For example, File Create Folder. Symbols Convention NOTE CAUTION Description An alert that calls attention to important information that if not understood or followed can result in data loss, data corruption, or damage to hardware or software. An alert that contains additional or supplementary information. Port numbering in examples The port numbers in this document are for illustration only and might be unavailable on your device. 66

70 Index access right, 4 acronyms list, reference, 65 adding database service for listener, 58 character set for Oracle client, 61 configuring Oracle database client, 41 configuring network service name, 49 configuring Oracle automatic startup, 60 configuring Oracle database, 58 conventions GUI, 66 symbols, 66 creating database user, 60 database service for a listener, 58 database user, 60 deployment monitoring agent, IMC, 62 disk space, 3 enabling Oracle service manual, 58 environment variables, 5, 63 FAQs, 63 garbled characters, causes and solutions, 63 home directory, 3 HP Business Support Center website, 65 HP manuals, website, 65 HP support website, 65 IMC deployment monitoring agent, 62 installing, 62 installing IMC, 62 Oracle database, 6 Oracle database client, 29 preparation, 2 kernel parameters, 3 Linux AS 5, 3 Linux AS 6.1, 3 managing Oracle database 11g, 58 manual enabling Oracle service, 58 maximum number of Oracle database connections, 59 network service name, 49 Oracle automatic startup, 60 creating access right, 4 creating base directory, 4 creating directory owner, 4 creating group, 3 setting user password, 3 Oracle database configuring, 58 ensuring normal startup and operations, 4 installing, 6 maximum number of connections, 59 uploading, 5 Oracle database client character set, 61 configuring, 41 installing, 29 Oracle service shutting down manually, 59 preparing for installation, 2 profile file, 4 registering product on website, 65 requirements, software, 2 root user, 3 shutting down Oracle service manually, 59 slow database server connection, 64 software requirements, 2 support website for HP, 65 technical support information on web, 65 update database passwords, 64 user password, 3 websites HP download drivers and software, 65 HP manuals, 65 HP Networking, 65 HP software depot, 65 HP.com, 65 67

Oracle 11g R2. Installation and Configuration Guide. Abstract

Oracle 11g R2. Installation and Configuration Guide. Abstract Oracle 11g R2 Installation and Configuration Guide Abstract This guide contains configuration information for installing and managing an Oracle Database 11g R2 for IMC on the Linux operating system. Part

More information

HP Intelligent Management Center

HP Intelligent Management Center HP Intelligent Management Center Oracle 11g Installation and Configuration Guide Abstract This guide contains configuration information for installing and managing an Oracle Database 11g for IMC on the

More information

v7.0 HP Intelligent Management Center

v7.0 HP Intelligent Management Center v7.0 HP Intelligent Management Center Oracle 11g Installation and Configuration Guide Abstract This guide contains configuration information for installing and managing an Oracle Database 11g for IMC on

More information

Installation and Configuration Guide (for Linux)

Installation and Configuration Guide (for Linux) v5.2 MySQL 5.5 Installation and Configuration Guide (for Linux) Abstract This document is intended to be the installation and configuration guide for MySQL in addition to the procedures for upgrading,

More information

v7.0 HP Intelligent Management Center MySQL 5.6 Installation and Configuration Guide (for Linux)

v7.0 HP Intelligent Management Center MySQL 5.6 Installation and Configuration Guide (for Linux) v7.0 HP Intelligent Management Center MySQL 5.6 Installation and Configuration Guide (for Linux) Abstract This document is intended to be the installation and configuration guide for MySQL in addition

More information

SQL Server Installation and Configuration Guide. Abstract

SQL Server Installation and Configuration Guide. Abstract SQL Server 2008 Installation and Configuration Guide Abstract This document describes the configuration during and after database installation when IMC is used together with Microsoft SQL Server. The document

More information

v7.0 Intelligent Management Center MySQL 5.5 Installation and Configuration Guide (for Windows)

v7.0 Intelligent Management Center MySQL 5.5 Installation and Configuration Guide (for Windows) v7.0 Intelligent Management Center MySQL 5.5 Installation and Configuration Guide (for Windows) Abstract This document is intended to be the installation and configuration guide for MySQL in addition to

More information

v7.0 HP Intelligent Management Center Database Installation

v7.0 HP Intelligent Management Center Database Installation v7.0 HP Intelligent Management Center Database Installation Frequently Asked Questions Part number: 5998-4962 Software version: IMC PLAT 7.0 Legal and notice information Copyright 2014 Hewlett-Packard

More information

Installation and Configuration Guide

Installation and Configuration Guide v7.0 HP Intelligent Management Center SQL Server 2008 Installation and Configuration Guide Abstract This document describes the configuration during and after database installation when IMC is used together

More information

HP Intelligent Management Center v7.1 MySQL 5.6 Installation and Configuration Guide (Windows)

HP Intelligent Management Center v7.1 MySQL 5.6 Installation and Configuration Guide (Windows) HP Intelligent Management Center v7.1 MySQL 5.6 Installation and Configuration Guide (Windows) Abstract This document provides installation and configuration information for MySQL. It includes the procedures

More information

SQL Server 2008 R2. Installation and Configuration Guide

SQL Server 2008 R2. Installation and Configuration Guide SQL Server 2008 R2 Installation and Configuration Guide Abstract This document describes the configuration during and after database installation when IMC is used together with Microsoft SQL Server. The

More information

HPE Intelligent Management Center

HPE Intelligent Management Center HPE Intelligent Management Center MySQL 5.5 Installation and Configuration Guide (for Linux) Abstract This document provides installation and configuration information for MySQL. It includes the procedures

More information

SQL Server 2008 R2. Installation and Configuration Guide

SQL Server 2008 R2. Installation and Configuration Guide SQL Server 2008 R2 Installation and Configuration Guide Abstract This document describes the configuration during and after database installation when IMC is used together with Microsoft SQL Server. The

More information

HPE Intelligent Management Center

HPE Intelligent Management Center HPE Intelligent Management Center MySQL 5.6 Installation and Configuration Guide (for Linux) Abstract This document provides installation and configuration information for MySQL. It includes the procedures

More information

OEM 13cR2 Installation on RHEL 6.9

OEM 13cR2 Installation on RHEL 6.9 OEM 13cR2 Installation on RHEL 6.9 Oracle Enterprise Manager 13c R2 Installation on Red Hat Enterprise Lnux 6.9. The database installation is custom - without using templates. 2018 KADIR ILKER TAYSI ALL

More information

HP 10500/ G Unified Wired-WLAN Module

HP 10500/ G Unified Wired-WLAN Module HP 10500/7500 20G Unified Wired-WLAN Module Fundamentals Configuration Guide Part number: 5998-3914 Software version: 2308P29 (HP 10500/7500 20G Unified Wired-WLAN Module) Document version: 6W102-20131112

More information

by guotao zhong August 2006

by guotao zhong August 2006 The installation of Oracle RAC 10g Release 2 on Asianux 2.0(x86-64) by guotao zhong August 2006 1. Introduction One Oracle RAC is a cluster database with a shared cache architecture that provides highly

More information

HP High-End Firewalls

HP High-End Firewalls HP High-End Firewalls NAT and ALG Command Reference Part number: 5998-2639 Software version: F1000-E/Firewall module: R3166 F5000-A5: R3206 Document version: 6PW101-20120706 Legal and notice information

More information

HPE Intelligent Management Center

HPE Intelligent Management Center HPE Intelligent Management Center SQL Server 2012 Installation and Configuration Guide Abstract This document describes configuration during and after database installation when IMC is used with Microsoft

More information

Oracle Database 12c R1

Oracle Database 12c R1 Oracle Database 12c R1 I. II. III. 1. Software 2. A) B) C) 3. 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. A) B) C) D) 1. VirtualBox Guest Addition 2. 3. 4. IV. DB V. VI. Database I. Click here to expand...

More information

Guidelines for using Internet Information Server with HP StorageWorks Storage Mirroring

Guidelines for using Internet Information Server with HP StorageWorks Storage Mirroring HP StorageWorks Guidelines for using Internet Information Server with HP StorageWorks Storage Mirroring Application Note doc-number Part number: T2558-96338 First edition: June 2009 Legal and notice information

More information

Oracle Database 12c Installation Procedure

Oracle Database 12c Installation Procedure Oracle Database 12c Installation Procedure Step 0: Preparation Step 0.1: Fully patch the system. Run: # yum update -y Step 0.2: Install the EPEL repo. Run: # yum install epel-release Step 0.3: Prepare

More information

HP Intelligent Management Center SOM Administrator Guide

HP Intelligent Management Center SOM Administrator Guide HP Intelligent Management Center SOM Administrator Guide Abstract This guide contains comprehensive conceptual information for network administrators and other personnel who administrate and operate the

More information

HP StorageWorks Performance Advisor. Installation Guide. Version 1.7A

HP StorageWorks Performance Advisor. Installation Guide. Version 1.7A HP StorageWorks Performance Advisor Installation Guide Version 1.7A notice Copyright 2002-2004 Hewlett-Packard Development Company, L.P. Edition 0402 Part Number B9369-96068 Hewlett-Packard Company makes

More information

About the HP 830 Series PoE+ Unified Wired-WLAN Switch and HP 10500/ G Unified Wired-WLAN Module

About the HP 830 Series PoE+ Unified Wired-WLAN Switch and HP 10500/ G Unified Wired-WLAN Module About the HP 830 Series Switch and HP 10500/7500 20G Unified Module s Part number: 5998-3903 Software version: 3308P29 (HP 830 Series Switch) 2308P29 (HP 10500/7500 20G Unified Module) Document version:

More information

#########oracle 11g installation on RHEL 5################

#########oracle 11g installation on RHEL 5################ #########oracle 11g installation on RHEL 5################ ********DAY-1 5April2011************** Step 1: Network settings: vi /etc/hosts For

More information

HP A5120 EI Switch Series IRF. Command Reference. Abstract

HP A5120 EI Switch Series IRF. Command Reference. Abstract HP A5120 EI Switch Series IRF Command Reference Abstract This document describes the commands and command syntax options available for the HP A Series products. This document is intended for network planners,

More information

HP 5120 EI Switch Series

HP 5120 EI Switch Series HP 5120 EI Switch Series Layer 3 - IP Routing Configuration Guide Part number: 5998-1793 Software version: Release 2220 Document version: 6W100-20130810 Legal and notice information Copyright 2013 Hewlett-Packard

More information

Oracle Database 10g R2. Installation Guide for OEL5(x86) Writer : 이경호

Oracle Database 10g R2. Installation Guide for OEL5(x86) Writer : 이경호 Oracle Database 10g R2 Installation Guide for OEL5(x86) Writer : 이경호 목차 1. 시스템구성... - 2-1.1. 개요... - 2-1.1.1. 정의... - 2-1.1.2. 목적... - 2-1.1.3. 환경... - 2-2. 준비사항... - 2-3. Oracle Install configuration...

More information

HP 5920 & 5900 Switch Series

HP 5920 & 5900 Switch Series HP 5920 & 5900 Switch Series EVB Configuration Guide Part number: 5998-3379 Software version: Release2207 Document version: 6W100-20121130 Legal and notice information Copyright 2012 Hewlett-Packard Development

More information

Oracle Collaboration Suite

Oracle Collaboration Suite Oracle Collaboration Suite Quick Installation Guide Release 2 (9.0.4.1) for hp-ux PA-RISC (64-bit), Linux x86, and Solaris Operating Environment (SPARC 32-bit) September 2003 Part No. B10885-02 This document

More information

JRE version 1.1.6v5 (Java Runtime Environment) - please DO NOT get the JDK instead. This can be downloaded from

JRE version 1.1.6v5 (Java Runtime Environment) - please DO NOT get the JDK instead. This can be downloaded from User Friendly Install Of Oracle8i on Redhat Linux 6.1 ------------------------------------------------------ If you have never tried to install Oracle8i on Linux then start here! Oracle8i release 8.1.5.0.0

More information

HP 5920 & 5900 Switch Series

HP 5920 & 5900 Switch Series HP 5920 & 5900 Switch Series OpenFlow Command Reference Part number: 5998-4679a Software version: Release 23xx Document version: 6W101-20150320 Legal and notice information Copyright 2015 Hewlett-Packard

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

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

HP Intelligent Management Center Remote Site Management User Guide

HP Intelligent Management Center Remote Site Management User Guide HP Intelligent Management Center Remote Site Management User Guide Abstract This book provides overview and procedural information for Remote Site Management, an add-on service module to the Intelligent

More information

HP ALM Client MSI Generator

HP ALM Client MSI Generator HP ALM Client MSI Generator Software Version: 1.00 User Guide Document Release Date: October 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties for HP products and services

More information

HP Library and Tape Tools 4.20 Release Notes

HP Library and Tape Tools 4.20 Release Notes HP Library and Tape Tools 4.20 Release Notes Part Number: EH957-90970B Published: February 2016 Edition: 1 Copyright 2015 Hewlett-Packard Development Company, L.P. Hewlett-Packard Company makes no warranty

More information

HP 5820X & 5800 Switch Series IRF. Command Reference. Abstract

HP 5820X & 5800 Switch Series IRF. Command Reference. Abstract HP 5820X & 5800 Switch Series IRF Command Reference Abstract This document describes the commands and command syntax options available for the HP 5820X & 5800 Series products. This document is intended

More information

HPE FlexNetwork MSR Router Series

HPE FlexNetwork MSR Router Series HPE FlexNetwork MSR Router Series Comware 7 OAA Configuration Guides Part number: 5998-8789 Software version: CMW710-E0407 Document version: 6W100-20160526 Copyright 2016 Hewlett Packard Enterprise Development

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

HP Video Over Ethernet. User Guide

HP Video Over Ethernet. User Guide HP Video Over Ethernet User Guide 2016 HP Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services are set forth

More information

Data Protector Express Hewlett-Packard Company

Data Protector Express Hewlett-Packard Company Installation Guide Data Protector Express Hewlett-Packard Company ii Data Protector Express Installation Guide Copyright Copyright 2005/2006 by Hewlett-Packard Limited. March 2006 Part Number BB116-90024

More information

HP Service Test Management

HP Service Test Management HP Service Test Management for the Windows operating system Software Version: 11.00 Installation Guide Document Release Date: February 2011 Software Release Date: February 2011 Legal Notices Warranty The

More information

About the Configuration Guides for HP Unified

About the Configuration Guides for HP Unified About the Configuration Guides for HP Unified Wired-W Products HP 830 Unified Wired-W PoE+ Switch Series HP 850 Unified Wired-W Appliance HP 870 Unified Wired-W Appliance HP 11900/10500/7500 20G Unified

More information

HP Intelligent Management Center v7.1

HP Intelligent Management Center v7.1 HP Intelligent Management Center v7.1 iar Quick Start Guide Part number: 5998-6863 Published: September 2014 Software Version: IMC PLAT 7.1 (E0302) Edition: 1.0 Legal and notice information Copyright 2014

More information

HP Network Node Manager ispi Performance for Quality Assurance Software

HP Network Node Manager ispi Performance for Quality Assurance Software HP Network Node Manager ispi Performance for Quality Assurance Software Intelligent Response Agent for the Windows and Linux operating systems Software Version: 9.20 Installation Guide Document Release

More information

Dell Statistica. Statistica Enterprise Server Installation Instructions

Dell Statistica. Statistica Enterprise Server Installation Instructions Dell Statistica Statistica Enterprise Server Installation Instructions 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in

More information

Standardize Microsoft SQL Server Cluster Provisioning Using HP DMA

Standardize Microsoft SQL Server Cluster Provisioning Using HP DMA Technical white paper Standardize Microsoft SQL Server Cluster Provisioning Using HP DMA HP Database and Middleware Automation version 10.30 Table of Contents Purpose 2 Prerequisites 4 Process Overview

More information

HP IMC Distributed Deployment Guide with Local Database

HP IMC Distributed Deployment Guide with Local Database HP IMC Distributed Deployment Guide with Local Database Abstract This document describes the processes and procedures to follow when deploying the HP Intelligent Management Center in addition to the procedures

More information

H3C imc. Branch Intelligent Management System. User Manual. Hangzhou H3C Technologies Co., Ltd.

H3C imc. Branch Intelligent Management System. User Manual. Hangzhou H3C Technologies Co., Ltd. H3C imc Branch Intelligent Management System User Manual Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Software version: imc BIMS 5.0 (E0102) Document version: 5PW103-20150427 Copyright 2011-2015,

More information

HP StorageWorks. EVA Virtualization Adapter administrator guide

HP StorageWorks. EVA Virtualization Adapter administrator guide HP StorageWorks EVA Virtualization Adapter administrator guide Part number: 5697-0177 Third edition: September 2009 Legal and notice information Copyright 2008-2009 Hewlett-Packard Development Company,

More information

Install and Configure Enterprise Linux on the First Virtual Machine

Install and Configure Enterprise Linux on the First Virtual Machine Install and Configure Enterprise Linux on the First Virtual Machine Download Enterprise Linux from Oracle and unzip the files: Enterprise-R4-U4-i386-disc1.iso Enterprise-R4-U4-i386-disc2.iso Enterprise-R4-U4-i386-disc3.iso

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Installation Manuals VSA 8.0 Quick Start - Demo Version Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty

More information

HP Database and Middleware Automation

HP Database and Middleware Automation HP Database and Middleware Automation For Windows Software Version: 10.10 SQL Server Database Refresh User Guide Document Release Date: June 2013 Software Release Date: June 2013 Legal Notices Warranty

More information

Achieve Patch Currency for Microsoft SQL Server Clustered Environments Using HP DMA

Achieve Patch Currency for Microsoft SQL Server Clustered Environments Using HP DMA Technical white paper Achieve Patch Currency for Microsoft SQL Server Clustered Environments Using HP DMA HP Database and Middleware Automation version 10.30 Table of Contents Purpose 2 Prerequisites 4

More information

HP Intelligent Management Center

HP Intelligent Management Center HP Intelligent Management Center Application Manager Administrator Guide Abstract This guide provides instructions for using IMC Application Manager. It includes information on prerequisites, service monitor

More information

HP MSR Router Series. IPX Configuration Guide(V5) Part number: Software version: CMW520-R2513 Document version: 6PW

HP MSR Router Series. IPX Configuration Guide(V5) Part number: Software version: CMW520-R2513 Document version: 6PW HP MSR Router Series IPX Configuration Guide(V5) Part number: 5998-8183 Software version: CMW520-R2513 Document version: 6PW106-20150808 Legal and notice information Copyright 2015 Hewlett-Packard Development

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 Linux Itanium B15677-01 November 2005 This guide describes how to quickly install Oracle Database Client on Linux x86-64 systems.

More information

Guest Management Software Administrator Guide. Installation and Getting Started Guide Administrator Guide

Guest Management Software Administrator Guide. Installation and Getting Started Guide Administrator Guide Guest Management Software Administrator Guide Guest ProCurve Management 5400zl Switches Software Installation and Getting Started Guide Administrator Guide Guest Management Software Administrator Guide

More information

Virtual Recovery Assistant user s guide

Virtual Recovery Assistant user s guide Virtual Recovery Assistant user s guide Part number: T2558-96323 Second edition: March 2009 Copyright 2009 Hewlett-Packard Development Company, L.P. Hewlett-Packard Company makes no warranty of any kind

More information

HP 527 Dual Radio ac Unified Wired-WLAN Walljack

HP 527 Dual Radio ac Unified Wired-WLAN Walljack HP 527 Dual Radio 802.11ac Unified Wired-WLAN Walljack Installation Guide Part number: 5998-7087a Document version: 6W101-20150318 Legal and notice information Copyright 2015 Hewlett-Packard Development

More information

Core Services SSL Installation Guide. Service Pack 9, July 2007

Core Services SSL Installation Guide. Service Pack 9, July 2007 Core Services SSL Installation Guide Service Pack 9, July 2007 IONA Technologies PLC and/or its subsidiaries may have patents, patent applications, trademarks, copyrights, or other intellectual property

More information

HPE StoreVirtual OS Update Guide

HPE StoreVirtual OS Update Guide HPE StoreVirtual OS Update Guide Abstract This guide is intended for system administrators who are responsible for updating to the latest versions of software for StoreVirtual storage. Part Number: 865551-002

More information

x10data Application Platform v7.1 Installation Guide

x10data Application Platform v7.1 Installation Guide Copyright Copyright 2010 Automated Data Capture (ADC) Technologies, Incorporated. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting the

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 IBM: Linux on System z E56896-01 November 2014 This guide describes how to quickly install Oracle Database Client 12c Release 1

More information

HP BladeSystem Management Pack (v 1.x) for Microsoft System Center User Guide

HP BladeSystem Management Pack (v 1.x) for Microsoft System Center User Guide HP BladeSystem Management Pack (v 1.x) for Microsoft System Center User Guide Abstract This guide provides information on using the HP BladeSystem Management Pack for System Center version 1.x to manage

More information

Setting Up Oracle for Prime Fulfillment

Setting Up Oracle for Prime Fulfillment APPENDIXA This appendix describes how to set up an Oracle Database 11g, Enterprise Edition Release 11.2.0.1.0-64 bit Production server that works with Cisco Prime Fulfillment. This appendix is written

More information

Installing and Patching Oracle

Installing and Patching Oracle APPENDIXA This section provides supporting information to assist you with the Oracle 11g installation. Note Oracle 11g is available only for a 64-bit architecture. Use the information in this section in

More information

HP-UX Software and Patching Management Using HP Server Automation

HP-UX Software and Patching Management Using HP Server Automation HP-UX Software and Patching Management Using HP Server Automation Software Version 7.84, released August 2010 Overview... 2 Patch Management for HP-UX Prerequisites... 2 HP-UX Patching Features... 2 Importing

More information

HP Online ROM Flash User Guide. July 2004 (Ninth Edition) Part Number

HP Online ROM Flash User Guide. July 2004 (Ninth Edition) Part Number HP Online ROM Flash User Guide July 2004 (Ninth Edition) Part Number 216315-009 Copyright 2000, 2004 Hewlett-Packard Development Company, L.P. Confidential computer software. Valid license from HP required

More information

HP IDOL Site Admin. Software Version: Installation Guide

HP IDOL Site Admin. Software Version: Installation Guide HP IDOL Site Admin Software Version: 10.9 Installation Guide Document Release Date: March 2015 Software Release Date: March 2015 Legal Notices Warranty The only warranties for HP products and services

More information

SonicWALL Global Management System Installation Guide Standard Edition

SonicWALL Global Management System Installation Guide Standard Edition SonicWALL Global Management System Installation Guide Standard Edition Version 2.3 Copyright Information 2002 SonicWALL, Inc. All rights reserved. Under the copyright laws, this manual or the software

More information

Installation Guide Install Guide Centre Park Drive Publication Date: Feb 11, 2010

Installation Guide Install Guide Centre Park Drive Publication Date: Feb 11, 2010 EventTracker Install Guide 8815 Centre Park Drive Publication Date: Feb 11, 2010 Columbia MD 21045 U.S. Toll Free: 877.333.1433 Abstract The purpose of this document is to help users install and configure

More information

HPE 3PAR OS MU3 Patch 18 Upgrade Instructions

HPE 3PAR OS MU3 Patch 18 Upgrade Instructions HPE 3PAR OS 3.1.3 MU3 Patch 18 Upgrade Instructions This upgrade instructions document is for installing Patch 18 on the HPE 3PAR Operating System Software 3.1.3.334 (MU3). This document is for Hewlett

More information

Agilent OpenLAB Chromatography Data System (CDS)

Agilent OpenLAB Chromatography Data System (CDS) Agilent OpenLAB Chromatography Data System (CDS) ChemStation Edition AIC (M8304AA) Setup Guide Agilent Technologies Notices Agilent Technologies, Inc. 2010-2014, 2015 No part of this manual may be reproduced

More information

HP LeftHand P4000 Virtual SAN Appliance in an HP BladeSystem environment solution guide

HP LeftHand P4000 Virtual SAN Appliance in an HP BladeSystem environment solution guide HP LeftHand P4000 Virtual SAN Appliance in an HP BladeSystem environment solution guide AT459-96002 Part number: AT459-96002 First edition: April 2009 Legal and notice information Copyright 2009 Hewlett-Packard

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

1 Reviewing Information About This Guide

1 Reviewing Information About This Guide Oracle Database Client Quick Installation Guide 11g Release 2 (11.2) for IBM: Linux on System z E24327-03 November 2016 This guide describes how to quickly install Oracle Database Client 11g Release 2

More information

Preinstallation Tasks

Preinstallation Tasks Pre-installation Tasks on Linux Creating group and user su root groupadd dba useradd -g dba -d /d01/oracleas/asinf asinf mkdir p /d01/oracleas chown asinf :dba /d01/oraceas Preinstallation Tasks The following

More information

HP 5920 & 5900 Switch Series

HP 5920 & 5900 Switch Series HP 5920 & 5900 Switch Series IRF Command Reference Part number: 5998-2881 Software version: Release2207 Document version: 6W100-20121130 Legal and notice information Copyright 2012 Hewlett-Packard Development

More information

EMS Installation. Workstation Requirements CHAPTER. EMS Lite (Windows 95/98) EMS NT (Windows NT 4.0)

EMS Installation. Workstation Requirements CHAPTER. EMS Lite (Windows 95/98) EMS NT (Windows NT 4.0) CHAPTER 2 EMS Installation This chapter provides instructions for installing the Element Management System (EMS) software on a user workstation. Workstation Requirements The following sections list the

More information

HPE Insight Management Agents Installation Guide

HPE Insight Management Agents Installation Guide HPE Insight Management Agents 10.60 Installation Guide Abstract This guide provides information about the Hewlett-Packard Enterprice Insight Management Agents software Installation and Configuration procedures.

More information

Lab 1 - Getting started with OIM 11g

Lab 1 - Getting started with OIM 11g Lab 1 - Getting started with OIM 11g Contents Lab 1 - Getting started with OIM 11g... 1 1. Introduction... 1 2. Contents... 3 2.1 VM Accessibility... 3 2.2 Understand directory structures... 4 2.3 Database

More information

Space Manager with LiveReorg 8.5. Installation Guide

Space Manager with LiveReorg 8.5. Installation Guide Space Manager with LiveReorg 8.5 Installation Guide Copyright 2018 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in

More information

Management and Printing User Guide

Management and Printing User Guide Management and Printing User Guide Copyright 2007 Hewlett-Packard Development Company, L.P. Windows is a U. S. registered trademark of Microsoft Corporation. Intel and Centrino are trademarks or registered

More information

(RHEL4 and SLES9 covered)

(RHEL4 and SLES9 covered) DBA: Linux Installing Oracle Database 10 g Release 2 on Linux x86 (RHEL4 and SLES9 covered) by John Smiley DOWNLOAD Oracle Database 10g Release 2 TAGS linux, database, installation, All Learn the basics

More information

H3C Intelligent Management Center v7.3

H3C Intelligent Management Center v7.3 H3C Intelligent Management Center v7.3 inode Installation Guide (Mac OS) Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Software version: inode PC 7.3 (E0501) Document version: 5PW101-20161224

More information

System information update for system board replacement events

System information update for system board replacement events System information update for system board replacement events Standard Operating Procedure (SOP) When you replace the system board on the HP Pro Tablet 608 G1, the system s EEPROM is not able to detect

More information

INSTALL GUIDE BIOVIA INSIGHT 2016

INSTALL GUIDE BIOVIA INSIGHT 2016 INSTALL GUIDE BIOVIA INSIGHT 2016 Copyright Notice 2015 Dassault Systèmes. All rights reserved. 3DEXPERIENCE, the Compass icon and the 3DS logo, CATIA, SOLIDWORKS, ENOVIA, DELMIA, SIMULIA, GEOVIA, EXALEAD,

More information

HPE Intelligent Management Center v7.3

HPE Intelligent Management Center v7.3 HPE Intelligent Management Center v7.3 Service Operation Manager Administrator Guide Abstract This guide contains comprehensive conceptual information for network administrators and other personnel who

More information

KYOCERA Net Admin Installation Guide

KYOCERA Net Admin Installation Guide KYOCERA Net Admin Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for

More information

HPE Operations Bridge Reporter

HPE Operations Bridge Reporter HPE Operations Bridge Reporter Software Version: 10.21 Windows and Linux operating systems Disaster Recovery Guide Document Release Date: October 2017 Software Release Date: August 2017 Legal Notices Warranty

More information

HP StorageWorks 4000/6000/8000 Enterprise Virtual Array connectivity for Sun Solaris installation and reference guide

HP StorageWorks 4000/6000/8000 Enterprise Virtual Array connectivity for Sun Solaris installation and reference guide HP StorageWorks 4000/6000/8000 Enterprise Virtual Array connectivity for Sun Solaris installation and reference guide Part number: 5697-5263 First edition: May 2005 Legal and notice information Copyright

More information

SIOS Protection Suite for Linux Oracle Recovery Kit v Administration Guide

SIOS Protection Suite for Linux Oracle Recovery Kit v Administration Guide SIOS Protection Suite for Linux Oracle Recovery Kit v9.0.2 Administration Guide Mar 2016 This document and the information herein is the property of SIOS Technology Corp. (previously known as SteelEye

More information

Installation Guide. EventTracker Enterprise. Install Guide Centre Park Drive Publication Date: Aug 03, U.S. Toll Free:

Installation Guide. EventTracker Enterprise. Install Guide Centre Park Drive Publication Date: Aug 03, U.S. Toll Free: EventTracker Enterprise Install Guide 8815 Centre Park Drive Publication Date: Aug 03, 2010 Columbia MD 21045 U.S. Toll Free: 877.333.1433 Abstract The purpose of this document is to help users install

More information

H3C Intelligent Management Center v7.3

H3C Intelligent Management Center v7.3 H3C Intelligent Management Center v7.3 inode Installation Guide (Windows) New H3C Technologies Co., Ltd. http://www.h3c.com.hk Software version: inode PC 7.3 (E0511) Document version: 5PW102-20170711 Copyright

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 Linux x86-64 E55098-08 July 2017 This guide describes how to quickly install Oracle Database Client 12c Release 1 (12.1) on Linux

More information

MDCStore High Content Data Management Solution Database Schema

MDCStore High Content Data Management Solution Database Schema MDCStore High Content Data Management Solution Database Schema Version 2.3 Installation and Update Guide 0112-0144 I March 2013 This document is provided to customers who have purchased Molecular Devices,

More information

HP P6000 Cluster Extension Software Installation Guide

HP P6000 Cluster Extension Software Installation Guide HP P6000 Cluster Extension Software Installation Guide This guide contains detailed instructions for installing and removing HP P6000 Cluster Extension Software in Windows and Linux environments. The intended

More information