Hi below is the configuration and output of elasticsearch
In Elasticsearch we are getting " http client did not trust this server's certificate, closing connection" error but still I'm able to access ES in URL and also able to access Kibana.
configuration
# ======================== Elasticsearch Configuration =========================
#
# NOTE: Elasticsearch comes with reasonable defaults for most settings.
# Before you set out to tweak and tune the configuration, make sure you
# understand what are you trying to accomplish and the consequences.
#
# The primary way of configuring a node is via this file. This template lists
# the most important settings you may want to configure for a production cluster.
#
# Please consult the documentation for further information on configuration options:
# https://www.elastic.co/guide/en/elasticsearch/reference/index.html
#
# ---------------------------------- Cluster -----------------------------------
#
# Use a descriptive name for your cluster:
#
#cluster.name: my-application
#
# ------------------------------------ Node ------------------------------------
#
# Use a descriptive name for the node:
#
#node.name: node-1
#
# Add custom attributes to the node:
#
#node.attr.rack: r1
#
# ----------------------------------- Paths ------------------------------------
#
# Path to directory where to store the data (separate multiple locations by comma):
#
#path.data: /path/to/data
#
# Path to log files:
#
#path.logs: /path/to/logs
#
# ----------------------------------- Memory -----------------------------------
#
# Lock the memory on startup:
#
#bootstrap.memory_lock: true
#
# Make sure that the heap size is set to about half the memory available
# on the system and that the owner of the process is allowed to use this
# limit.
#
# Elasticsearch performs poorly when the system is swapping the memory.
#
# ---------------------------------- Network -----------------------------------
#
# By default Elasticsearch is only accessible on localhost. Set a different
# address here to expose this node on the network:
#
#network.host: 192.168.0.1
#
# By default Elasticsearch listens for HTTP traffic on the first free port it
# finds starting at 9200. Set a specific HTTP port here:
#
#http.port: 9200
#
# For more information, consult the network module documentation.
#
# --------------------------------- Discovery ----------------------------------
#
# Pass an initial list of hosts to perform discovery when this node is started:
# The default list of hosts is ["127.0.0.1", "[::1]"]
#
#discovery.seed_hosts: ["host1", "host2"]
#
# Bootstrap the cluster using an initial set of master-eligible nodes:
#
#cluster.initial_master_nodes: ["node-1", "node-2"]
#
# For more information, consult the discovery and cluster formation module documentation.
#
# ---------------------------------- Various -----------------------------------
#
# Allow wildcard deletion of indices:
#
#action.destructive_requires_name: false
#----------------------- BEGIN SECURITY AUTO CONFIGURATION -----------------------
#
# The following settings, TLS certificates, and keys have been automatically
# generated to configure Elasticsearch security features on 08-11-2022 05:30:33
#
# --------------------------------------------------------------------------------
# Enable security features
xpack.security.enabled: true
xpack.security.enrollment.enabled: true
# Enable encryption for HTTP API client connections, such as Kibana, Logstash, and Agents
xpack.security.http.ssl:
enabled: true
keystore.path: certs/http.p12
# Enable encryption and mutual authentication between cluster nodes
xpack.security.transport.ssl:
enabled: true
verification_mode: certificate
keystore.path: certs/transport.p12
truststore.path: certs/transport.p12
# Create a new cluster with the current node only
# Additional nodes can still join the cluster later
cluster.initial_master_nodes: ["TV-Manasa-Windo"]
# Allow HTTP API connections from localhost and local networks
# Connections are encrypted and require user authentication
http.host: [_local_, _site_]
# Allow other nodes to join the cluster from localhost and local networks
# Connections are encrypted and mutually authenticated
#transport.host: [_local_, _site_]
elastic output
warning: ignoring JAVA_HOME=C:\Program Files\Java\jdk-17.0.5; using bundled JDK
warning: ignoring JAVA_HOME=C:\Program Files\Java\jdk-17.0.5; using ES_JAVA_HOME
[2022-11-09T04:50:56,878][INFO ][o.e.n.Node ] [TV-Manasa-Windo] version[8.0.0], pid[4860], build[default/zip/1b6a7ece17463df5ff54a3e1302d825889aa1161/2022-02-03T16:47:57.507843096Z], OS[Windows Server 2019/10.0/amd64], JVM[Eclipse Adoptium/OpenJDK 64-Bit Server VM/17.0.1/17.0.1+12]
[2022-11-09T04:50:56,878][INFO ][o.e.n.Node ] [TV-Manasa-Windo] JVM home [C:\Users\Windows\Downloads\elasticsearch-8.0.0-windows-x86_64\elasticsearch-8.0.0\jdk], using bundled JDK [true]
[2022-11-09T04:50:56,878][INFO ][o.e.n.Node ] [TV-Manasa-Windo] JVM arguments [-Des.networkaddress.cache.ttl=60, -Des.networkaddress.cache.negative.ttl=10, -Djava.security.manager=allow, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -XX:-OmitStackTraceInFastThrow, -XX:+ShowCodeDetailsInExceptionMessages, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dio.netty.allocator.numDirectArenas=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Dlog4j2.formatMsgNoLookups=true, -Djava.locale.providers=SPI,COMPAT, --add-opens=java.base/java.io=ALL-UNNAMED, -XX:+UseG1GC, -Djava.io.tmpdir=C:\Users\Windows\AppData\Local\Temp\2\elasticsearch, -XX:+HeapDumpOnOutOfMemoryError, -XX:+ExitOnOutOfMemoryError, -XX:HeapDumpPath=data, -XX:ErrorFile=logs/hs_err_pid%p.log, -Xlog:gc*,gc+age=trace,safepoint:file=logs/gc.log:utctime,pid,tags:filecount=32,filesize=64m, -Xms8191m, -Xmx8191m, -XX:MaxDirectMemorySize=4294967296, -XX:InitiatingHeapOccupancyPercent=30, -XX:G1ReservePercent=25, -Delasticsearch, -Des.path.home=C:\Users\Windows\Downloads\elasticsearch-8.0.0-windows-x86_64\elasticsearch-8.0.0, -Des.path.conf=C:\Users\Windows\Downloads\elasticsearch-8.0.0-windows-x86_64\elasticsearch-8.0.0\config, -Des.distribution.flavor=default, -Des.distribution.type=zip, -Des.bundled_jdk=true]
[2022-11-09T04:50:58,877][WARN ][stderr ] [TV-Manasa-Windo] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[2022-11-09T04:50:58,893][WARN ][stderr ] [TV-Manasa-Windo] SLF4J: Defaulting to no-operation (NOP) logger implementation
[2022-11-09T04:50:58,893][WARN ][stderr ] [TV-Manasa-Windo] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [aggs-matrix-stats]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [analysis-common]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [constant-keyword]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [frozen-indices]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [ingest-common]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [ingest-geoip]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [ingest-user-agent]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [kibana]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [lang-expression]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [lang-mustache]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [lang-painless]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [legacy-geo]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [mapper-extras]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [mapper-version]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [parent-join]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [percolator]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [rank-eval]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [reindex]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [repositories-metering-api]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [repository-azure]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [repository-encrypted]
[2022-11-09T04:51:00,330][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [repository-gcs]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [repository-s3]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [repository-url]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [runtime-fields-common]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [search-business-rules]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [searchable-snapshots]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [snapshot-based-recoveries]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [snapshot-repo-test-kit]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [spatial]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [transform]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [transport-netty4]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [unsigned-long]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [vector-tile]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [vectors]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [wildcard]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-aggregate-metric]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-analytics]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-async]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-async-search]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-autoscaling]
[2022-11-09T04:51:00,346][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-ccr]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-core]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-data-streams]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-deprecation]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-enrich]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-eql]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-fleet]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-graph]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-identity-provider]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-ilm]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-logstash]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-ml]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-monitoring]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-ql]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-rollup]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-security]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-shutdown]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-sql]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-stack]
[2022-11-09T04:51:00,362][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-text-structure]
[2022-11-09T04:51:00,377][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-voting-only-node]
[2022-11-09T04:51:00,377][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] loaded module [x-pack-watcher]
[2022-11-09T04:51:00,377][INFO ][o.e.p.PluginsService ] [TV-Manasa-Windo] no plugins loaded
[2022-11-09T04:51:00,534][INFO ][o.e.e.NodeEnvironment ] [TV-Manasa-Windo] using [1] data paths, mounts [[Windows (C:)]], net usable_space [96.7gb], net total_space [126.4gb], types [NTFS]
[2022-11-09T04:51:00,534][INFO ][o.e.e.NodeEnvironment ] [TV-Manasa-Windo] heap size [8gb], compressed ordinary object pointers [true]
[2022-11-09T04:51:00,643][INFO ][o.e.n.Node ] [TV-Manasa-Windo] node name [TV-Manasa-Windo], node ID [-3E45raZR6mKzyMbMA2uzg], cluster name [elasticsearch], roles [master, data_warm, data_content, transform, data_hot, ml, data_frozen, ingest, data_cold, data, remote_cluster_client]
[2022-11-09T04:51:05,189][INFO ][o.e.x.m.p.l.CppLogMessageHandler] [TV-Manasa-Windo] [controller/8096] [Main.cc@123] controller (64 bit): Version 8.0.0 (Build 5e85495ea85316) Copyright (c) 2022 Elasticsearch BV
[2022-11-09T04:51:05,970][INFO ][o.e.x.s.Security ] [TV-Manasa-Windo] Security is enabled
[2022-11-09T04:51:06,408][INFO ][o.e.x.s.a.Realms ] [TV-Manasa-Windo] license mode is [trial], currently licensed security realms are [reserved/reserved,file/default_file,native/default_native]
[2022-11-09T04:51:06,408][INFO ][o.e.x.s.a.s.FileRolesStore] [TV-Manasa-Windo] parsed [0] roles from file [C:\Users\Windows\Downloads\elasticsearch-8.0.0-windows-x86_64\elasticsearch-8.0.0\config\roles.yml]
[2022-11-09T04:51:09,199][INFO ][o.e.t.n.NettyAllocator ] [TV-Manasa-Windo] creating NettyAllocator with the following configs: [name=elasticsearch_configured, chunk_size=1mb, suggested_max_allocation_size=1mb, factors={es.unsafe.use_netty_default_chunk_and_page_size=false, g1gc_enabled=true, g1gc_region_size=4mb}]
[2022-11-09T04:51:09,308][INFO ][o.e.d.DiscoveryModule ] [TV-Manasa-Windo] using discovery type [zen] and seed hosts providers [settings]
[2022-11-09T04:51:10,704][INFO ][o.e.n.Node ] [TV-Manasa-Windo] initialized
[2022-11-09T04:51:10,704][INFO ][o.e.n.Node ] [TV-Manasa-Windo] starting ...
[2022-11-09T04:51:10,767][INFO ][o.e.x.s.c.f.PersistentCache] [TV-Manasa-Windo] persistent cache index loaded
[2022-11-09T04:51:10,767][INFO ][o.e.x.d.l.DeprecationIndexingComponent] [TV-Manasa-Windo] deprecation component started
[2022-11-09T04:51:11,007][INFO ][o.e.t.TransportService ] [TV-Manasa-Windo] publish_address {127.0.0.1:9300}, bound_addresses {127.0.0.1:9300}, {[::1]:9300}
[2022-11-09T04:51:11,775][INFO ][o.e.c.c.Coordinator ] [TV-Manasa-Windo] cluster UUID [NHCZiLskSbq5vXMo8DLTvA]
[2022-11-09T04:51:12,062][INFO ][o.e.c.s.MasterService ] [TV-Manasa-Windo] elected-as-master ([1] nodes joined)[{TV-Manasa-Windo}{-3E45raZR6mKzyMbMA2uzg}{44Bd8mPfTKKN8rIMq0XoQA}{127.0.0.1}{127.0.0.1:9300}{cdfhilmrstw} elect leader, _BECOME_MASTER_TASK_, _FINISH_ELECTION_], term: 2, version: 259, delta: master node changed {previous [], current [{TV-Manasa-Windo}{-3E45raZR6mKzyMbMA2uzg}{44Bd8mPfTKKN8rIMq0XoQA}{127.0.0.1}{127.0.0.1:9300}{cdfhilmrstw}]}
[2022-11-09T04:51:12,249][INFO ][o.e.c.s.ClusterApplierService] [TV-Manasa-Windo] master node changed {previous [], current [{TV-Manasa-Windo}{-3E45raZR6mKzyMbMA2uzg}{44Bd8mPfTKKN8rIMq0XoQA}{127.0.0.1}{127.0.0.1:9300}{cdfhilmrstw}]}, term: 2, version: 259, reason: Publication{term=2, version=259}
[2022-11-09T04:51:12,586][INFO ][o.e.h.AbstractHttpServerTransport] [TV-Manasa-Windo] publish_address {172.16.0.56:9200}, bound_addresses {127.0.0.1:9200}, {[::1]:9200}, {172.16.0.56:9200}
[2022-11-09T04:51:12,601][INFO ][o.e.n.Node ] [TV-Manasa-Windo] started
[2022-11-09T04:51:13,251][WARN ][o.e.i.c.GrokProcessor ] [TV-Manasa-Windo] regular expression has redundant nested repeat operator * /^(?<TIMESTAMP:system.auth.timestamp>(?:(?:(?:(?>\d\d){1,2})-(?:(?:0?[1-9]|1[0-2]))-(?:(?:(?:0[1-9])|(?:[12][0-9])|(?:3[01])|[1-9]))[T ](?:(?:2[0123]|[01][0-9])):?(?:(?:[0-5][0-9]))(?::?(?:(?:(?:[0-5]?[0-9]|60)(?:[:.,][0-9]+)?)))?(?:(?:Z|[+-](?:(?:2[0123]|[01]?[0-9]))(?::?(?:(?:[0-5][0-9])))))?)|(?:(?:\b(?:[Jj]an(?:uary|uar)?|[Ff]eb(?:ruary|ruar)?|[Mm](?:a|ä)?r(?:ch|z)?|[Aa]pr(?:il)?|[Mm]a(?:y|i)?|[Jj]un(?:e|i)?|[Jj]ul(?:y|i)?|[Aa]ug(?:ust)?|[Ss]ep(?:tember)?|[Oo](?:c|k)?t(?:ober)?|[Nn]ov(?:ember)?|[Dd]e(?:c|z)(?:ember)?)\b) +(?:(?:(?:0[1-9])|(?:[12][0-9])|(?:3[01])|[1-9])) (?:(?!<[0-9])(?:(?:2[0123]|[01]?[0-9])):(?:(?:[0-5][0-9]))(?::(?:(?:(?:[0-5]?[0-9]|60)(?:[:.,][0-9]+)?)))(?![0-9]))))) (?<SYSLOGHOST:host.hostname>(?:(?:(?:(?:(?:((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(%.+)?)|(?:(?<![0-9])(?:(?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5])[.](?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5])[.](?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5])[.](?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5]))(?![0-9]))))|(?:\b(?:[0-9A-Za-z][0-9A-Za-z-]{0,62})(?:\.(?:[0-9A-Za-z][0-9A-Za-z-]{0,62}))*(\.?|\b)))))? (?<DATA:process.name>.*?)(?:\[(?<POSINT:process.pid:long>\b(?:[1-9][0-9]*)\b)\])?:(?:\s*)+(?<GREEDYMULTILINE:_temp.message>(.|\n)*)$/
[2022-11-09T04:51:13,413][INFO ][o.e.l.LicenseService ] [TV-Manasa-Windo] license [28853171-e0e3-44b5-adf3-02a590c6e53f] mode [basic] - valid
[2022-11-09T04:51:13,413][INFO ][o.e.x.s.a.Realms ] [TV-Manasa-Windo] license mode is [basic], currently licensed security realms are [reserved/reserved,file/default_file,native/default_native]
[2022-11-09T04:51:13,413][INFO ][o.e.g.GatewayService ] [TV-Manasa-Windo] recovered [12] indices into cluster_state
[2022-11-09T04:51:17,940][INFO ][o.e.i.g.DatabaseNodeService] [TV-Manasa-Windo] successfully loaded geoip database file [GeoLite2-Country.mmdb]
[2022-11-09T04:51:18,129][WARN ][o.e.i.c.GrokProcessor ] [TV-Manasa-Windo] regular expression has redundant nested repeat operator * /^(?<TIMESTAMP:system.auth.timestamp>(?:(?:(?:(?>\d\d){1,2})-(?:(?:0?[1-9]|1[0-2]))-(?:(?:(?:0[1-9])|(?:[12][0-9])|(?:3[01])|[1-9]))[T ](?:(?:2[0123]|[01][0-9])):?(?:(?:[0-5][0-9]))(?::?(?:(?:(?:[0-5]?[0-9]|60)(?:[:.,][0-9]+)?)))?(?:(?:Z|[+-](?:(?:2[0123]|[01]?[0-9]))(?::?(?:(?:[0-5][0-9])))))?)|(?:(?:\b(?:[Jj]an(?:uary|uar)?|[Ff]eb(?:ruary|ruar)?|[Mm](?:a|ä)?r(?:ch|z)?|[Aa]pr(?:il)?|[Mm]a(?:y|i)?|[Jj]un(?:e|i)?|[Jj]ul(?:y|i)?|[Aa]ug(?:ust)?|[Ss]ep(?:tember)?|[Oo](?:c|k)?t(?:ober)?|[Nn]ov(?:ember)?|[Dd]e(?:c|z)(?:ember)?)\b) +(?:(?:(?:0[1-9])|(?:[12][0-9])|(?:3[01])|[1-9])) (?:(?!<[0-9])(?:(?:2[0123]|[01]?[0-9])):(?:(?:[0-5][0-9]))(?::(?:(?:(?:[0-5]?[0-9]|60)(?:[:.,][0-9]+)?)))(?![0-9]))))) (?<SYSLOGHOST:host.hostname>(?:(?:(?:(?:(?:((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(%.+)?)|(?:(?<![0-9])(?:(?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5])[.](?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5])[.](?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5])[.](?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5]))(?![0-9]))))|(?:\b(?:[0-9A-Za-z][0-9A-Za-z-]{0,62})(?:\.(?:[0-9A-Za-z][0-9A-Za-z-]{0,62}))*(\.?|\b)))))? (?<DATA:process.name>.*?)(?:\[(?<POSINT:process.pid:long>\b(?:[1-9][0-9]*)\b)\])?:(?:\s*)+(?<GREEDYMULTILINE:_temp.message>(.|\n)*)$/
[2022-11-09T04:51:18,205][INFO ][o.e.i.g.DatabaseNodeService] [TV-Manasa-Windo] successfully loaded geoip database file [GeoLite2-ASN.mmdb]
[2022-11-09T04:51:19,156][INFO ][o.e.c.r.a.AllocationService] [TV-Manasa-Windo] current.health="GREEN" message="Cluster health status changed from [RED] to [GREEN] (reason: [shards started [[.ds-ilm-history-5-2022.11.08-000001][0], [.kibana-event-log-8.0.0-000001][0]]])." previous.health="RED" reason="shards started [[.ds-ilm-history-5-2022.11.08-000001][0], [.kibana-event-log-8.0.0-000001][0]]"
[2022-11-09T04:51:19,871][INFO ][o.e.i.g.GeoIpDownloader ] [TV-Manasa-Windo] successfully downloaded geoip database [GeoLite2-ASN.mmdb]
[2022-11-09T04:51:19,949][WARN ][o.e.i.c.GrokProcessor ] [TV-Manasa-Windo] regular expression has redundant nested repeat operator * /^(?<TIMESTAMP:system.auth.timestamp>(?:(?:(?:(?>\d\d){1,2})-(?:(?:0?[1-9]|1[0-2]))-(?:(?:(?:0[1-9])|(?:[12][0-9])|(?:3[01])|[1-9]))[T ](?:(?:2[0123]|[01][0-9])):?(?:(?:[0-5][0-9]))(?::?(?:(?:(?:[0-5]?[0-9]|60)(?:[:.,][0-9]+)?)))?(?:(?:Z|[+-](?:(?:2[0123]|[01]?[0-9]))(?::?(?:(?:[0-5][0-9])))))?)|(?:(?:\b(?:[Jj]an(?:uary|uar)?|[Ff]eb(?:ruary|ruar)?|[Mm](?:a|ä)?r(?:ch|z)?|[Aa]pr(?:il)?|[Mm]a(?:y|i)?|[Jj]un(?:e|i)?|[Jj]ul(?:y|i)?|[Aa]ug(?:ust)?|[Ss]ep(?:tember)?|[Oo](?:c|k)?t(?:ober)?|[Nn]ov(?:ember)?|[Dd]e(?:c|z)(?:ember)?)\b) +(?:(?:(?:0[1-9])|(?:[12][0-9])|(?:3[01])|[1-9])) (?:(?!<[0-9])(?:(?:2[0123]|[01]?[0-9])):(?:(?:[0-5][0-9]))(?::(?:(?:(?:[0-5]?[0-9]|60)(?:[:.,][0-9]+)?)))(?![0-9]))))) (?<SYSLOGHOST:host.hostname>(?:(?:(?:(?:(?:((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(%.+)?)|(?:(?<![0-9])(?:(?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5])[.](?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5])[.](?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5])[.](?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5]))(?![0-9]))))|(?:\b(?:[0-9A-Za-z][0-9A-Za-z-]{0,62})(?:\.(?:[0-9A-Za-z][0-9A-Za-z-]{0,62}))*(\.?|\b)))))? (?<DATA:process.name>.*?)(?:\[(?<POSINT:process.pid:long>\b(?:[1-9][0-9]*)\b)\])?:(?:\s*)+(?<GREEDYMULTILINE:_temp.message>(.|\n)*)$/
[2022-11-09T04:51:20,027][INFO ][o.e.i.g.DatabaseNodeService] [TV-Manasa-Windo] successfully loaded geoip database file [GeoLite2-City.mmdb]
[2022-11-09T04:51:20,105][INFO ][o.e.i.g.DatabaseReaderLazyLoader] [TV-Manasa-Windo] evicted [0] entries from cache after reloading database [C:\Users\Windows\AppData\Local\Temp\2\elasticsearch\geoip-databases\-3E45raZR6mKzyMbMA2uzg\GeoLite2-ASN.mmdb]
[2022-11-09T04:51:20,105][INFO ][o.e.i.g.DatabaseNodeService] [TV-Manasa-Windo] successfully loaded geoip database file [GeoLite2-ASN.mmdb]
[2022-11-09T04:51:22,409][INFO ][o.e.t.LoggingTaskListener] [TV-Manasa-Windo] 337 finished with response BulkByScrollResponse[took=789.7ms,timed_out=false,sliceId=null,updated=18,created=0,deleted=0,batches=1,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[2022-11-09T04:51:22,791][INFO ][o.e.t.LoggingTaskListener] [TV-Manasa-Windo] 336 finished with response BulkByScrollResponse[took=904.4ms,timed_out=false,sliceId=null,updated=616,created=0,deleted=0,batches=1,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[2022-11-09T04:51:24,426][INFO ][o.e.i.g.GeoIpDownloader ] [TV-Manasa-Windo] successfully downloaded geoip database [GeoLite2-City.mmdb]
[2022-11-09T04:51:25,359][INFO ][o.e.i.g.DatabaseReaderLazyLoader] [TV-Manasa-Windo] evicted [0] entries from cache after reloading database [C:\Users\Windows\AppData\Local\Temp\2\elasticsearch\geoip-databases\-3E45raZR6mKzyMbMA2uzg\GeoLite2-City.mmdb]
[2022-11-09T04:51:25,359][INFO ][o.e.i.g.DatabaseNodeService] [TV-Manasa-Windo] successfully loaded geoip database file [GeoLite2-City.mmdb]
[2022-11-09T04:51:25,657][INFO ][o.e.i.g.GeoIpDownloader ] [TV-Manasa-Windo] successfully downloaded geoip database [GeoLite2-Country.mmdb]
[2022-11-09T04:51:25,766][INFO ][o.e.i.g.DatabaseReaderLazyLoader] [TV-Manasa-Windo] evicted [0] entries from cache after reloading database [C:\Users\Windows\AppData\Local\Temp\2\elasticsearch\geoip-databases\-3E45raZR6mKzyMbMA2uzg\GeoLite2-Country.mmdb]
[2022-11-09T04:51:25,766][INFO ][o.e.i.g.DatabaseNodeService] [TV-Manasa-Windo] successfully loaded geoip database file [GeoLite2-Country.mmdb]
[2022-11-09T04:53:27,309][WARN ][o.e.x.s.t.n.SecurityNetty4HttpServerTransport] [TV-Manasa-Windo] http client did not trust this server's certificate, closing connection Netty4HttpChannel{localAddress=/[0:0:0:0:0:0:0:1]:9200, remoteAddress=/[0:0:0:0:0:0:0:1]:50414}
[2022-11-09T04:53:27,308][WARN ][o.e.x.s.t.n.SecurityNetty4HttpServerTransport] [TV-Manasa-Windo] http client did not trust this server's certificate, closing connection Netty4HttpChannel{localAddress=/[0:0:0:0:0:0:0:1]:9200, remoteAddress=/[0:0:0:0:0:0:0:1]:50415}