Installation and Configuration Guide (for Linux)

Size: px
Start display at page:

Download "Installation and Configuration Guide (for Linux)"

Transcription

1 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, removing, registering, and backup and restore. This document is intended for use by network engineers or system administrators responsible for installing network software and components. HP Part Number: Published: 5.2 (E0401) Published: April 2013 Edition: 2.1

2 Copyright 2012, 2013 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.

3 Contents 1 Overview Installation...5 Installing the MySQL server...5 Installing the MySQL client...6 Customizing MySQL file directories Startup and stop...9 Starting up and stopping the MySQL service...9 Automatic startup Configuring the MySQL server...10 Setting security options...10 Creating a remote root user account...12 Creating a database user account...12 Configuring MySQL configuration files...13 Configuring maximum connections...13 Configuring the character set...14 Configuring the engine type...14 Configuring case-insensitive table name...14 Disabling log-bin settings...14 Setting innodb buffer sizes...15 Setting the max_allowed_packet size...15 Changing the directory of logs and database files Uninstallation FAQs Support and other resources...19 Contacting HP...19 Subscription service...19 New and changed information in this edition...19 Related information...19 Documents...19 Websites...19 Typographic conventions...19 Document conventions...20 GUI conventions...20 Symbols...20 Index...21 Contents 3

4 1 Overview A database is a prerequisite for installing IMC. Install and start the database service before you install IMC. This document describes how to install and configure the MySQL 5.5 database for use with IMC. The contents also apply to MySQL 5.1. Perform all operations described in this document as a Linux root user, unless otherwise specified. To install IMC on Linux 6.1, follow these guidelines: Prepare the following Linux packages: glibc el6.i686.rpm libaio el6.i686.rpm libgcc el6.i686.rpm libstdc el6.i686.rpm Install the packages by using the following commands: rpm -i --nodeps glibc el6.i686.rpm rpm -i --nodeps libaio el6.i686.rpm rpm -i --nodeps libgcc el6.i686.rpm rpm -i --nodeps libstdc el6.i686.rpm 4 Overview

5 2 Installation Before installing the MySQL server, copy the installation programs to the Linux server. This document uses MySQL-server rhel15.x86_64.rpm and MySQL-client rhel15.x86_64.rpm installation programs as examples as shown in Figure 1. Figure 1 MySQL installation programs on the Linux operating system Install both MySQL-server rhel15.x86_64.rpm and MySQL-client rhel15.x86_64.rpm on the database server. Install only MySQL-client rhel15.x86_64.rpm on the IMC server that uses a remote database server. Then you must select other server for the database location and enter the server IP address during IMC installation. Installing the MySQL server 1. Enter the directory where the MySQL installation programs are located. 2. Run the rpm -ivh MySQL-server rhel15.x86_64.rpm command to launch the MySQL server installation. Figure 2 Install the MySQL server Installing the MySQL server 5

6 3. Verify the installation. The MySQL service automatically starts when the MySQL server installation is complete, as shown in Figure 3. If the MySQL service did not automatically start, use the service mysql start command. By default, the MySQL server uses port number You can use the netstat command to check if the MySQL service is enabled. Figure 3 Check the MySQL service status The output shows that the MySQL service is running. Installing the MySQL client The MySQL client provides tools for MySQL management and user interaction, for example, mysqladmin and mysql. To install the MySQL client: 1. Enter the directory where the MySQL installation programs are located. 2. Run the rpm -ivh MySQL-client rhel15.x86_64.rpm command to launch the MySQL client installation. Figure 4 shows the installation process. Figure 4 Install the MySQL client 6 Installation

7 3. Verify the installation. If the MySQL server is installed on the local server, enter the mysql command. Figure 5 shows that the MySQL client is successfully installed. Figure 5 Enter the mysql command If the MySQL server is installed on a remote server, make sure that the MySQL server contains your root user account, and enter the command shown in Figure 6 to check whether or not the client can connect to the MySQL server. Figure 6 Verify the connection to the MySQL server In the output, is the IP address of the MySQL server, root is your root user account, and mysqlpassword is the password. The mysql prompt shows that the client has successfully connected to the MySQL server. Customizing MySQL file directories After the MySQL server and client are installed, the database files, configuration files, and command files are saved in different directories. Table 1 lists the default directories of MySQL server files. Table 1 MySQL server file directories Directory /usr/bin /usr/sbin Connector Client programs and scripts mysqld (MySQL service program) Customizing MySQL file directories 7

