2

After looking at the documentation, I can't figure out how to set the memchached username and password for a memcache_store server. Does anybody know?

https://simplesamlphp.org/docs/stable/simplesamlphp-maintenance#section_2

user2434674
  • 520
  • 1
  • 8
  • 19

1 Answers1

1

If you are using 'store.type' => 'sql', then add:

'store.sql.dsn' => 'mysql:host=' . DB_HOST . ';dbname=' . DB_NAME,
'store.sql.username' => DB_USER,
'store.sql.password' => DB_PASSWORD,

to /saml/config/config.php

deronimo
  • 121
  • 2
  • 6