HP Intelligent Management Center

Size: px
Start display at page:

Download "HP Intelligent Management Center"

Transcription

1 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 Linux operating system. Part number: Software version: IMC PLAT 5.1 SP1 (E0202P05) Document version: 5P

2 Legal and notice information 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. Acknowledgments 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 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 6 4 Installing the Oracle client 28 Installation procedure 28 Testing the connectivity between the client and the server 38 5 Configuring a network service name 39 6 Managing Oracle database 11g 51 Enabling the Oracle service manually 51 Configuring Oracle database 11g 51 Adding the database service for a listener 51 Setting the maximum number of Oracle processes and Oracle connection limit 52 Shutting down the Oracle service manually 52 Configuring Oracle automatic startup 53 Creating a database user 53 Setting the character set for the Oracle client 54 Setting database storage space 54 Setting database storage space in the web interface 55 Setting database storage space through SQL sentences 56 Modifying database memory parameters 56 Setting user password lifetime of the Oracle database 57 Changing user passwords of the Oracle database 57 Using database administrator s account to change the user password 58 Updating the user password in the IMC configuration file 59 Unlocking a database user 60 7 Installing IMC 61 8 FAQs 62 9 Support and other resources 63 Contacting HP 63 Subscription service 63 Related information 63 Documents 63 Websites 63 Conventions 64 i

4 Index 65 ii

5 1 Overview If you are using an Oracle database version different from 11g, the configuration procedure may differ slightly. Before installing IMC 1. Install Oracle Database 11g. 2. Restart the operating system. 3. Install IMC. 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 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: 1. 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. 2. On the IMC server, install an Oracle client with the same version as the database. CAUTION: Use the Linux 5.0 operating system. 1

6 2 Preparing for installation Before installing Oracle Database 11g, log in to the system as a root user and complete configurations as follows. 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. A 64-bit operating system must use the 64-bit Oracle database. 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, 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

7 NOTE: You can locate uninstalled software packages in the server directory of the Linux 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. The hard disk drive where the /tmp directory is located must have 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 as follows: vi /etc/sysctl.conf If you are running Linux AS 5, 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 Create the oracle user, oinstall group, and 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. 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

8 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 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, 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=orcl 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. Specify consistent ORACLE_SID in the subsequent installation procedure. Save the file after setting the environment variable. Setting environment variables for the oracle user To ensure normal startup and operation of the Oracle database, configure the environment variables for the oracle user. For example, set the environment variables in the.bash_profile file 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. LANG=en_US.UTF-8 4

9 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 cannot install the Oracle database. For more information, see "How to verify if the environment variables take effect?" 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, follow the directions on the disk. Now, the preparation for installing the Oracle database is completed. Restart the operating system, and then proceed with the Oracle installation. 5

10 3 Installing Oracle database 11g The following section describes the Oracle database server installation procedure. 1. When you complete the configurations in Preparing for installation, restart the operating system. 2. Log in to the system as the Oracle user. 3. Perform the following command in the installation package directory: $./runinstaller NOTE: Input a dot (.) in front of the slash (/) in the preceding command line. The universal installation screen appears, as shown in Figure 1. Figure 1 Select an installation method 4. Select Advanced Installation, and then click Next to open the installation type selection page, as shown in Figure 2. 6

11 Figure 2 Select an installation type 5. Select Enterprise Edition, and then click Next to open the installation location selection page, as shown in Figure 3. 7

12 Figure 3 Select an installation location 6. Use the default settings, and then click Next to open the product-specific prerequisite checks page, as shown in Figure 4. 8

13 Figure 4 Product-specific prerequisite checks In Figure 4, the installation program checks the environment settings and displays the check results. 7. Manually verify the items that are flagged with warnings and items that require manual check. 8. Modify the environment settings, and then click Next. 9. If no item needs to be verified manually, click Next to open the configuration option selection page, as shown in Figure 5. 9

14 Figure 5 Select configuration option 10. Use the default settings, and then click Next to open the database configuration selection page, as shown in Figure 6. 10

15 Figure 6 Select database configuration 11. Select Advanced, and then click Next to open the privileged operating system group configuration page, as shown in Figure 7. 11

16 Figure 7 Configure privileged operating system groups 12. Use the default settings, and then click Next to open the Oracle Configuration Manager Registration page, as shown in Figure 8. 12

