【发布时间】:2015-04-13 22:55:01
【问题描述】:
查看文档后,我不知道如何为 memcache_store 服务器设置 memchached 用户名和密码。有人知道吗?
https://simplesamlphp.org/docs/stable/simplesamlphp-maintenance#section_2
【问题讨论】:
标签: simplesamlphp
查看文档后,我不知道如何为 memcache_store 服务器设置 memchached 用户名和密码。有人知道吗?
https://simplesamlphp.org/docs/stable/simplesamlphp-maintenance#section_2
【问题讨论】:
标签: simplesamlphp
如果你使用'store.type' => 'sql',那么添加:
'store.sql.dsn' => 'mysql:host=' . DB_HOST . ';dbname=' . DB_NAME,
'store.sql.username' => DB_USER,
'store.sql.password' => DB_PASSWORD,
到 /saml/config/config.php
【讨论】: