Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Database Setup

Noah Husby edited this page Jan 16, 2022 · 2 revisions

Configuring the remote database

Note: Only MongoDB supports a multi-proxy installation. Expect syncing issues / overridden data when using multiple proxies and SQL.

Database Config (sledgehammer.cfg)

##########################################################################################################
# database
#--------------------------------------------------------------------------------------------------------#
# Settings for the database
##########################################################################################################

database = {
        # Which database should be used?
        # "MONGO" for MongoDB (Required for multi-proxy installations)
        # "SQL" for SQL
        # "LOCAL" for local storage only
        type = "LOCAL"

        # The username for the database.
        user = ""

        # The password for the database.
        password = ""

        # The name of the database.
        database = ""

        # The host IP for the database.
        host = ""

        # The port for the database.
        port = 3306

}

Clone this wiki locally