InfoGrab Docs

인증 구성 설정

Mattermost System Console의 인증 관련 구성 설정을 설명합니다.

Mattermost는 최대 4가지의 동시 사용자 인증 방법을 지원합니다: OpenID 공급자 SAML 공급자 LDAP 인스턴스 (예: Active Directory, OpenLDAP) 이메일 및 비밀번호 제품 메뉴 → System Console → Authentication 에서 다음 인증 구성 옵션을 검토하고 관리하세요: 가입 이메일 비밀번호 MFA AD/LDAP SAML 2.0 OAuth 2.0 OpenID Connect 게스트 액세스 Tip 셀프 호스팅 Mattermost를 관리하는 시스템 관리자는 아래 표에 설명된 대로 config.json 파일을 편집할 수 있습니다. 각 구성 값에는 JSON 인식 도구를 사용하여 프로그래밍 방식으로 config.json 파일에서 값에 접근할 수 있는 JSON 경로가 포함됩니다. 예를 들어, EnableUserCreation 값은 TeamSettings 아래에 있습니다. jq <https://stedolan.github.io/jq/>`__ 와 같은 도구를 사용하는 경우: cat config/config.json | jq '.TeamSettings.EnableUserCreation' </li><li> config.json 파일을 수동으로 편집할 때는 TeamSettings 와 같은 객체를 찾은 뒤 그 안에서 EnableUserCreation`` 키를 찾으세요. # 가입 # System Console에서 Authentication > Signup 으로 이동하여 다음 구성 설정에 접근하세요. true : (Default) Anyone can sign up for a user account on this server without needing to be invited. Applies to email-based signups only. false : The ability to create accounts is disabled. Selecting Create Account displays an error. Applies to email, OpenID Connect, and OAuth 2.0 user account authentication. 계정 생성 활성화 # - true : (Default) Anyone can sign up for a user account on this server without needing to be invited. Applies to email-based signups only. - false : The ability to create accounts is disabled. Selecting Create Account displays an error. Applies to email, OpenID Connect, and OAuth 2.0 user account authentication. - System Config path: Authentication > Signup - config.json setting: TeamSettings > Enable