---
machine_translated: true
machine_translated_rev: d734a8e46ddd7465886ba4133bff743c55190626
toc_priority: 57
toc_title: "\u30B5\u30FC\u30D0\u30FC\u8A2D\u5B9A"
---
# サーバー設定 {#server-settings}
## builtin\_dictionaries\_reload\_interval {#builtin-dictionaries-reload-interval}
組み込みの辞書を再ロードする前の秒単位の間隔。
クリックハウスは、内蔵の辞書ごとにx秒をリロードします。 これにより、辞書の編集が可能になります “on the fly” サーバーを再起動せずに。
デフォルト値:3600.
**例えば**
``` xml
3600
```
## 圧縮 {#server-settings-compression}
以下のためのデータ圧縮設定 [MergeTree](../../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は最初に一致した条件セットを使用します。
デー `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}
グラファイトの間引きデータの設定。
詳細については、 [グラフィットメールグツリー](../../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
0000
```
## http\_server\_default\_response {#server_configuration_parameters-http_server_default_response}
ClickHouse HTTP(s)サーバーにアクセスするときにデフォルトで表示されるページ。
デフォルト値は “Ok.” (最後にラインフィード付き)
**例えば**
開く `https://tabix.io/` アクセス時 `http://localhost: http_port`.
``` xml