1

We have setup SymmetricDS on Windows for SQL server databases and it's working fine. But we have hard-coded the passwords in property files. My question here is, is there any way to avoid hard-coding?

sweenal
  • 67
  • 8

2 Answers2

1

You can encrypt your passwords.

https://www.symmetricds.org/doc/3.12/html/user-guide.html#_encrypted_passwords

chenson42
  • 1,108
  • 6
  • 13
0

If you set SQL-Server to use Windows authentication for the SymmetricDS user, then you can leave the db.user and db.password properties empty.

Sql Server - connect with windows authentication

Eric Long
  • 926
  • 4
  • 3
  • Thanks, Eric. Just a query...Do all users need to have windows authentication or only SymmetricDS user which currently is being used in property files? – sweenal Oct 15 '20 at 05:56
  • You probably have SQL-Server in mixed mode, so you can set each user to use either Windows authentication or SQL-Server authentication. You only need to affect the SymmetricDS user to use Windows authentication. – Eric Long Nov 11 '20 at 18:49