17 Figure 8 Register Oracle configuration manager 13. If you have purchased the Oracle license, select Enable Oracle Configuration Manager. 14. Type the authorization information, and then click Next to open the summary page, as shown in Figure 9. 13

18 Figure 9 Summary 15. The Summary page displays the settings you previously made. Click Install to start installing Oracle Database 11g. Figure 10 shows the installation progress bar. 14

19 Figure 10 Installation progress 16. After the installation, the Database Templates page opens, as shown in Figure

20 Figure 11 Database Templates 17. Select Custom Database, and then click Next to open the Database Identification page, as shown in Figure 12. Figure 12 Database Identification 16

21 18. Enter the global database name and SID, which must be consistent with ORACLE_SID in "Modifying the profile file." 19. Click Next to open the Management Options page, as shown in Figure 13. Figure 13 Management Options 20. Use the default settings, and then click Next to open the Database Credentials page, as shown in Figure

22 Figure 14 Database Credentials You can set different passwords for the database accounts SYS, SYSTEM, DBSNMP, and SYSMAN, or use the same password for all accounts. Then click Next to open the Storage Options page, as shown in Figure 15. 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 same privileges and make sure that the password does not contain any of the previous characters. For more information, see "Creating a database user." 18

23 Figure 15 Select database storage options 21. Select File System, and then click Next to open the Database File Locations page, as shown in Figure 16. Figure 16 Specify Database File Locations 19

24 22. Select Use Database File Locations from Template, and then click Next to open the database Recovery Configuration page, as shown in Figure 17. Figure 17 Recover database configuration 23. Use the default settings, and then click Next to open the Database Content page, as shown in Figure

25 Figure 18 Set database content 24. Use the default settings, and then click Next. On the Initialization Parameters page, configure the memory settings according to the installation type and physical memory size, as shown in Figure 19. Figure 19 Set initialization parameters 21

26 Typical is selected by default. See Table 1 for setting the memory size. Table 1 Value for setting memory size System memory For centralized database For standalone database 4 G 1400 M 2400 M 6 G 2400 M 3600 M 8 G 3600 M 4800 M 10 G or larger 4500 M 5000 M 25. Click the Character Sets tab, and then set the character set for the database, as shown in Figure 20. Figure 20 Set the character set NOTE: You can set WE8ISO8859P1 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 Oracle Database Globalization Support Guide at If you are not sure of the language, select Use Unicode (AL32UTF8) for the database character set. 26. After setting the initialization parameters, click Next to open the Security Settings page, as shown in Figure

27 Figure 21 Use default security settings 27. Use the default settings, and then click Next to open the Automatic Maintenance Tasks page, as shown in Figure

28 Figure 22 Configure automatic maintenance tasks 28. Select Enable automatic maintenance tasks, and then click Next to open the Database Storage page, as shown in Figure 23. Figure 23 Configure the database storage 24

29 29. Select Tablespaces > USERS from the navigation tree to open the General page. 30. Select Use bigfile tablespace, and then click Next to open the database Creation Options page, as shown in Figure 24. Figure 24 Create Database 31. Use the default settings, and then click Finish to start creating the database. After the database is created, a configuration script window appears, as shown in Figure

30 Figure 25 Execute configuration scripts 32. Open a terminal window, log in as the root user, and execute the scripts. 33. On the configuration script window, click OK to complete installation, as shown in Figure

31 Figure 26 Complete installation 34. Click Exit to complete installing the database. 27

32 4 Installing the Oracle client Installation procedure To deploy the IMC server and database server on different hosts, install the Oracle 11g client with the same version as the database server on the IMC server. See "Preparing for installation." 1. 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 welcome page appears, as shown in Figure 27. Figure 27 Welcome page 2. Click Next to open the Specify Inventory directory and credentials page, as shown in Figure

33 Figure 28 Specify Inventory directory and credentials 3. Use default settings, and then click Next to open the Select Installation Type page, as shown in Figure

34 Figure 29 Select an installation type 4. Select Custom, and then click Next to open the Specify Home Details page, as shown in Figure

35 Figure 30 Select a location 5. Type the ORACLE_SID in the Name field. The value must be consistent with the ORACLE_SID of the database server for a correct connection. 6. Use defaults for other settings, and then click Next to open the Product-Specific Prerequisite Checks page, as shown in Figure