8 Table 1 MySQL server file directories (continued) Directory /var/lib/mysql /usr/share/mysql /etc/init.d/ /etc Connector Logs and database files Configuration files, error messages, and character set files Enables script mysql my.cnf To customize the directories, modify the datadir parameter in the file /etc/my.cnf. For example: datadir=/root/mysql_data The total size of logs and database files can grow large and is restricted by the maximum size of files allowed by the operating system. You can change the directory to a disk drive with large capacity. For more information about changing the directories of MySQL database files, see "Changing the directory of logs and database files." 8 Installation

9 3 Startup and stop Starting up and stopping the MySQL service MySQL is automatically configured as the system service after the MySQL server is installed. See Figure 7. You can start or stop the MySQL service to start and stop the MySQL server. Figure 7 Startup and stop commands You can also use the mysqladmin command to stop the MySQL server. Figure 8 The mysqladmin command You are required to enter the root user account password. If the MySQL server is installed for the first time, the password is empty. Press Enter. Automatic startup The MySQL service automatically starts when the system boots up. Figure 9 shows how to check whether the MySQL service is on the automatic startup list. Figure 9 Check whether the MySQL service is on the automatic startup list The output shows that the MySQL service automatically starts when Linux operates on any level from 2 to 5. Starting up and stopping the MySQL service 9

10 4 Configuring the MySQL server Disable the MySQL service when you perform operations described in the following sections, except for setting security options, creating a remote root user account, and creating a database user account. Setting security options After installing the MySQL server, run the mysql_secure_installation program to set security options, such as setting a root user password shown in Figure 10, and removing anonymous users or removing test database shown in Figure 11. The root user in this section refers to the MySQL database root user rather than the Linux root user. Figure 10 Set the root user password IMPORTANT: For IMC to properly identify the root user password during installation, ensure that the password does not contain any of the following characters: ` ' \ "! ( ) & \\ $ < > / ^ \t If you do not want to change the password of the root user, create a user account with root user privileges and ensure that the password does not contain any of the previous characters. For more information about the configuration steps, see "Creating a database user account." 10 Configuring the MySQL server

11 Figure 11 Remove anonymous users, disallow root login remotely, and remove test database The output shows that the remote root user is not enabled. For the configuration steps of the remote root user, see "Creating a remote root user account." After privilege tables are reloaded as shown in Figure 12, configuration is complete and MySQL installation is secure. Figure 12 Reload privilege tables Setting security options 11

12 Creating a remote root user account When installing IMC to use a remote database, you must log in to the database as a remote root user. In Figure 13, imc123 is the password of the root user, and imc123 is the password of the remote root user. You can change the password of the remote root user as needed. Figure 13 Create a remote root user account IMPORTANT: For IMC to correctly identify the password during installation, ensure that the password does not contain any of the following characters: ` ' \ "! ( ) & \\ $ < > / ^ \t Creating a database user account You can create a database user account and grant the user privileges to manage and operate the database. In Figure 14, imc123 is the password of the root user, imc_mysql is the new account name, and imcpassword is the password of the new user account. 12 Configuring the MySQL server

