MySQL is typically expected to be installed on the same system where CA Executive Insight is installed. However, CA Executive Insight can connect to a remote MySQL installation. Configure the remote system before proceeding with the product installation.
Follow these steps:
On the remote system where MySQL is installed:
mysql -uroot -p
Provide the root password when prompted.
mysql> create user ‘<mysql_admin_user>’@'<ei_hostname>' identified by '< mysql_admin_password>';
Specifies the administrator user; typically ‘root’, but it can be any other named user.
Specifies the fully qualified host name or IP address of the system where the product is installed.
Specified the password for this user.
mysql> grant Grant option, Select, Insert, Update, Delete, Create, Drop, Reload, References, Index, Alter, Show Databases, Create Temporary Tables, Lock Tables, Execute, Create View, Show View, Create Routine, Alter Routine, Create User, Event, Trigger, Create Tablespace on *.* to ‘<mysql_admin_user>’@'<ei_hostname>' with grant option; mysql> flush privileges;
When installing the product, give the above user and password when prompted for the MySQL credentials.
|
Copyright © 2013 CA.
All rights reserved.
|
|