36 Figure 31 Product-Specific Prerequisite Checks 7. The installation program checks the system environment, and displays the result. If your system environment settings meet the requirement, click Next to open the Available Product Components page, as shown in Figure 32. If not, you must modify your system environment variables as prompted before going to the next step. 32

37 Figure 32 Select 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 ODBC Driver Oracle SQL Developer 8. Click Next to open the Summary page, as shown in Figure

38 Figure 33 Summary page 9. Click Install to open the Install page, as shown in Figure

39 Figure 34 Install the product 10. The Execute Configuration scripts page appears during installation, as shown in Figure

40 Figure 35 Execute Configuration scripts 11. Open a terminal window, and then log in as the root user. Execute the scripts in the specified directory, as shown in Figure

41 Figure 36 Execute the scripts 12. After executing the scripts, close the terminal window, and then return to the Execute Configuration scripts page. Click OK to open the End of Installation page, as shown in Figure

42 Figure 37 End of Installation 13. Click Exit to complete the installation and start the database connectivity check process. Testing the connectivity between the client and the server After you install and configure the client, test the connectivity between the client and the server, so that you can connect to the database server when you install and deploy IMC. 1. Open the Linux terminal, and execute the following command as an Oracle user: sqlplus as sysdba Where imc123 is the password of the user named sys of the database, and service-test is the network service name connecting to the database server. For more information about the network service name configuration, see "Configuring a network service name." 2. If you can log in successfully, it means that the client can connect to the Oracle server. 38

43 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 an IMC server does not use the local database server, configure a network service name for the IMC server to connect to its database server and another IMC servers. The network service name includes the parameters, such as the name, host name, protocol, and database name. 1. Execute the command as an Oracle user: netca The window for configuring an Oracle network service name appears, as shown in Figure 38. Figure 38 Welcome interface 2. Select Local Net Service Name configuration, and then click Next. 3. Select Add, and then click Next, as shown in Figure 39. You can also select any other operation as needed. 39

44 Figure 39 Select an operation 4. Enter the service name of the database you want to access, and then click Next, as shown in Figure 40. The service name of an Oracle database is normally its global database name. 40

45 Figure 40 Select a Service Name 5. Select transmission protocol TCP, and then click Next, as shown in Figure

46 Figure 41 Select a protocol 6. Enter the IP address of the database server. If you use a local database, do no enter Select Use the standard port number of 1521, and then click Next, as shown in Figure

47 Figure 42 Configure host name and port number 7. Select Yes, perform a test, and then click Next, as shown in Figure 43. Figure 43 Perform a test 8. The interface displays the test result of connecting to the Oracle database server. 43

48 If the connection fails, click Change Login to change the login username and password. Click Next, as shown in Figure 44. Figure 44 Test interface 9. Still use the username system, enter the password (which was set during the database installation), and then click OK. See Figure

49 Figure 45 Change username and password 10. The interface shows that the connection is successful and you can access the Oracle database server. Click Next, as shown in Figure

50 Figure 46 Test result 11. 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, as shown in Figure

51 Figure 47 Enter a name for the network service name 12. If you want to configure another network service name, select Yes, and then click Next. If not, select No, and then click Next. See Figure

52 Figure 48 Option to configure another network service name 13. Click Next to complete network service name configuration, as shown in Figure 49. Figure 49 Complete network service name configuration 48

