add reference to http_server_default_response in HTTP interface description

Signed-off-by: Slach <bloodjazman@gmail.com>
This commit is contained in:
Slach 2020-03-04 20:44:34 +05:00
parent 71a9430924
commit ecc65a21db
4 changed files with 8 additions and 5 deletions

View File

@ -3,8 +3,9 @@
The HTTP interface lets you use ClickHouse on any platform from any programming language. We use it for working from Java and Perl, as well as shell scripts. In other departments, the HTTP interface is used from Perl, Python, and Go. The HTTP interface is more limited than the native interface, but it has better compatibility.
By default, clickhouse-server listens for HTTP on port 8123 (this can be changed in the config).
If you make a GET / request without parameters, it returns the string "Ok." (with a line feed at the end). You can use this in health-check scripts.
If you make a GET / request without parameters, it returns 200 response code and the string "Ok." (with a line feed at the end).
[http_server_default_response](server_settings/settings.md#server_settings-http_server_default_response) settings can change default HTTP response.
Be careful when use this in health-check scripts.
```bash
$ curl 'http://localhost:8123/'
Ok.

View File

@ -215,7 +215,7 @@ If `http_port` is specified, the openSSL configuration is ignored even if it is
```
## http_server_default_response
## http_server_default_response {#server_settings-http_server_default_response}
The page that is shown by default when you access the ClickHouse HTTP(s) server.

View File

@ -3,7 +3,9 @@
HTTP интерфейс позволяет использовать ClickHouse на любой платформе, из любого языка программирования. У нас он используется для работы из Java и Perl, а также из shell-скриптов. В других отделах, HTTP интерфейс используется из Perl, Python и Go. HTTP интерфейс более ограничен по сравнению с родным интерфейсом, но является более совместимым.
По умолчанию, clickhouse-server слушает HTTP на порту 8123 (это можно изменить в конфиге).
Если запросить GET / без параметров, то вернётся строка "Ok." (с переводом строки на конце). Это может быть использовано в скриптах проверки доступности.
Если запросить GET / без параметров, то вернётся строка "Ok." (с переводом строки на конце).
Настройка [http_server_default_response](server_settings/settings.md#server_settings-http_server_default_response) может изменить тело HTTP ответа по умолчанию.
Будьте осторожны в скриптах проверки доступности.
```bash
$ curl 'http://localhost:8123/'

View File

@ -207,7 +207,7 @@ ClickHouse проверит условия `min_part_size` и `min_part_size_rat
```
## http_server_default_response
## http_server_default_response {#server_settings-http_server_default_response}
Страница, показываемая по умолчанию, при обращении к HTTP(s) серверу ClickHouse.