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

# How to Ignore Incorrect Settings in ClickHouse

> Learn how to use the `skip_check_for_incorrect_settings` option to allow ClickHouse to start even when user-level settings are specified incorrectly.

<h2 id="ignoring-incorrect-settings-in-clickhouse">
  Ignoring Incorrect Settings in ClickHouse
</h2>

When a user-level setting is specified in the wrong place, the server won't start and an exception message is sent to the log. However, you can tell ClickHouse to ignore the incorrect setting using the `skip_check_for_incorrect_settings` setting.

Add the following to `config.xml`:

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

<Note>
  User-level settings should be specified in `users.xml` inside a `<profile>` section for the specific user profile, (or in `<default>` for default settings.
</Note>
