$ sudo apt-get install kibana Reading package lists... Done Building dependency tree Reading state information... Done The following NEW packages will be installed: kibana 0 upgraded, 1 newly installed, 0 to remove and 282 not upgraded. Need to get 253 MB of archives. After this operation, 700 MB of additional disk space will be used. Get:1 https://artifacts.elastic.co/packages/7.x/apt stable/main amd64 kibana amd64 7.10.2 [253 MB] Fetched 253 MB in 1min 4s (3,954 kB/s) Selecting previously unselected package kibana. (Reading database ... 84905 files and directories currently installed.) Preparing to unpack .../kibana_7.10.2_amd64.deb ... Unpacking kibana (7.10.2) ... Processing triggers for ureadahead (0.100.0-20) ... ureadahead will be reprofiled on next reboot Setting up kibana (7.10.2) ... Processing triggers for systemd (237-3ubuntu10.12) ... Processing triggers for ureadahead (0.100.0-20) ...
# Kibana is served by a back end server. This setting specifies the port to use. server.port: 5601
# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values. # The default is 'localhost', which usually means remote machines will not be able to connect. # To allow connections from remote users, set this parameter to a non-loopback address. server.host: "0.0.0.0"
设置语言为中文,这样看起来就简单多了。
1 2 3 4
# Specifies locale to be used for all localizable strings, dates and number formats. # Supported languages are the following: English - en , by default , Chinese - zh-CN . i18n.locale: "zh-CN"