53 14. Click Finish, as shown in Figure 50. Figure 50 Finish Scenario 1: The following two application scenarios illustrate the network service name configuration: If Server A (IMC master server), and Servers B and C (IMC subordinate 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, as shown in Figure

54 Figure 51 Network service name configuration scenario Scenario 2: If Server A (IMC master server), and Servers B and C (IMC subordinate 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. 50

55 6 Managing Oracle database 11g 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 To enable 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 After the installation, make some configurations by changing the configuration file directly or by using the tool netmgr provided by Oracle. The tool netmgr is located 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 To add the database service for a listener: 1. On page Oracle Net Manager, select node LISTENER from the navigation tree. 2. Select Database Services from the list box, and then click Add Database. 3. Specify the global database name, Oracle home directory, and the SID specified during the Oracle installation. 51

56 Make sure the global database name and the SID are the same as those configured in the Database Identification page. See Figure 12. The detailed configurations are shown in Figure 52. Figure 52 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. Perform the following commands: $./sqlplus sys/ora123 as sysdba SQL>shutdown immediate SQL>exit 52

57 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 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 any directory of 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 6. You can use the commands of service oracled start and service oracled stop to start and stop Oracle services. Creating a database user 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 user imc: create user imc identified by imcpassword; imc is the username and imcpassword is the password. 53

58 CAUTION: 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; 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 using the previous steps, 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: English language NLS_LANG=AMERICAN_AMERICA.WE8IS08859P1 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 WE8ISO8859P1 for western European languages. Make sure the character set is set correctly, or garbled characters may appear. For more information, see Oracle Database Globalization Support Guide at Setting database storage space If you install the database by following the steps above, skip this section because you have specified big file table space. The size of a file in the Oracle database is up to 32 G. If no big file system is specified, you should add files to the USERS table space to provide storage space after installing the database. The following sections describe how to add files in the web interface and through SQL sentences. You can select either method. The number of files to be added depends on the disk space needed for all IMC components. For example, if IMC needs 190 G to manage more than 5000 devices, you should create at least six files (190 G/32 G = ). If a database has several IMC components installed, create files according to the total needed size of the components. 54

59 Setting database storage space in the web interface To set database storage space in the web interface: 1. Log in to the operating system as the oracle user, and use the emctl start dbconsole command to start up the web management system. bin]$ emctl start dbconsole 2. Access the website address:1158/em. ip address is the IP address of the Oracle server. 3. Log in to the web interface as the SYSTEM user. Select Server > Datafiles, as shown in Figure 53. Figure 53 Database instance management interface 4. The datafile management interface appears after you click Datafiles, as shown in 55. Figure 54 Datafile management interface 5. Select the datafile of the USERS table space, and then click Go next to Create Like to open the page, as shown in Figure

60 Figure 55 Create a datafile 6. Type the file name and file directory. You can also use the default directory for file directory. After selecting all the settings, click OK. 7. Repeat these steps to add more data files. If your system has multiple disks, distribute the files on different disks for I/O load balancing. Setting database storage space through SQL sentences 1. Log in to your operating system as the oracle user, and then log in to the Oracle database as the sys user with the following commands: [root@imcserver ~]#su - oracle [oracle@imcserver ~]$sqlplus sys/syspassword@orcl as sysdba syspassword is the password of the sys user, and orcl is the Oracle instance. 2. Perform the following SQL sentence to check the number of data files in the USERS table space and file directory: SQL> select file_name from dba_data_files where tablespace_name='users'; FILE_NAME /u01/app/oracle/oradata/orcl/users01.dbf The output shows that the files are saved in the directory /u01/app/oracle/oradata/orcl/. 3. Add users02.dbf in the directory. Use the following sentence to add a data file in the new directory: SQL> alter tablespace USERS add datafile '/u01/app/oracle/oradata/orcl/userdata02.dbf' size 100M autoextend on next 100M maxsize UNLIMITED; You can add many data files with these steps. Modifying database memory parameters If the database memory parameters are not specified in "Installing Oracle database," follow these steps to set the memory parameters: 1. Log in to your operating system as the oracle user, and then log in to the Oracle database as the sys user with the following commands: 56

61 ~]# su - oracle [oracle@imcserver ~]$ sqlplus sys/syspassword@orcl as sysdba syspassword is the password of the sys user, and orcl is the Oracle instance. 2. Set the MEMORY_TARGET with the following sentence: SQL> alter system set MEMORY_TARGET=1700M scope=spfile; For the reference value, see Table 1. Setting user password lifetime of the Oracle database By default, the user password lifetime of the Oracle database is 180 days. Follow these steps to set a password to Unlimited: 1. Log in to your operating system as the oracle user, and then log in to the Oracle database as the sys user with the following commands : [root@imcserver ~]#su - oracle [oracle@imcserver ~]$sqlplus sys/syspassword@orcl as sysdba syspassword is the password of the sys user, and orcl is the Oracle global database name. 2. Use the following commands to set and display the password of the sys user: SQL> select * from dba_profiles s where s.profile='default' and resource_name='password_life_time'; PROFILE RESOURCE_NAME RESOURCE LIMIT DEFAULT PASSWORD_LIFE_TIME PASSWORD 180dys The output shows that the lifetime of the user is 180 days. 3. Use the following commands to set the user password to Unlimited: SQL> ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED; The modification takes effect immediately without rebooting your database and the password never expires. Changing user passwords of the Oracle database If a user password uses the default lifetime, change the password before the user runs for 180 days. You can view all the existing IMC users in the $IMCROOT/common/conf/server-addr.xml file. The username in each db-config represents a user account. If your IMC components are not installed at the same time, query the expiration date of user passwords by executing the following SQL sentence: select username,expiry_date from dba_users; See Figure

