Change the Controller Database Root User Password
By default, the password for the controller user of the Aurora database used in your Splunk AppDynamics deployment is controller
.
To change the Controller Database root user password:
AppDynamics On-Premises
list_alt
By default, the password for the controller user of the Aurora database used in your Splunk AppDynamics deployment is controller
.
To change the Controller Database root user password:
./mysql -u root -h <rds-aurora-endpoint> -P 3388 -p
use mysql;
FLUSH PRIVILEGES;
select version();
update mysql.user set password=password('<new-password-here>') where user like 'controller%';
update mysql.user set authentication_string=password('<new-password-here>') where user like 'controller%';
FLUSH PRIVILEGES;
quit
controller-db-password
alias with the new Controller DB password in Glassfish:cd <controller_home>/appserver/glassfish/bin
./asadmin update-password-alias controller-db-password
cd <controller_home>/bin
./controller.sh stop-appserver
./controller.sh start-appserver
cd <controller_home>/appserver/glassfish/bin
./asadmin ping-connection-pool controller_mysql_pool