---
machine_translated: true
machine_translated_rev: 72537a2d527c63c07aa5d2361a8829f3895cf2bd
toc_priority: 57
toc_title: "\u30B5\u30FC\u30D0\u30FC\u8A2D\u5B9A"
---
# サーバー設定 {#server-settings}
## builtin_dictionaries_reload_interval {#builtin-dictionaries-reload-interval}
組み込み辞書を再ロードするまでの秒単位の間隔。
ClickHouseはx秒ごとに組み込みの辞書を再読み込みします。 これにより、辞書の編集が可能になります “on the fly” サーバーを再起動せずに。
デフォルト値は3600です。
**例**
``` xml
3600
```
## 圧縮 {#server-settings-compression}
データ圧縮の設定 [メルゲツリー](../../engines/table-engines/mergetree-family/mergetree.md)-エンジンテーブル。
!!! warning "警告"
ClickHouseの使用を開始したばかりの場合は、使用しないでください。
構成テンプレート:
``` xml
...
...
...
...
```
`` フィールド:
- `min_part_size` – The minimum size of a data part.
- `min_part_size_ratio` – The ratio of the data part size to the table size.
- `method` – Compression method. Acceptable values: `lz4` または `zstd`.
複数の設定が可能です `` セクション
条件を満たした場合のアクション:
- データ部分が条件セットに一致する場合、ClickHouseは指定された圧縮方法を使用します。
- データパーツが複数の条件セットに一致する場合、ClickHouseは最初に一致した条件セットを使用します。
データパーツの条件が満たされていない場合、ClickHouseは `lz4` 圧縮。
**例**
``` xml
10000000000
0.01
zstd
```
## default_database {#default-database}
既定のデータベース。
データベースのリストを取得するには、 [SHOW DATABASES](../../sql-reference/statements/show.md#show-databases) クエリ。
**例**
``` xml
default
```
## default_profile {#default-profile}
既定の設定プロファイル。
設定プロファイル内のファイルで指定されたパラメータ `user_config`.
**例**
``` xml
default
```
## dictionaries_config {#server_configuration_parameters-dictionaries_config}
外部辞書の設定ファイルへのパス。
パス:
- 絶対パスまたはサーバー設定ファイルに対する相対パスを指定します。
- のパスを含むことができワイルドカード\*や?.
も参照。 “[外部辞書](../../sql-reference/dictionaries/external-dictionaries/external-dicts.md)”.
**例**
``` xml
*_dictionary.xml
```
## dictionaries_lazy_load {#server_configuration_parameters-dictionaries_lazy_load}
辞書の遅延読み込み。
もし `true` その後、各辞書は、最初の使用時に作成されます。 辞書の作成に失敗した場合、辞書を使用していた関数は例外をスローします。
もし `false` すべての辞書は、サーバーの起動時に作成され、エラーがある場合は、サーバーがシャットダウンされます。
既定値は次のとおりです `true`.
**例**
``` xml
true
```
## format_schema_path {#server_configuration_parameters-format_schema_path}
入力データのスキーマを含むディレクトリへのパス。 [CapnProto](../../interfaces/formats.md#capnproto) 形式。
**例**
``` xml
format_schemas/
```
## 黒鉛 {#server_configuration_parameters-graphite}
データの送信先 [黒鉛](https://github.com/graphite-project).
設定:
- host – The Graphite server.
- port – The port on the Graphite server.
- interval – The interval for sending, in seconds.
- timeout – The timeout for sending data, in seconds.
- root_path – Prefix for keys.
- metrics – Sending data from the [システムメトリック](../../operations/system-tables.md#system_tables-metrics) テーブル。
- events – Sending deltas data accumulated for the time period from the [システムイベント](../../operations/system-tables.md#system_tables-events) テーブル。
- events_cumulative – Sending cumulative data from the [システムイベント](../../operations/system-tables.md#system_tables-events) テーブル。
- asynchronous_metrics – Sending data from the [システムasynchronous_metrics](../../operations/system-tables.md#system_tables-asynchronous_metrics) テーブル。
複数の設定が可能です `` 句。 たとえば、異なる間隔で異なるデータを送信するためにこれを使用できます。
**例**
``` xml
localhost
42000
0.1
60
one_min
true
true
false
true
```
## graphite_rollup {#server_configuration_parameters-graphite-rollup}
グラファイトのデータを薄くする設定。
詳細は、を参照してください [GraphiteMergeTree](../../engines/table-engines/mergetree-family/graphitemergetree.md).
**例**
``` xml
max
0
60
3600
300
86400
3600
```
## http_port/https_port {#http-porthttps-port}
HTTP経由でサーバーに接続するためのポート。
もし `https_port` 指定される, [openSSL](#server_configuration_parameters-openssl) 設定する必要があります。
もし `http_port` が指定されている場合、OpenSSL設定が設定されていても無視されます。
**例**
``` xml
9999
```
## http_server_default_response {#server_configuration_parameters-http_server_default_response}
ClickHouse HTTP(s)サーバーにアクセスするときにデフォルトで表示されるページ。
既定値は次のとおりです “Ok.” (最後に改行があります)
**例**
開く `https://tabix.io/` アクセス時 `http://localhost: http_port`.
``` xml