62 Figure 56 Query result To change a user password, follow these steps: 1. Using database administrator s account to change the user password 2. Updating the user password in the IMC configuration file If the new password is the same as the one to be expired, you do not need to update the user password in the IMC configuration file. If you change the password in Oracle or IMC without updating the IMC configuration files, the user account is locked because of inconsistent passwords. For more information, see "Unlocking a database user." The following examples illustrate how to change the password of user imc_config, and how to unlock the user. IMPORTANT: Stop IMC before you change passwords. After you complete changing user passwords, start IMC. Using database administrator s account to change the user password To change the user password using the database administrator s account: 1. Query the password of the Oracle database user by executing the pwdmgr.sh -query script provided by IMC. Figure 57 Query the password of the imc_config user As shown in Figure 57, the password of the imc_config user is imc5_snb2mhoquf. 58

63 2. Log in to your operating system as the oracle user, and then log in to the Oracle database as the sys user with the following commands: ~]# su - oracle [oracle@imcserver ~]$ sqlplus sys/syspassword@orcl as sysdba syspassword is the password of the sys user, and orcl is the Oracle global database name. 3. Execute the following SQL sentence to change the password of a specified user: SQL>alter user imc_config identified by dbpasswd dbpasswd is the new password of user imc_config. Updating the user password in the IMC configuration file Use the following commands to update the password of user imc_config in the IMC configuration file: [root@daemon8829 imc]# cd deploy/ [root@daemon8829 imc]#./pwdmgr.sh modify orcl imc_config dbpasswd Change password successfully dbpasswd is the new password of the user, and must be the same as that configured in "Using database administrator s account to change the user password." orcl is the Oracle instance name, and is the IP address of the Oracle database. For more information, see the $IMCROOT/common/conf/server-addr.xml file. If the password of an IMC component expires, change the database user password in the IMC configuration file by using the same commands. NOTE: 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. Usually, you 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, update the password for every IMC server. TIP: Set password sqlsql for the report database in IMC, or the database does not work. If you have installed UAM/EAD V3.60 and its patches, change passwords for user ead in the following configuration files, as shown in Table 2. Table 2 Change passwords for user ead File Variable name Remarks imc\uam\etc\uam.conf DBUserPassword If you are using E6301, E6301P01, imc\portal\conf\portal.properties database.password imc\uamjob\conf\uamjob.properties database.password or E6301H02, modify the value for variable PlatDBUserPassword in the imc\uam\etc\uam.conf file to the password for user imc_config. The imc\ead\conf\server.xml password uamjob directory exists only in the E6301L03 and later versions. 59

64 If you have installed the DAM component, set the password in the imc\dam\conf\server.xml file to the password for DAM database user account dam. If you have installed the UAM, EAD, or CAMS E6301 version and changed the database user password, change the passwords of all database users listed in the imc/deploy/conf/ component-env.xml file before you can upgrade the components. Unlocking a database user If IMC services cannot start after you change user passwords, a user account is locked. To check which user account is locked, use the user accounts with passwords changed to log in to the Oracle system at the command line interface (CLI). If a user account is locked, a message shown in Figure 58 appears. Figure 58 The user is locked In this example, user imc_config is locked. Log in to the Oracle database as administrator sys, and execute the following command to unlock the user: [root@imcserver ~]#su - oracle [oracle@imcserver ~]$sqlplus sys/syspassword@orcl as sysdba syspassword is the password of the sys user, and orcl is the Oracle global database name. SQL> ALTER USER imc_config ACCOUNT UNLOCK; After the user is unlocked, change the password for the user in Oracle and IMC, and make sure that the two passwords are consistent. If you do not want to lock a user that is attempting multiple times to log in with a wrong password, execute the following command: SQL> ALTER PROFILE DEFAULT LIMIT FAILED_LOGIN_ATTEMPTS UNLIMITED; Use the command with caution because the database never locks this user. 60

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. 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 61

