当前位置: 首页 > news >正文

怎么样做销往非洲太阳能板的网站金山软件有哪些产品

怎么样做销往非洲太阳能板的网站,金山软件有哪些产品,不用网站做cpa,东莞工商注册网站前言#xff1a; kibana是比较好安装的#xff0c;但https密码就比较麻烦一些了#xff0c;下面将就如何安装一个可在生产使用的kibana做一个简单的讲述 一#xff0c; kibana版本和下载地址 这里我想还是强调一下#xff0c;kibana的版本需要和elasticsearch的版本一…前言 kibana是比较好安装的但https密码就比较麻烦一些了下面将就如何安装一个可在生产使用的kibana做一个简单的讲述 一 kibana版本和下载地址 这里我想还是强调一下kibana的版本需要和elasticsearch的版本一致小版本都不能差否则kibana将不能正确连接到elasticsearch 本例我使用的是elasticsearch-6.3.2版本因此下载的kibana版本也是6.3.2 官方下载地址 Kibana 6.3.2 | Elastic 两个版本二进制和rpm基本没有什么区别想折腾点就二进制了不想太麻烦rpm即可看自己的需求啦。 不过要吐槽一下官网下载比较慢即使科学上网仍然很慢因此是需要一点耐心了 下载完毕后没什么好说的扔到服务器上就可以了 二 elasticsearch的证书 kibana是安装在192.168.123.15上面的 [rootnode4 ~]# cat instances.yml instances:- name: node-1dns: [192.168.123.11]- name: node-2dns: [192.168.123.12]- name: node-3dns: [192.168.123.13] - name: node-4dns: [192.168.123.14]- name: node-5dns: [192.168.123.15]执行以下命令生成证书包 ###注生成的证书格式是pem的可以直接使用无需任何转换哪个服务器都可以随便找个服务器就可以了 /data/es/bin/x-pack/certutil cert ca --pem --in instances.yml --out /root/certs.zip 解压上面在root根目录下生成的证书包 在15服务器上证书放置在此目录下 [rootcentos5 kibana]# ls -al ca.crt node-5.crt node-5.key -rw-r--r-- 1 root root 1200 Dec 15 23:07 ca.crt -rw-r--r-- 1 root root 1180 Dec 15 23:07 node-5.crt -rw-r--r-- 1 root root 1679 Dec 15 23:07 node-5.keykibana的配置文件 [rootcentos5 kibana]# cat config/kibana.yml # Kibana is served by a back end server. This setting specifies the port to use. server.port: 15666# 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: 192.168.123.15# Enables you to specify a path to mount Kibana at if you are running behind a proxy. # Use the server.rewriteBasePath setting to tell Kibana if it should remove the basePath # from requests it receives, and to prevent a deprecation warning at startup. # This setting cannot end in a slash. #server.basePath: # Specifies whether Kibana should rewrite requests that are prefixed with # server.basePath or require that they are rewritten by your reverse proxy. # This setting was effectively always false before Kibana 6.3 and will # default to true starting in Kibana 7.0. #server.rewriteBasePath: false# The maximum payload size in bytes for incoming server requests. #server.maxPayloadBytes: 1048576# The Kibana servers name. This is used for display purposes. server.name: mykibana# The URL of the Elasticsearch instance to use for all your queries. elasticsearch.url: https://192.168.123.11:19200# When this settings value is true Kibana uses the hostname specified in the server.host # setting. When the value of this setting is false, Kibana uses the hostname of the host # that connects to this Kibana instance. #elasticsearch.preserveHost: true# Kibana uses an index in Elasticsearch to store saved searches, visualizations and # dashboards. Kibana creates a new index if the index doesnt already exist. #kibana.index: .kibana# The default application to load. #kibana.defaultAppId: home# If your Elasticsearch is protected with basic authentication, these settings provide # the username and password that the Kibana server uses to perform maintenance on the Kibana # index at startup. Your Kibana users still need to authenticate with Elasticsearch, which # is proxied through the Kibana server. elasticsearch.username: elastic elasticsearch.password: 123456# Enables SSL and paths to the PEM-format SSL certificate and SSL key files, respectively. # These settings enable SSL for outgoing requests from the Kibana server to the browser. server.ssl.enabled: true server.ssl.certificate: /opt/kibana/node-5.crt server.ssl.key: /opt/kibana/node-5.key# Optional settings that provide the paths to the PEM-format SSL certificate and key files. # These files validate that your Elasticsearch backend uses the same key files. #elasticsearch.ssl.certificate: /path/to/your/client.crt #elasticsearch.ssl.key: /path/to/your/client.key# Optional setting that enables you to specify a path to the PEM file for the certificate # authority for your Elasticsearch instance. elasticsearch.ssl.certificateAuthorities: [ /opt/kibana/ca.crt ]# To disregard the validity of SSL certificates, change this settings value to none. elasticsearch.ssl.verificationMode: certificate# Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of # the elasticsearch.requestTimeout setting. #elasticsearch.pingTimeout: 1500# Time in milliseconds to wait for responses from the back end or Elasticsearch. This value # must be a positive integer. #elasticsearch.requestTimeout: 30000# List of Kibana client-side headers to send to Elasticsearch. To send *no* client-side # headers, set this value to [] (an empty list). #elasticsearch.requestHeadersWhitelist: [ authorization ]# Header names and values that are sent to Elasticsearch. Any custom headers cannot be overwritten # by client-side headers, regardless of the elasticsearch.requestHeadersWhitelist configuration. #elasticsearch.customHeaders: {}# Time in milliseconds for Elasticsearch to wait for responses from shards. Set to 0 to disable. #elasticsearch.shardTimeout: 30000# Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying. #elasticsearch.startupTimeout: 5000# Logs queries sent to Elasticsearch. Requires logging.verbose set to true. #elasticsearch.logQueries: false# Specifies the path where Kibana creates the process ID file. #pid.file: /var/run/kibana.pid# Enables you specify a file where Kibana stores log output. logging.dest: /var/log/kibana/kibana.log# Set the value of this setting to true to suppress all logging output. #logging.silent: false# Set the value of this setting to true to suppress all logging output other than error messages. #logging.quiet: false# Set the value of this setting to true to log all events, including system usage information # and all requests. #logging.verbose: false# Set the interval in milliseconds to sample system and process performance # metrics. Minimum is 100ms. Defaults to 5000. #ops.interval: 5000# The default locale. This locale can be used in certain circumstances to substitute any missing # translations. i18n.defaultLocale: zh-CN根据配置文件创建目录 mkdir /var/log/kibana 三 启动kibana /opt/kibana/bin/kibana 此时是前台启动直接看日志 [rootcentos5 kibana]# tail -n 10 /var/log/kibana/kibana.log {type:log,timestamp:2023-12-15T23:48:48Z,tags:[status,plugin:searchprofiler6.3.2,info],pid:1572,state:green,message:Status changed from red to green - Ready,prevState:red,prevMsg:This version of Kibana requires Elasticsearch v6.3.2 on all nodes. I found the following incompatible nodes in your cluster: v6.2.4 192.168.123.14:19200 (192.168.123.14), v6.2.4 192.168.123.13:19200 (192.168.123.13), v6.2.4 192.168.123.12:19200 (192.168.123.12), v6.2.4 192.168.123.11:19200 (192.168.123.11)} {type:log,timestamp:2023-12-15T23:48:48Z,tags:[status,plugin:ml6.3.2,info],pid:1572,state:green,message:Status changed from red to green - Ready,prevState:red,prevMsg:This version of Kibana requires Elasticsearch v6.3.2 on all nodes. I found the following incompatible nodes in your cluster: v6.2.4 192.168.123.14:19200 (192.168.123.14), v6.2.4 192.168.123.13:19200 (192.168.123.13), v6.2.4 192.168.123.12:19200 (192.168.123.12), v6.2.4 192.168.123.11:19200 (192.168.123.11)} {type:log,timestamp:2023-12-15T23:48:48Z,tags:[status,plugin:tilemap6.3.2,info],pid:1572,state:green,message:Status changed from red to green - Ready,prevState:red,prevMsg:This version of Kibana requires Elasticsearch v6.3.2 on all nodes. I found the following incompatible nodes in your cluster: v6.2.4 192.168.123.14:19200 (192.168.123.14), v6.2.4 192.168.123.13:19200 (192.168.123.13), v6.2.4 192.168.123.12:19200 (192.168.123.12), v6.2.4 192.168.123.11:19200 (192.168.123.11)} {type:log,timestamp:2023-12-15T23:48:48Z,tags:[status,plugin:watcher6.3.2,info],pid:1572,state:green,message:Status changed from red to green - Ready,prevState:red,prevMsg:This version of Kibana requires Elasticsearch v6.3.2 on all nodes. I found the following incompatible nodes in your cluster: v6.2.4 192.168.123.14:19200 (192.168.123.14), v6.2.4 192.168.123.13:19200 (192.168.123.13), v6.2.4 192.168.123.12:19200 (192.168.123.12), v6.2.4 192.168.123.11:19200 (192.168.123.11)} {type:log,timestamp:2023-12-15T23:48:48Z,tags:[status,plugin:index_management6.3.2,info],pid:1572,state:green,message:Status changed from red to green - Ready,prevState:red,prevMsg:This version of Kibana requires Elasticsearch v6.3.2 on all nodes. I found the following incompatible nodes in your cluster: v6.2.4 192.168.123.14:19200 (192.168.123.14), v6.2.4 192.168.123.13:19200 (192.168.123.13), v6.2.4 192.168.123.12:19200 (192.168.123.12), v6.2.4 192.168.123.11:19200 (192.168.123.11)} {type:log,timestamp:2023-12-15T23:48:48Z,tags:[status,plugin:graph6.3.2,info],pid:1572,state:green,message:Status changed from red to green - Ready,prevState:red,prevMsg:This version of Kibana requires Elasticsearch v6.3.2 on all nodes. I found the following incompatible nodes in your cluster: v6.2.4 192.168.123.14:19200 (192.168.123.14), v6.2.4 192.168.123.13:19200 (192.168.123.13), v6.2.4 192.168.123.12:19200 (192.168.123.12), v6.2.4 192.168.123.11:19200 (192.168.123.11)} {type:log,timestamp:2023-12-15T23:48:48Z,tags:[status,plugin:security6.3.2,info],pid:1572,state:green,message:Status changed from red to green - Ready,prevState:red,prevMsg:This version of Kibana requires Elasticsearch v6.3.2 on all nodes. I found the following incompatible nodes in your cluster: v6.2.4 192.168.123.14:19200 (192.168.123.14), v6.2.4 192.168.123.13:19200 (192.168.123.13), v6.2.4 192.168.123.12:19200 (192.168.123.12), v6.2.4 192.168.123.11:19200 (192.168.123.11)} {type:log,timestamp:2023-12-15T23:48:48Z,tags:[status,plugin:grokdebugger6.3.2,info],pid:1572,state:green,message:Status changed from red to green - Ready,prevState:red,prevMsg:This version of Kibana requires Elasticsearch v6.3.2 on all nodes. I found the following incompatible nodes in your cluster: v6.2.4 192.168.123.14:19200 (192.168.123.14), v6.2.4 192.168.123.13:19200 (192.168.123.13), v6.2.4 192.168.123.12:19200 (192.168.123.12), v6.2.4 192.168.123.11:19200 (192.168.123.11)} {type:log,timestamp:2023-12-15T23:48:48Z,tags:[status,plugin:logstash6.3.2,info],pid:1572,state:green,message:Status changed from red to green - Ready,prevState:red,prevMsg:This version of Kibana requires Elasticsearch v6.3.2 on all nodes. I found the following incompatible nodes in your cluster: v6.2.4 192.168.123.14:19200 (192.168.123.14), v6.2.4 192.168.123.13:19200 (192.168.123.13), v6.2.4 192.168.123.12:19200 (192.168.123.12), v6.2.4 192.168.123.11:19200 (192.168.123.11)} {type:log,timestamp:2023-12-15T23:48:48Z,tags:[status,plugin:reporting6.3.2,info],pid:1572,state:green,message:Status changed from red to green - Ready,prevState:red,prevMsg:This version of Kibana requires Elasticsearch v6.3.2 on all nodes. I found the following incompatible nodes in your cluster: v6.2.4 192.168.123.14:19200 (192.168.123.14), v6.2.4 192.168.123.13:19200 (192.168.123.13), v6.2.4 192.168.123.12:19200 (192.168.123.12), v6.2.4 192.168.123.11:19200 (192.168.123.11)}未完待续
http://www.yutouwan.com/news/57968/

