Validate the Installation
Follow the steps below to validate that the installation was successful.
Validate a high availability installation
Follow these instructions to validate a high availability (HA) installation:
Run the Apache Tomcat install validator utility on any UI server where
apache-tomcat
is installed and running. In a standard HA installation, apache-tomcat is running on the UI 1 and UI 2 servers.See Set Up the User Interface Role for HA for more information.
For a non-root deployment of Moogsoft Enterprise, run the database validator utility once on any server.
For an RPM deployment, run the utility on the server with the
moogsoft-db
package installed.See Set Up the Database for HA for more information.
Run the install validator utility on any server that has a running Moogsoft Enterprise component.
Run the
ha_cntl
utility on all HA servers before data is ingested into the system to make sure all expected HA components are running successfully.
Validate the database settings
When you have finished installing Moogsoft Enterprise, you should tune and validate your database settings. The appropriate settings for your database will vary depending on your system, deployment, database type and other factors. This topic provides general guidance on the following scenarios:
Scenario 1: You are setting up a production environment with a Percona XtraDB Cluster and have used the
install_percona_nodes
script to create the cluster.Scenario 2: You are setting up a production environment with a Percona XtraDB Cluster, but have not used the
install_percona_nodes
script to create the cluster.Scenario 3: You are setting up a non-production or QA environment with MySQL Community.
Scenario 1
In the install_percona_nodes
script, the Percona nodes are deployed with the following my.cnf
file:
[mysqld] # GENERAL # basedir = /usr/ user = mysql default-storage-engine = InnoDB socket = /var/run/mysqld/mysqld.sock pid-file = /var/run/mysqld/mysqld.pid port = 3306 # MyISAM # key-buffer-size = 32M myisam-recover-options = FORCE,BACKUP # SAFETY # max-allowed-packet = 128M max-connect-errors = 1000000 # DATA STORAGE # datadir = /var/lib/mysql/ # CACHES AND LIMITS # tmp-table-size = 32M max-heap-table-size = 32M query-cache-type = 0 query-cache-size = 0 max-connections = 500 thread-cache-size = 128 open-files-limit = 65535 table-definition-cache = 1024 table-open-cache = 8000 max_prepared_stmt_count = 1048576 group_concat_max_len = 1048576 # INNODB # innodb-flush-method = O_DIRECT innodb-log-files-in-group = 2 innodb-log-file-size = <VARIABLE> innodb-flush-log-at-trx-commit = 2 innodb-file-per-table = 1 innodb-buffer-pool-size = <VARIABLE> innodb_buffer_pool_instances = <VARIABLE> innodb_autoinc_lock_mode = 2 # LOGGING # log-timestamps = SYSTEM log-error = /var/log/mysql-error.log log-queries-not-using-indexes = 0 slow-query-log-file = /var/log/mysql-slow.log slow-query-log = 0 # REPLICATION # binlog_format = ROW sync_binlog = 0 # PERF # performance_schema = ON # Moogsoft MySQL 5.6 optimizations default_tmp_storage_engine = MyISAM # wsrep settings wsrep_provider = /usr/lib64/galera3/libgalera_smm.so wsrep_cluster_address = gcomm:// wsrep_log_conflicts wsrep_cluster_name = pxc-cluster wsrep_node_name = pxc-node-$(hostname) pxc_strict_mode = ENFORCING wsrep_sst_method = xtrabackup-v2 wsrep_sst_auth = "<VARIABLE>:<VARIABLE>" wsrep_slave_threads = <VARIABLE> wsrep_sync_wait = 0 wsrep_provider_options = "gcache.size=4G" wsrep_retry_autocommit = 10 [mysqldump] quick quote-names max_allowed_packet = 16M [client] default-character-set=utf8 port = 3306 socket = /var/run/mysqld/mysqld.sock [mysqld_safe] log-error=/var/log/mysqld.log pid-file=/var/run/mysqld/mysqld.pid socket = /var/run/mysqld/mysqld.sock nice = 0 [mysql] [isamchk]
If you have used the install_percona_nodes
script to create the cluster, you should not need to tune your database settings.
If you do want to tune your settings, Moogsoft recommends that you set the following variables based on system resources:
innodb-buffer-pool-size
: Set this to 80% of system RAM if you set the-d
(dedicated) flag. Otherwise, set this to 50% of system RAM.innodb_buffer_pool_instances
:If the buffer pool size is greater than 16 GB, set this to a number between "2" and "64" to divide the buffer pool size into chunks of approximately 8 GB in size.
If the buffer pool size is less than 16 GB, set this to "8".
innodb-log-file-size
: Set this to the larger of the following two values:Approximately 2% of the buffer pool size.
1 GB.
wsrep_slave_threads
= If the number of processor cores is greater than or equal to 32, set this to the number of processor cores divided by four. Otherwise, set this to "8".
Scenario 2
If you have set up a production environment with a Percona XtraDB Cluster, but have not used the install_percona_nodes
script to create the cluster, you should tune your database settings in line with Scenario 1.
Scenario 3
If you have set up a non-production or QA environment with MySQL Community, you should tune your database settings by following the guidance in the default my.cnf
.
The default moog_init_db
script does not attempt to automatically set any of these variables. You must manually set these variables post-install.
# INNODB # # Important: innodb-buffer-pool performance tuning # On servers with >= 16GB RAM that run MySQL and Moog applications, consider setting # innodb-buffer-pool-size to 50% of system RAM. # On servers where only MySQL is running, consider setting innodb-buffer-pool-size # to 80% of system RAM. innodb-buffer-pool-size = 2G # If innodb-buffer-pool-size >= 16G, then uncomment and set innodb_buffer_pool_instances # to divide buffer pool into ~8G chunks. Otherwise leave commented to use default of 8 # e.g: innodb-buffer-pool-size=32G innodb_buffer_pool_instances=4 # e.g: innodb-buffer-pool-size=80G innodb_buffer_pool_instances=10 #innodb_buffer_pool_instances = 8 # Set innodb-log-file-size to 1G or ~2% of buffer pool size, whichever is the larger # e.g: innodb-buffer-pool-size=64G innodb_log_file_size=1280M innodb-log-file-size = 1G # Set innodb-flush-log-at-trx-commit to 0 on systems where throughput is valued # over risk of data loss in the event of a mysql crash innodb-flush-log-at-trx-commit = 1