66 8 FAQs 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." How to handle garbled characters displayed on IMC? The garbled characters may 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 the 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 is set as the character set, so garbled characters appear. To solve this problem, follow the steps for installing the Oracle database. For more information about setting the database and client character sets, see Oracle Database Globalization Support Guide in the Oracle 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 62

67 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 63

68 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 angle brackets. For example, File > Create > Folder. Symbols Convention WARNING! CAUTION IMPORTANT NOTE TIP Description Indicates that the failure to follow directions could result in bodily harm or death. Indicates that failure to follow directions could result in damage to equipment or data. Provides clarifying information or specific instructions. Provides additional information. Provides helpful hints and shortcuts. Port numbering in examples The port numbers in this document are for illustration only and might be unavailable on your device. 64

69 Index 32-bit operating system recommendation, 2 64-bit operating system recommendation, 2 access right, 4 acronyms list, reference, 64 adding database service for listener, 52 Automatic Maintenance Tasks page, 24 changing user password, 59, 60 character set for Oracle client, 55 completing installation, 27 configuration option, 10 configuration scripts, 26, 36 configuring network service name, 39 configuring Oracle automatic startup, 54 configuring Oracle database, 52 conventions GUI, 65 symbols, 65 creating database, 25 database user, 54 Creation Options page, 25 database character set, 22 configuration option, 11 identification, 16 templates, 16 Database Content page, 21 Database Credentials page, 18 Database File Locations page, 19 database service for a listener, 52 Database Storage page, 24 database storage space, 55 SQL sentences, 57 web interface, 55 database user, 54 database user, unlocking, 61 deployment monitoring agent, IMC, 62 disk space, 3 enabling Oracle service manual, 52 environment variables, 5, 63 FAQs, 63 file size in Oracle database, 55 garbled characters, causes and solutions, 55, 63 global database name, 40 home directory, 3 HP Business Support Center website, 64 HP manuals, website, 64 HP support website, 64 IMC deployment monitoring agent, 62 installing, 62 Initialization Parameters page, 21 installation, Oracle database location, 8 method, 6 type, 7 installation, Oracle database client location, 31 type, 30 installing completion, 27 IMC, 62 Oracle database, 6 Oracle database client, 28 preparation, 2 kernel parameters, 3 language environment variables, 55 Linux AS 5, 3 Local Net Service Name configuration, 39 locked user account, 61 Management Options page, 17 managing Oracle database 11g, 52 manual enabling Oracle service, 52 maximum number of Oracle database connections, 53 memory size, 22 network service name, 39, 47 network service name configuration, scenarios, 50 operating system groups, 12 Oracle automatic startup, 54 creating access right, 4 creating base directory, 4 creating directory owner, 4 creating group, 3 setting user password, 3 Oracle Call Interface (OCI), 33 Oracle Configuration Manager, 13 Oracle database configuring, 52 ensuring normal startup and operations, 4 installing, 6, 57 65

70 maximum number of connections, 53 Summary page, 14 uploading, 5 Oracle database client character set, 55 installation type, 30 installing, 28 inventory directory and credentials, 29 product components, 33 Summary page, 34 Oracle database server, accessing, 46 Oracle Database Utilities, 33 Oracle Java Client, 33 Oracle JDBC/THIN Interfaces, 33 Oracle ODBC Driver, 33 Oracle service shutting down manually, 53 Oracle SQL Developer, 33 Oracle SQLJ, 33 ORACLE_BASE, 4 ORACLE_HOME, 4 ORACLE_SID, 4, 17, 31 preparing for installation, 2 prerequisite checks, 9, 32 privileges for operating systems, 12 product-specific prerequisite checks, 32 profile file, 4 querying password, 59 Recovery Configuration page, 20 registering Oracle configuration manager, 13 registering product on website, 64 requirements, software, 2 root user, 3 Security Settings page, 23 shutting down Oracle service manually, 53 size of file in Oracle database, 55 software requirements, 2 SQL *Plus, 33 SQL sentences, setting database storage space, 57 Storage Options page, 19 storage space for database, 55 SQL sentences, 57 web interface, 55 Summary page Oracle database, 14 Oracle database client, 34 support website for HP, 64 system memory, 22 technical support information on web, 64 transmission protocol, 41 unlocking database user, 61 updating user password, 60 user account, locked, 61 user password, 3 changing, 59, 60, 61 lifetime, 58 updating, 59, 60 web interface, setting database storage space, 55 websites HP download drivers and software, 64 HP manuals, 64 HP Networking, 64 HP software depot, 64 HP.com, 64 Welcome page, Oracle database client, 28 66

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

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

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

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

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 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

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

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

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

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

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

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

