Skip to content

Help needed to deploy on Windows Server #392

Closed Answered by burningalchemist
Shivam327 asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @Shivam327, we use dburl dependency which requires a valid URL, the format MySQL driver is using by default is non-standard. Instead you need to put the DSN as follows:

mysql://user:password@localhost:3308/database

So we omit the protocol and parentheses. In case you want to explicitly specify transport, you can set it like below:

mysql+tcp://user:password@localhost:3308/database

For more details, please check dburl repository: https://github.com/xo/dburl?tab=readme-ov-file#example-urls

As for monitoring MySQL and MSSQL from a single instance, you might want to use jobs as in here:
https://github.com/burningalchemist/sql_exporter?tab=readme-ov-file#multiple-database-connections

You'd…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by burningalchemist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants