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

# ClickHouse で誤った設定を無視する方法

> `skip_check_for_incorrect_settings` オプションを使用して、ユーザーレベルの設定が誤って指定されていても ClickHouse を起動できるようにする方法を紹介します。

{frontMatter.description}

<div id="ignoring-incorrect-settings-in-clickhouse">
  ## ClickHouse で誤った設定を無視する
</div>

ユーザーレベルの設定が誤った場所に指定されていると、server は起動せず、例外メッセージがログに出力されます。ただし、`skip_check_for_incorrect_settings` 設定を使用すれば、ClickHouse に誤った設定を無視させることができます。

以下を `config.xml` に追加します。

```xml theme={null}
<skip_check_for_incorrect_settings>1</skip_check_for_incorrect_settings>
```

<Note>
  ユーザーレベルの設定は、特定のユーザープロファイルについては `users.xml` の `<profile>` セクション内に指定する必要があります (デフォルト設定の場合は `<default>` に指定します) 。
</Note>