#########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

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

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

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

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

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

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 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 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

Setting Up Oracle for ISC

Setting Up Oracle for ISC APPENDIXA This appendix describes how to set up an Oracle Database 10g, Enterprise Edition Release 10.2.0.1.0-64 bit Production server that works with Cisco IP Solution Center (ISC). This appendix is written

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 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 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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 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

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 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

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

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

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

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

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

Oracle Utilities Data Model Installation Guide. Release 12.2

Oracle Utilities Data Model Installation Guide. Release 12.2 Oracle Utilities Data Model Installation Guide Release 12.2 E81920-01 September 2017 Oracle Utilities Data Model Installation Guide, Release 12.2 E81920-01 Copyright 2011, 2017, Oracle and/or its affiliates.

More information

Guest Management Software V2.0.2 Release Notes

Guest Management Software V2.0.2 Release Notes Guest Management Software V2.0.2 Release Notes Abstract These release notes provide important release-related information for GMS (Guest Management Software) Version 2.0.2. GMS V2.0.2 is MSM software version

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

HP OpenView Operations

HP OpenView Operations HP OpenView Operations Oracle Real Application Clusters (RAC) Support Software Version: 8.23 Edition 1 UNIX Manufacturing Part Number: None (PDF only) September 2006 Copyright 1999-2006 Hewlett-Packard

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

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 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

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

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

MDCStore 2.0 DATABASE. Installation Guide

MDCStore 2.0 DATABASE. Installation Guide MDCStore 2.0 DATABASE Installation Guide Molecular Devices MDCStore 2.0 Installation Guide Copyright Copyright 2008, MDS Analytical Technologies. All rights reserved. No part of this publication may be

More information

INSTALL GUIDE BIOVIA INSIGHT 2.6

INSTALL GUIDE BIOVIA INSIGHT 2.6 INSTALL GUIDE BIOVIA INSIGHT 2.6 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