13 Figure 14 Create a database user account IMPORTANT: For IMC to correctly identify the password during installation, ensure that the password does not contain any of the following characters: ` ' \ "! ( ) & \\ $ < > / ^ \t Configuring MySQL configuration files Upon startup, MySQL server uses the default configuration file /etc/my.cnf, which provides the performance and behavior of the MySQL server. The file is not automatically generated. You must choose the proper settings from /usr/share/mysql. The file my-huge.cnf is required for support of IMC. Copy the file and save it as my.cnf, as shown in Figure 15. Figure 15 Copy file my-huge.cnf to file my.cnf Configuring maximum connections 1. Stop the MySQL service. 2. Enter the vi /etc/my.cnf command to enter the Visual interface (vi) editor. 3. Press the i key to enter the edit mode. 4. Modify the parameters. In the vi editor, add the max_connections parameter under [mysqld] in my.cnf. If this parameter already exists, you can change the value. [mysqld] max_connections= Press Esc to return to the common mode. 6. Press wq, save the edit, and quit the vi editor. You can set the maximum number of connections according to the installed modules. For more information about the maximum connections of different IMC modules, see HP IMC Getting Started Guide. Configuring MySQL configuration files 13

14 7. Start the MySQL service. Configuring the character set The English character set is latin1. To configure the character set: 1. Enter the vi /etc/my.cnf command to enter the vi editor. 2. Press the i key to enter the edit mode. 3. Modify the parameters. In the vi editor, add the character-set-server parameter under [mysqld] in my.cnf. If this parameter already exists, you can change the character set. vi /etc/my.cnf [mysqld] character-set-server=latin1 4. Press Esc to return to the common mode. 5. Press wq, save the edit, and quit the vi editor. Configuring the engine type 1. Enter the vi /etc/my.cnf command to enter the vi editor. 2. Press the i key to enter the edit mode. 3. Modify the parameters. In the vi editor, add the default-storage-engine parameter under [mysqld] in my.cnf. If this parameter already exists, you can change the type. vi /etc/my.cnf [mysqld] default-storage-engine = INNODB 4. Press Esc to return to the common mode. 5. Press wq, save the edit, and quit the vi editor. Configuring case-insensitive table name 1. Enter the vi /etc/my.cnf command to enter the vi editor. 2. Press the i key to enter the edit mode. 3. Modify the parameters. In the vi editor, add the lower_case_table_names parameter under [mysqld] in my.cnf. If this parameter already exists, you can change the value. vi /etc/my.cnf [mysqld] lower_case_table_names=1 4. Press Esc to return to the common mode. 5. Press wq, save the edit, and quit the vi editor. Disabling log-bin settings 1. Enter the vi /etc/my.cnf command to enter the vi editor. 2. Press the i key to enter the edit mode. 14 Configuring the MySQL server

15 3. Modify the parameters. In the vi editor, add the log-bin parameter under [mysqld] in my.cnf. If this parameter already exists, comment out the parameter. vi /etc/my.cnf [mysqld] #log-bin=mysql-bin 4. Press Esc to return to the common mode. 5. Press wq, save the edit, and quit the vi editor. Setting innodb buffer sizes 1. Enter the vi /etc/my.cnf command to enter the vi editor. 2. Press the i key to enter the edit mode. 3. Modify the parameters. In the vi editor, add the innodb_buffer_pool_size and innodb_additional_mem_pool_size parameters under [mysqld] in my.cnf. If this parameter already exists, you can change the values. [mysqld] innodb_buffer_pool_size=512m innodb_additional_mem_pool_size=16m 4. Press Esc to return to the common mode. 5. Press wq, save the edit, and quit the vi editor. Setting the max_allowed_packet size 1. Enter the vi /etc/my.cnf command to enter the vi editor. 2. Press the i key to enter the edit mode. 3. Modify the parameters. In the vi editor, add the max_allowed_packet parameter under [mysqld] in my.cnf. If this parameter already exists, you can change the value. [mysqld] max_allowed_packet = 200M 4. Press Esc to return to the common mode. 5. Press wq, save the edit, and quit the vi editor. Changing the directory of logs and database files 1. Stop the MySQL service. service mysql stop 2. Create a storage path for logs and database files. The path is /data/mysql_data in this example. mkdir p /data/mysql_data 3. Copy all files from the default directory to the new directory, and change ownership of the files. cp R /var/lib/mysql/* /data/mysql_data/ chown R mysql:mysql /data/mysql_data 4. Update the directory in the configuration file of the MySQL database. vi /etc/my.cnf Setting innodb buffer sizes 15

16 [mysqld] datadir=/data/mysql_data 5. Enable the MySQL service. service mysql start 16 Configuring the MySQL server

17 5 Uninstallation Uninstall the MySQL server and client as shown in Figure 16. Figure 16 Uninstall the MySQL server and client To check the component names, use the command shown in Figure 17. Figure 17 Check MySQL components You must manually remove database files after uninstallation. By default, the database files are saved in /var/lib/mysql. Use the rm rf command to remove the mysql directory. 17

18 6 FAQs Garbled characters appear in the database table Configure the character set when you install the MySQL server and client. If not, garbled characters can appear in the database table. 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. Typically, you can use the database management tool to change the database password of an 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 follows: [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 MySQL database, view the settings of the corresponding user in file $IMCROOT/common/conf/server-addr.xml. 18 FAQs

19 7 Support and other resources Contacting HP For worldwide technical support information, see the HP support website: Before contacting HP, collect the following information: Technical support registration number (if applicable) Product serial numbers Product model names and number Product identification number Applicable error message Add-on boards or hardware Third-party hardware or software Operating system type and revision level 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. New and changed information in this edition The following additions and changes have been made for this edition: A new "Support and other resources" chapter has been added. 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 FlexNetwork Technology Acronyms. HP.com: HP Networking: HP download drivers and software: Typographic conventions This section describes the conventions used in this documentation set. Contacting HP 19

20 Document conventions Table 2 Document conventions Convention Blue text: Table 2 (page 20) Blue, underlined text: Description Cross-reference links and addresses Website addresses Bold text Keys that are pressed Text typed into a GUI element, such as a box GUI elements that are clicked or selected, such as menu and list items, buttons, tabs, and check boxes Italic text Text emphasis Monospace text File and directory names System output Code Commands, their arguments, and argument values Monospace, italic text Code variables Command variables Monospace, bold text Emphasized monospace text GUI conventions Table 3 GUI conventions 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 WARNING! An alert that calls attention to important information that if not understood or followed can result in personal injury. CAUTION: 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. IMPORTANT: An alert that calls attention to essential information. NOTE: An alert that contains additional or supplementary information. 20 Support and other resources

21 Index A automatic startup, 9 C case-insensitive table name, 14 character set, 14 component names, 17 configuration files, 13 configuring case-insensitive table name, 14 character set, 14 engine type, 14 maximum connections, 13 MySQL configuration files, 13 connections, 13 contacting HP, 19 creating a database user, 12 a remote root user, 12 D database passwords, 18 database user, 12 disabling log-bin settings, 14 documentation, 19 typographic conventions, 20 E engine type, 14 F FAQs, 18 file directories, 7 file directories for MySQL server, 7 G garbled characters, 18 H help obtaining, 19 HP technical support, 19 maximum connections, 13 MySQL client installation, 6 MySQL file directories, 7 MySQL server installation, 5 P password, 10 privilege tables, 11 R registering product, 19 subscription service, 19 reloading privilege tables, 11 remote root user, 12 root user password, 10 S setting innodb buffer sizes, 15 the max_allowed_packet size, 15 setting security options, 10 starting and stopping MySQL service, 9 T technical support, 19 HP, 19 typographic conventions documentation, 19 symbols, 20 text GUI conventions, 20 U uninstallation, 17 updating, 18 database passwords, 18 user password, 10 W websites, 19 I innodb buffer sizes, 15 installing MySQL client, 6 MySQL server, 5 L log-bin settings, 14 M max_allowed packet size, 15 21

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

HP FlexFabric 5700 Switch Series

HP FlexFabric 5700 Switch Series HP FlexFabric 5700 Switch Series IRF Command Reference Part number: 5998-6683 Software version: Release 2416 Document version: 6W100-20150130 Legal and notice information Copyright 2015 Hewlett-Packard

More information

FUJITSU Cloud Service S5 Installation and Configuration of MySQL on a CentOS VM

FUJITSU Cloud Service S5 Installation and Configuration of MySQL on a CentOS VM FUJITSU Cloud Service S5 Installation and Configuration of MySQL on a CentOS VM This guide details the steps required to install and configure MySQL on a CentOS VM Introduction The FUJITSU Cloud Service

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

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

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

HP StorageWorks Partitioning in an EBS Environment Implementation Guide

HP StorageWorks Partitioning in an EBS Environment Implementation Guide HP StorageWorks Partitioning in an EBS Environment Implementation Guide Part number: 381448-002 First edition: November 2004 Copyright 2004 Hewlett-Packard Development Company, L.P. Hewlett-Packard Company

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

HP StoreOnce 4900 (44TB) and (60TB) Capacity Expansion Kit

HP StoreOnce 4900 (44TB) and (60TB) Capacity Expansion Kit HP StoreOnce 4900 (44TB) and (60TB) Capacity Expansion Kit Installation Instructions Abstract This document explains how to install the HP StoreOnce 4900 (44TB) and (60TB) Capacity Expansion Kit, apply

More information

HP Load Balancing Module

HP Load Balancing Module HP Load Balancing Module System Management Configuration Guide Part number: 5998-4216 Software version: Feature 3221 Document version: 6PW100-20130326 Legal and notice information Copyright 2013 Hewlett-Packard

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

HP Service Quality Management Solution

HP Service Quality Management Solution HP Service Quality Management Solution Service Designer V3.0 Installation and Configuration Guide Edition: 2.0 for Microsoft Windows Operating System Nov 2011 Copyright 2011 Hewlett-Packard Company, L.P.

More information

HPE IDOL Site Admin. Software Version: Installation Guide

HPE IDOL Site Admin. Software Version: Installation Guide HPE IDOL Site Admin Software Version: 11.3.0 Installation Guide Document Release Date: February 2017 Software Release Date: February 2017 Legal Notices Warranty The only warranties for Hewlett Packard

More information

External Devices. User Guide

External Devices. User Guide External Devices User Guide Copyright 2007 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services

More information

HP D6000 Disk Enclosure Direct Connect Cabling Guide

HP D6000 Disk Enclosure Direct Connect Cabling Guide HP D6000 Disk Enclosure Direct Connect Cabling Guide Abstract This document provides cabling examples for when an HP D6000 Disk Enclosure is connected directly to a server. Part Number: 682251-001 September

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

HP Enterprise Secure Key Manager Configuration Guide for HP Tape Libraries

HP Enterprise Secure Key Manager Configuration Guide for HP Tape Libraries HP Enterprise Secure Key Manager Configuration Guide for HP Tape Libraries Abstract This document provides information about configuring the HP Enterprise Secure Key Manager (ESKM) for use with HP tape

More information

HP 5130-POE-143 Release Notes

HP 5130-POE-143 Release Notes HP 5130-POE-143 Release Notes Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services

More information

HP 3PAR StoreServ Storage VMware ESX Host Persona Migration Guide

HP 3PAR StoreServ Storage VMware ESX Host Persona Migration Guide HP 3PAR StoreServ Storage VMware ESX Host Persona Migration Guide Abstract This guide is intended to assist customers in successfully migrating their VMware ESX/ESXi hosts on HP 3PAR StoreServ storage

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

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 5130 EI Switch Series

HP 5130 EI Switch Series HP 5130 EI Switch Series IRF Command Reference Part number: 5998-5478a Software version: Release 31xx Document version: 6W100-20150731 Legal and notice information Copyright 2015 Hewlett-Packard Development

More information

Quick Setup & Getting Started

Quick Setup & Getting Started Quick Setup & Getting Started HP Compaq Business PC Copyright 2007 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. Microsoft, Windows, and

More information

External Devices User Guide

External Devices User Guide External Devices User Guide Copyright 2009 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services

More information

H3C SecBlade SSL VPN Card

H3C SecBlade SSL VPN Card H3C SecBlade SSL VPN Card Super Administrator Web Configuration Guide Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Document version: 5PW105-20130801 Copyright 2003-2013, Hangzhou H3C Technologies

More information

HP Web Jetadmin Report Generation Plug-in

HP Web Jetadmin Report Generation Plug-in HP Web Jetadmin Report Generation Plug-in HP Web Jetadmin Report Generation Plug-in Reference Manual Copyright notice 2006 Copyright Hewlett-Packard Development Company, L.P. Reproduction, adaptation

More information

HP Data Protector A Support for Windows Vista and Windows Server 2008 Clients Whitepaper

HP Data Protector A Support for Windows Vista and Windows Server 2008 Clients Whitepaper HP Data Protector A.06.00 Support for Windows Vista and Windows Server 2008 Clients Whitepaper 1 Index Introduction... 3 Data Protector A.06.00 Installation on Windows Vista and Windows Server 2008 systems...

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

Modem Command Guidelines HP Notebook Series

Modem Command Guidelines HP Notebook Series HP Notebook Series Document Part Number: 316740-002 May 2003 This document provides instructions for selecting, accessing, and using the AT command set supported by the modem in your notebook. 2003 Hewlett-Packard

More information

HP Velocity User Guide for Thin Clients

HP Velocity User Guide for Thin Clients HP Velocity User Guide for Thin Clients Copyright 2012 Hewlett-Packard Development Company, L.P. Microsoft and Windows are U.S. registered trademarks of Microsoft Corporation. The information contained

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

External Devices User Guide

External Devices User Guide External Devices User Guide Copyright 2009 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 7.51 HP Operations Manager Integration Guide Document Release Date: August 2009 Software Release Date: August 2009 Legal Notices Warranty The only

More information

HP Insight Control for Microsoft System Center Installation Guide

HP Insight Control for Microsoft System Center Installation Guide HP Insight Control for Microsoft System Center Installation Guide Abstract This guide describes installing HP Insight Control for Microsoft System Center. This guide is intended for use by system integrators

More information

HP Point of Sale (POS) Peripherals Configuration Guide Barcode Scanner

HP Point of Sale (POS) Peripherals Configuration Guide Barcode Scanner HP Point of Sale (POS) Peripherals Configuration Guide Barcode Scanner Document Version 2.10 July 2009 1 Copyright 2007-2009 Hewlett-Packard Development Company, L.P. The information contained herein is

More information

Veritas NetBackup for MySQL Administrator's Guide

Veritas NetBackup for MySQL Administrator's Guide Veritas NetBackup for MySQL Administrator's Guide Windows and Linux Release 8.1.1 Documentation version: 8.1.1 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the

More information

HP 4120 IP Phone. User Guide

HP 4120 IP Phone. User Guide HP 4120 IP Phone User Guide Copyright 2011 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. All Rights Reserved. This document contains proprietary

More information

Veritas NetBackup for MySQL Administrator's Guide

Veritas NetBackup for MySQL Administrator's Guide Veritas NetBackup for MySQL Administrator's Guide Windows and Linux Release 8.1 Veritas NetBackup for MySQL Agent Administrator's Guide Documentation version: 8.1 Legal Notice Copyright 2017 Veritas Technologies

More information

HPE Knowledge Article

HPE Knowledge Article HPE Knowledge Article HPE Integrated Lights Out (ilo 5) for Gen10 Servers - What is System Recovery Set? Article Number mmr_sf-en_us000021097 Environment HPE Integrated Lights Out (ilo 5) HPE ProLiant

More information

hp StorageWorks Using the QLogic Driver for Single-path or Multi-path Failover Mode on Linux Systems

hp StorageWorks Using the QLogic Driver for Single-path or Multi-path Failover Mode on Linux Systems Application Notes hp StorageWorks Using the QLogic 7.00.03 Driver for Single-path or Multi-path Failover Mode on Linux Systems Product Version: 7.00.03 First Edition (May 2004) Part Number: AA RVGWA TE

More information

HP Storage Manager User Guide. May 2005 (First Edition) Part Number

HP Storage Manager User Guide. May 2005 (First Edition) Part Number HP Storage Manager User Guide May 2005 (First Edition) Part Number 394897-001 Copyright 2005 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

More information

HP V1905 Switch Series Release Notes

HP V1905 Switch Series Release Notes HP V1905 Switch Series 02.00.03 Release Notes Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products

More information

HPE RDX Utility Version 2.36 Release Notes

HPE RDX Utility Version 2.36 Release Notes HPE RDX Utility Version 2.36 Release Notes (RDX Tools 1.59) Abstract RDX Utility 2.36 (RDX Tools 1.59) enhances RDX Utility reporting for cartridges with a capacity greater than 2TB and implements Hewlett

More information

External Devices User Guide

External Devices User Guide External Devices User Guide Copyright 2008 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services

More information

HPE PSR300-12A & PSR300-12D1

HPE PSR300-12A & PSR300-12D1 HPE PSR300-12A & PSR300-12D1 Power Supplies User Guide 5998-1604s Part number: 5998-1604s Document version: 6PW103-20160405 Copyright 2015, 2016 Hewlett Packard Enterprise Development LP The information

More information

HP Data Protector Integration with Autonomy IDOL Server

HP Data Protector Integration with Autonomy IDOL Server Technical white paper HP Data Protector Integration with Autonomy IDOL Server Introducing e-discovery for HP Data Protector environments Table of contents Summary 2 Introduction 2 Integration concepts

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

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

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

Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007

Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007 Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007 Release 2.3 April 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

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

IDE Connector Customizer Readme

IDE Connector Customizer Readme IDE Connector Customizer Readme Software version: 1.0 Publication date: November 2010 This file provides information about IDE Connector Customizer 1.0. Prerequisites for IDE Connector Customizer The Installation

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

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

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

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

HP ProLiant Agentless Management Pack (v 3.2) for Microsoft System Center User Guide

HP ProLiant Agentless Management Pack (v 3.2) for Microsoft System Center User Guide HP ProLiant Agentless Management Pack (v 3.2) for Microsoft System Center User Guide Abstract This guide provides information on using the HP ProLiant Agentless Management Pack for System Center version

More information

Videoscape Distribution Suite Software Installation Guide

Videoscape Distribution Suite Software Installation Guide First Published: August 06, 2012 Last Modified: September 03, 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800

More information

Upgrading Software Version 3.1 to Version 4. HP ProCurve Secure Access 700wl Series.

Upgrading Software Version 3.1 to Version 4. HP ProCurve Secure Access 700wl Series. Upgrading Software Version 3.1 to Version 4 HP ProCurve Secure Access 700wl Series www.hp.com/go/hpprocurve HP PROCURVE SECURE ACCESS 700WL SERIES UPGRADING SOFTWARE VERSION 3.1 TO VERSION 4 Copyright

More information

HP StorageWorks Using the QLogic HBA driver for single-path or multipath failover mode on Linux systems application notes

HP StorageWorks Using the QLogic HBA driver for single-path or multipath failover mode on Linux systems application notes HP StorageWorks Using the QLogic HBA driver for single-path or multipath failover mode on Linux systems application notes Part number: AA-RVGWG-TE Sixth edition: July 2006 Legal and notice information

More information

HPE Knowledge Article

HPE Knowledge Article HPE Knowledge Article HPE Integrated Lights-Out 4 (ilo 4) - How to Reset ilo Management Processor and ilo Password? Article Number mmr_sf-en_us000012649 Environment HPE Integrated Lights-Out 4 Issue Reset

More information

H3C License Server. Installation Guide. Hangzhou H3C Technologies Co., Ltd. Document version: 5W

H3C License Server. Installation Guide. Hangzhou H3C Technologies Co., Ltd.   Document version: 5W H3C License Server Installation Guide Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Document version: 5W201-20151123 Copyright 2015, Hangzhou H3C Technologies Co., Ltd. and its licensors All rights

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

Dell Protected Workspace Management

Dell Protected Workspace Management Dell Protected Workspace Management Upgrade Guide Dell Protected Workspace Management v4.1 Created and Maintained by Invincea, Inc. Proprietary For Customer Use Only Dell Protected Workspace Management

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

Getting Started. HP Business PCs

Getting Started. HP Business PCs Getting Started HP Business PCs Copyright 2010 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. Microsoft, Windows, Windows Vista, and Windows

More information