> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-postgresql-tls-support.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# default_* 서버 설정

> default_*로 생성된 그룹의 ClickHouse 서버 설정입니다.

export const SettingsInfoBlock = ({type, default_value, changeable_without_restart}) => {
  return <div className="not-prose" style={{
    display: "flex",
    flexWrap: "wrap",
    alignItems: "baseline",
    columnGap: "0.5rem",
    rowGap: "0.125rem",
    margin: "0.375rem 0",
    fontSize: "0.8125rem",
    lineHeight: "1.125rem"
  }}>
      <div style={{
    fontWeight: 600,
    opacity: 0.72
  }}>유형</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{type}</div>
      <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>기본값</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{default_value}</div>
      {changeable_without_restart && <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>
          재시작 없이 변경 가능
        </div>}
      {changeable_without_restart && <div style={{
    overflowWrap: "anywhere"
  }}>
          {changeable_without_restart}
        </div>}
    </div>;
};

이 설정은 ClickHouse 서버를 구성하며 ClickHouse 소스에서 자동으로 생성됩니다.

<div id="default_database">
  ## default\_database
</div>

<SettingsInfoBlock type="String" default_value="default" changeable_without_restart="No" />기본 데이터베이스의 이름입니다.

<div id="default_password_type">
  ## default\_password\_type
</div>

`CREATE USER u IDENTIFIED BY 'p'`와 같은 쿼리에서 자동으로 설정되는 비밀번호 유형을 지정합니다.

허용되는 값은 다음과 같습니다.

* `plaintext_password`
* `sha256_password`
* `double_sha1_password`
* `bcrypt_password`

```xml theme={null}
<default_password_type>sha256_password</default_password_type>
```

<div id="default_profile">
  ## default\_profile
</div>

기본 설정 프로필입니다. 설정 프로필은 `user_config` 설정에서 지정한 파일에 있습니다.

**예시**

```xml theme={null}
<default_profile>default</default_profile>
```

<div id="default_session_timeout">
  ## default\_session\_timeout
</div>

기본 세션 타임아웃입니다. 단위는 초입니다.

```xml theme={null}
<default_session_timeout>60</default_session_timeout>
```
