Skip to content

About solusvm.conf file on Master Node

The /usr/local/solusvm/includes/solusvm.conf file contains the information regarding database connection. File contains a string divided by a : delimiter in the following format:

<DATABASE_NAME>:<USER>:<PASSWORD>:<HOST>:<ENCRYPTION_KEY>

For example:

cat /usr/local/solusvm/includes/solusvm.conf
Vmf7LEAnrb5S8x6:218H3lW42EkJZ1y:GOJebeWEl0IOaciXhnM27OryQfQikF:localhost:XFrORvKb69F1QDlmJ6hDqg374iQjL2ndgGIEtkYFTixpFIYFQ0

Here, Vmf7LEAnrb5S8x6 is the database name, 218H3lW42EkJZ1y is database user, GOJebeWEl0IOaciXhnM27OryQfQikF is database password, localhost is the host where database server is located (default value), and encryption key is `XFrORvKb69F1QDlmJ6hDqg374iQjL2ndgGIEtkYFTixpFIYFQ0.

Note: encryption key is vital in case of Master Node migration scenario, see Migrating SolusVM Master node to another server

Back to top