相关文章:

  • 潍坊网站建设首荐创美网络怎么做品牌推广和宣传
  • 检察院门户网站建设网页布局设计说明
  • 自贡住房和城乡建设厅网站网站怎么做切换图片
  • 什么是展示型网站建设网站如何做超级链接
  • 接做施工图的网站seo推广优化平台
  • 网站建设要求卖货到海外的免费平台
  • asp网站配置典型的网站开发人员
  • 沈阳做公司网站的公司无锡企业网站设计公司
  • 工作做ppt课件的网站2000个免费货源网站
  • 网站建设淘宝模板宁波企业seo外包
  • 怎么筛选一家做网站做的好的公司重庆网站建设优斗士
  • 响应式网站开发哪家好设计精美的中文网站
  • 无锡公司建立网站做跨境的网站有哪些
  • 网站建设能解决哪些问题大连甘井子区地图
  • 西安网站排名优化做效果图网站有哪些
  • 微网站缺点网站重定向怎么做
  • 企业网站建设需要哪些步骤科技部网站
  • 视频网站开发教程我花钱买了一个函授本科
  • app网站建设需要什么软件最有性价比的网站建设
  • 网站建设技术架构和语言网站建设过程与思路
  • 推广app网站企业网站设计报名
  • 网站开发建设与维护邯郸网站建设安联网络公司
  • 著名网站设计师c 手机版网站开发
  • 电子商务与网站建设嘉兴网站建设哪家做得好
  • 网站监控 重启企业官网如何设计
  • 网站如何做搜狗搜索引擎上海闵行邮编
  • 网站建设 中企动力wordpress 优酷去广告插件
  • 公司内部网站管理系统天天广告联盟
  • 一个网站如何做cdn加速器西安大兴医院网站建设
  • 都是做面食网站建设工程合同在性质上属于什么合同