(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

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

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

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

HPE IMC DBA User Database to IMC User Database Restoration Configuration Examples

HPE IMC DBA User Database to IMC User Database Restoration Configuration Examples HPE IMC DBA User Database to IMC User Database Restoration Configuration Examples Part number: 5200-1335 Software version: IMC PLAT 7.2 (E0403) The information in this document is subject to change without

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

Oracle Agile Engineering Data Management

Oracle Agile Engineering Data Management Oracle Agile Installing Oracle 11g R2 on Windows for Agile e6.1.2.2 Part No. E27819-02 April 2012 Copyright and Trademarks Copyright 1995, 2012, Oracle and/or its affiliates. All rights reserved. This

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

BEAAquaLogic. Interaction Studio. Installation and Upgrade Guide

BEAAquaLogic. Interaction Studio. Installation and Upgrade Guide BEAAquaLogic Interaction Studio Installation and Upgrade Guide Version 2.2 MP1 Document Revised: June 1, 2008 Contents 1. Welcome How to Use This Book..................................................

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

IMC inode Intelligent Client v7.0 (E0106) Copyright (c) Hewlett-Packard Development Company, L.P. and its licensors.

IMC inode Intelligent Client v7.0 (E0106) Copyright (c) Hewlett-Packard Development Company, L.P. and its licensors. IMC inode Intelligent Client v7.0 (E0106) Copyright (c) 2011-2014 Hewlett-Packard Development Company, L.P. and its licensors. Table of Contents 1. What's New in this Release 2. Problems Fixed in this

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

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

Upgrade Oracle Applications from to R12.1.1

Upgrade Oracle Applications from to R12.1.1 Upgrade Oracle Applications from 11.5.10.2 to R12.1.1 System Overview Version 11.5.10.2 Oracle Applications Vision Instance OS: Redhat Linux 4 update 5 Type: Single Node instance Applications OS User 11i

More information

SAP Workforce Performance Builder 9.5

SAP Workforce Performance Builder 9.5 Upgrade Guide Workforce Performance Builder Document Version: 1.0 2016-10-15 2016 SAP SE or an SAP affiliate company. All rights reserved. CUSTOMER Table of Contents 1 Introduction... 3 2 Migrating a Workarea...

More information

Enabling High Availability for SOA Manager

Enabling High Availability for SOA Manager Enabling High Availability for SOA Manager Abstract... 2 Audience... 2 Introduction... 2 Prerequisites... 3 OS/Platform... 3 Cluster software... 4 Single SOA Manager Server Fail Over... 4 Setting up SOA

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

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide 2013 DataNet Quality Systems. All rights reserved. Printed in U.S.A. WinSPC and QualTrend are registered trademarks of DataNet Quality Systems. All other trademarks

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 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

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

IMC Network Traffic Analyzer 7.2 (E0401P04) Copyright 2016 Hewlett Packard Enterprise Development LP

IMC Network Traffic Analyzer 7.2 (E0401P04) Copyright 2016 Hewlett Packard Enterprise Development LP Network Traffic Analyzer 7.2 (E0401P04) Copyright 2016 Hewlett Packard Enterprise Development LP Table of Contents 1. What's New in this Release 2. Problems Fixed in this Release 3. Software Distribution

More information

Configuring and Integrating Oracle

Configuring and Integrating Oracle Configuring and Integrating Oracle The Basics of Oracle 3 Configuring SAM to Monitor an Oracle Database Server 4 This document includes basic information about Oracle and its role with SolarWinds SAM Adding

More information

HPE 3PAR OS GA Patch 12

HPE 3PAR OS GA Patch 12 HPE 3PAR OS 3.3.1 GA Patch 12 Upgrade Instructions Abstract This upgrade instructions document is for installing Patch 12 on the HPE 3PAR Operating System Software OS-3.3.1.215-GA. This document is for

More information

HPE Security Fortify WebInspect Enterprise Software Version: Windows operating systems. Installation and Implementation Guide

HPE Security Fortify WebInspect Enterprise Software Version: Windows operating systems. Installation and Implementation Guide HPE Security Fortify WebInspect Enterprise Software Version: 17.10 Windows operating systems Installation and Implementation Guide Document Release Date: May 2017 Software Release Date: April 2017 Legal

More information

OMi Management Pack for Oracle Database. Software Version: Operations Manager i for Linux and Windows operating systems.

OMi Management Pack for Oracle Database. Software Version: Operations Manager i for Linux and Windows operating systems. OMi Management Pack for Oracle Database Software Version: 1.10 Operations Manager i for Linux and Windows operating systems User Guide Document Release Date: June 2017 Software Release Date: February 2014

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

Installation Guide. OMi Management Pack for Microsoft Skype for Business Server. Software Version: 1.00

Installation Guide. OMi Management Pack for Microsoft Skype for Business Server. Software Version: 1.00 OMi Management Pack for Microsoft Skype for Business Server Software Version: 1.00 For Operations Manager i for Linux and Windows operating systems Installation Guide Document Release Date: July 2017 Software

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

Copyright SolarWinds. All rights reserved worldwide. No part of this document may be reproduced by any means nor modified, decompiled,

Copyright SolarWinds. All rights reserved worldwide. No part of this document may be reproduced by any means nor modified, decompiled, APM Migration Introduction... 3 General Requirements... 3 Database Requirements... 3 Stopping APM Services... 4 Creating and Restoring Orion Database Backups... 4 Creating a Database Backup File with Database

More information

HPE 3PAR OS MU3 Patch 97 Upgrade Instructions

HPE 3PAR OS MU3 Patch 97 Upgrade Instructions HPE 3PAR OS 3.2.2 MU3 Patch 97 Upgrade Instructions Abstract This upgrade instructions document is for installing Patch 97 on the HPE 3PAR Operating System Software. This document is for Hewlett Packard

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

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

HPE Network Virtualization

HPE Network Virtualization HPE Network Virtualization Software Version: 9.10 Installation Guide Document Release Date: June 2016 Software Release Date: June 2016 HPE Network Virtualization Legal Notices Warranty The only warranties

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

HP 3PARInfo 1.4 User Guide

HP 3PARInfo 1.4 User Guide HP 3PARInfo 1.4 User Guide Abstract This guide provides information about installing and using HP 3PARInfo. It is intended for system and storage administrators who monitor and direct system configurations

More information