vagrant ssh Last login: Sat May 18 06:08:29 2024 from 10.0.2.2 [vagrant@localhost ~]$ su root Password: [root@localhost vagrant]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up About a minute 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up About a minute 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up About a minute 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost vagrant]# sudo docker images REPOSITORY TAG IMAGE ID CREATED SIZE redis latest 7614ae9453d1 2 years ago 113MB mysql 5.7 c20987f18b13 2 years ago 448MB rabbitmq latest d445c0adc9a5 2 years ago 220MB [root@localhost vagrant]# docker pull elasticsearch Using default tag: latest latest: Pulling from library/elasticsearch 05d1a5232b46: Pull complete 5cee356eda6b: Pull complete 89d3385f0fd3: Pull complete 65dd87f6620b: Pull complete 78a183a01190: Pull complete 1a4499c85f97: Pull complete 2c9d39b4bfc1: Pull complete 1b1cec2222c9: Pull complete 59ff4ce9df68: Pull complete 1976bc3ee432: Pull complete 5af49e8af381: Pull complete 42c8b75ff7af: Pull complete 7e6902915254: Pull complete 99853874fa54: Pull complete 596fbad6fcff: Pull complete Digest: sha256:a8081d995ef3443dc6d077093172a5931e02cdb8ffddbf05c67e01d348a9770e Status: Downloaded newer image for elasticsearch:latest docker.io/library/elasticsearch:latest [root@localhost vagrant]# sudo docker images REPOSITORY TAG IMAGE ID CREATED SIZE redis latest 7614ae9453d1 2 years ago 113MB mysql 5.7 c20987f18b13 2 years ago 448MB rabbitmq latest d445c0adc9a5 2 years ago 220MB elasticsearch latest 5acf0e8da90b 5 years ago 486MB [root@localhost vagrant]# docker pull kibana Using default tag: latest latest: Pulling from library/kibana f189db1b88b3: Pull complete 8e4c00d0a2f1: Pull complete ae50ad228104: Pull complete 228a7a369ee9: Pull complete 5272eb2224c2: Pull complete b0a91590498c: Pull complete 4b8a31943945: Pull complete df84b481e461: Pull complete 0863f2e045e0: Pull complete Digest: sha256:8b3ea5e4974be2e916d5a5e7fbe2bd3a8f229c374525361372192736459083f9 Status: Downloaded newer image for kibana:latest docker.io/library/kibana:latest [root@localhost vagrant]# ls [root@localhost vagrant]# cd / [root@localhost /]# ls bin dev home lib64 mnt opt root sbin swapfile tmp var boot etc lib media mydata proc run srv sys usr [root@localhost /]# cd var [root@localhost var]# ls adm cache db empty games gopher kerberos lib local lock log mail nis opt preserve run spool tmp yp [root@localhost var]# df -h Filesystem Size Used Avail Use% Mounted on devtmpfs 489M 0 489M 0% /dev tmpfs 496M 0 496M 0% /dev/shm tmpfs 496M 6.9M 489M 2% /run tmpfs 496M 0 496M 0% /sys/fs/cgroup /dev/sda1 40G 6.3G 34G 16% / overlay 40G 6.3G 34G 16% /var/lib/docker/overlay2/cfadf556c7bd2b9aa80de6f3638cd62ee3d94b5d234b007e218c194fe6aedb7e/merged overlay 40G 6.3G 34G 16% /var/lib/docker/overlay2/968a5b7f6d3c421dd318bb3556a56e73440fefbcebdd070812d0217bfb601037/merged overlay 40G 6.3G 34G 16% /var/lib/docker/overlay2/a922b021be657dafe687cbf97c46291a20bf624467aed4fb8364b0b52512285f/merged tmpfs 100M 0 100M 0% /run/user/1000 [root@localhost var]# cd / [root@localhost /]# df -h Filesystem Size Used Avail Use% Mounted on devtmpfs 489M 0 489M 0% /dev tmpfs 496M 0 496M 0% /dev/shm tmpfs 496M 6.9M 489M 2% /run tmpfs 496M 0 496M 0% /sys/fs/cgroup /dev/sda1 40G 6.3G 34G 16% / overlay 40G 6.3G 34G 16% /var/lib/docker/overlay2/cfadf556c7bd2b9aa80de6f3638cd62ee3d94b5d234b007e218c194fe6aedb7e/merged overlay 40G 6.3G 34G 16% /var/lib/docker/overlay2/968a5b7f6d3c421dd318bb3556a56e73440fefbcebdd070812d0217bfb601037/merged overlay 40G 6.3G 34G 16% /var/lib/docker/overlay2/a922b021be657dafe687cbf97c46291a20bf624467aed4fb8364b0b52512285f/merged tmpfs 100M 0 100M 0% /run/user/1000 [root@localhost /]# mkdir -p /mydata/elasticsearch/config [root@localhost /]# mkdir -p /mydata/elasticsearch/data [root@localhost /]# cd /mydata/elasticsearch/data [root@localhost data]# cd /mydata/elasticsearch [root@localhost elasticsearch]# ls config data [root@localhost elasticsearch]# cd /mydata [root@localhost mydata]# ls elasticsearch mysql redis [root@localhost mydata]# echo "http.host:0.0.0.0" >> /mydata/elasticsearch/config/elasticsearch.yml [root@localhost mydata]# cd elasticsearch/ [root@localhost elasticsearch]# cd config/ [root@localhost config]# ls elasticsearch.yml [root@localhost config]# vi elasticsearch.yml [root@localhost config]# cat elasticsearch.yml http.host:0.0.0.0 [root@localhost config]# docker run --name elasticsearch -p 9200:9200 -p 9300:9300 \ > -e "discovery.type=single-node" \ > -e ES_JAVA_OPTS="-Xms64m -Xmx512m" \ > -v /mydata/elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml \ > -v /mydata/elasticsearch/data:/usr/share/elasticsearch/data \ > -v /mydata/elasticsearch/plugins:/usr/share/elasticsearch/plugins \ > -d elasticsearch 37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f [root@localhost config]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 23 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 23 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 23 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost config]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE redis latest 7614ae9453d1 2 years ago 113MB mysql 5.7 c20987f18b13 2 years ago 448MB rabbitmq latest d445c0adc9a5 2 years ago 220MB kibana latest a674d23325b0 5 years ago 388MB elasticsearch latest 5acf0e8da90b 5 years ago 486MB [root@localhost config]# docker run --name elasticsearch -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e ES_JAVA_OPTS="-Xms64m -Xmx512m" -v /mydata/elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml -v /mydata/elasticsearch/data:/usr/share/elasticsearch/data -v /mydata/elasticsearch/plugins:/usr/share/elasticsearch/plugins -d elasticsearch:latest docker: Error response from daemon: Conflict. The container name "/elasticsearch" is already in use by container "37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f". You have to remove (or rename) that container to be able to reuse that name. See 'docker run --help'. [root@localhost config]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 24 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 24 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 24 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost config]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 25 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 25 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 25 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost config]# docker stop 37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f 37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f [root@localhost config]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 25 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 25 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 25 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost config]# docker run --name elasticsearch -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e ES_JAVA_OPTS="-Xms64m -Xmx512m" -v /mydata/elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml -v /mydata/elasticsearch/data:/usr/share/elasticsearch/data -v /mydata/elasticsearch/plugins:/usr/share/elasticsearch/plugins -d elasticsearch:latest docker: Error response from daemon: Conflict. The container name "/elasticsearch" is already in use by container "37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f". You have to remove (or rename) that container to be able to reuse that name. See 'docker run --help'. [root@localhost config]# docker image rm 37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f Error response from daemon: No such image: sha256:37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f [root@localhost config]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE redis latest 7614ae9453d1 2 years ago 113MB mysql 5.7 c20987f18b13 2 years ago 448MB rabbitmq latest d445c0adc9a5 2 years ago 220MB kibana latest a674d23325b0 5 years ago 388MB elasticsearch latest 5acf0e8da90b 5 years ago 486MB [root@localhost config]# docker image rm 5acf0e8da90b Error response from daemon: conflict: unable to delete 5acf0e8da90b (must be forced) - image is being used by stopped container 37d38eca4a4e [root@localhost config]# docker image rm 37d38eca4a4e Error response from daemon: No such image: 37d38eca4a4e:latest [root@localhost config]# [root@localhost config]# docker run --name elasticsearch -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e ES_JAVA_OPTS="-Xms64m -Xmx512m" -v /mydata/elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml -v /mydata/elasticsearch/data:/usr/share/elasticsearch/data -v /mydata/elasticsearch/plugins:/usr/share/elasticsearch/plugins -d elasticsearch:latest bash: [root@localhost: command not found [root@localhost config]# docker: Error response from daemon: Conflict. The container name "/elasticsearch" is already in use by container "37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f". You have to remove (or rename) that container to be able to reuse that name. bash: syntax error near unexpected token `(' [root@localhost config]# See 'docker run --help'. bash: See: command not found [root@localhost config]# [root@localhost config]# docker image rm 37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f bash: [root@localhost: command not found [root@localhost config]# Error response from daemon: No such image: sha256:37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f bash: Error: command not found [root@localhost config]# [root@localhost config]# docker images bash: [root@localhost: command not found [root@localhost config]# REPOSITORY TAG IMAGE ID CREATED SIZE bash: REPOSITORY: command not found [root@localhost config]# redis latest 7614ae9453d1 2 years ago 113MB bash: redis: command not found [root@localhost config]# mysql 5.7 c20987f18b13 2 years ago 448MB bash: mysql: command not found [root@localhost config]# rabbitmq latest d445c0adc9a5 2 years ago 220MB bash: rabbitmq: command not found [root@localhost config]# kibana latest a674d23325b0 5 years ago 388MB bash: kibana: command not found [root@localhost config]# elasticsearch latest 5acf0e8da90b 5 years ago 486MB bash: elasticsearch: command not found [root@localhost config]# [root@localhost config]# docker image rm 5acf0e8da90b bash: [root@localhost: command not found [root@localhost config]# Error response from daemon: conflict: unable to delete 5acf0e8da90b (must be forced) - image is being used by stopped container 37d38eca4a4e bash: syntax error near unexpected token `(' [root@localhost config]# [root@localhost config]# docker image rm 37d38eca4a4e bash: [root@localhost: command not found [root@localhost config]# Error response from daemon: No such image: 37d38eca4a4e:latest bash: Error: command not found [root@localhost config]# docker rm 37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f 37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f [root@localhost config]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE redis latest 7614ae9453d1 2 years ago 113MB mysql 5.7 c20987f18b13 2 years ago 448MB rabbitmq latest d445c0adc9a5 2 years ago 220MB kibana latest a674d23325b0 5 years ago 388MB elasticsearch latest 5acf0e8da90b 5 years ago 486MB [root@localhost config]# docker image rm -f 5acf0e8da90b Untagged: elasticsearch:latest Untagged: elasticsearch@sha256:a8081d995ef3443dc6d077093172a5931e02cdb8ffddbf05c67e01d348a9770e Deleted: sha256:5acf0e8da90b995bace9fdc8f12c02ba323441873a509c19258ce0afa6754d0b Deleted: sha256:66c749d879b8f40691241aca69d87717e54b6be68ec73208d9a44b533f9204f7 Deleted: sha256:8a53ac29c9bef5f702cb3324c53f13997067674706188805084499bbea6a7825 Deleted: sha256:2ca0bc84de8539404abd6acca448b3d14e6c8fefbfb15bcfc43e123efbe329ad Deleted: sha256:a1cb23c8850af10cde5b351bfec97c402d57bfbf78169c520d69642139528fbc Deleted: sha256:374b29a54b5a6a91d9e647eed0230b75654ed55ae719014c38faf3dc27d03472 Deleted: sha256:1ccc05345091bb39b170180859e4312e43432e1694ce1964e0fb4fc3548d4fd2 Deleted: sha256:3ffda1330d17210a51b1e69f385339369edae86f2b481e3418756c853fff85f2 Deleted: sha256:eb25282c86a6f048cf9c766b6456d074ce22952ace1573d090852e460d448a91 Deleted: sha256:ace97896118c74c99d4555445966e9e16b7e7f7670fde53d33d9753b84f4247f Deleted: sha256:a9de2214d67d0d7bf40e88e646bb75e3a95cd21c614121449c2873ab4236f41c Deleted: sha256:0e3c6dece00c9e96b98787480de7c821a1cf7a7ac33883e0b6a386c2b22d285f Deleted: sha256:be985ef6c5ce96739cbe924702dc83fa1c05b0635178cf939985ead10ca4177f Deleted: sha256:54a32bd7a949afcfc50488df9a48db13f5bfc63c282a09db4aa2fb499012c21f Deleted: sha256:7d5f2843cac2368781293d71139c6c30fbb6b7029f6fd4424da858e7f2772875 Deleted: sha256:b28ef0b6fef80faa25436bec0a1375214d9a23a91e9b75975bba3b2889f8504f [root@localhost config]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 28 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 28 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 28 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost config]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE redis latest 7614ae9453d1 2 years ago 113MB mysql 5.7 c20987f18b13 2 years ago 448MB rabbitmq latest d445c0adc9a5 2 years ago 220MB kibana latest a674d23325b0 5 years ago 388MB [root@localhost config]# cd / [root@localhost /]# df -h Filesystem Size Used Avail Use% Mounted on devtmpfs 489M 0 489M 0% /dev tmpfs 496M 0 496M 0% /dev/shm tmpfs 496M 6.9M 489M 2% /run tmpfs 496M 0 496M 0% /sys/fs/cgroup /dev/sda1 40G 5.8G 35G 15% / overlay 40G 5.8G 35G 15% /var/lib/docker/overlay2/cfadf556c7bd2b9aa80de6f3638cd62ee3d94b5d234b007e218c194fe6aedb7e/merged overlay 40G 5.8G 35G 15% /var/lib/docker/overlay2/968a5b7f6d3c421dd318bb3556a56e73440fefbcebdd070812d0217bfb601037/merged overlay 40G 5.8G 35G 15% /var/lib/docker/overlay2/a922b021be657dafe687cbf97c46291a20bf624467aed4fb8364b0b52512285f/merged tmpfs 100M 0 100M 0% /run/user/1000 [root@localhost /]# docker pull elasticsearch:7.4.2 7.4.2: Pulling from library/elasticsearch d8d02d457314: Pull complete f26fec8fc1eb: Pull complete 8177ad1fe56d: Pull complete d8fdf75b73c1: Pull complete 47ac89c1da81: Pull complete fc8e09b48887: Pull complete 367b97f47d5c: Pull complete Digest: sha256:543bf7a3d61781bad337d31e6cc5895f16b55aed4da48f40c346352420927f74 Status: Downloaded newer image for elasticsearch:7.4.2 docker.io/library/elasticsearch:7.4.2 [root@localhost /]# docker run --name elasticsearch -p 9200:9200 -p 9300:9300 \ > -e "discovery.type=single-node" \ > -e ES_JAVA_OPTS="-Xms64m -Xmx512m" \ > -v /mydata/elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml \ > -v /mydata/elasticsearch/data:/usr/share/elasticsearch/data \ > -v /mydata/elasticsearch/plugins:/usr/share/elasticsearch/plugins \ > -d elasticsearch:7.4.2 012bbe8c7c2627f3208c5d7ccddf703f203416b46e1e00661b42a8f0c6703a0d [root@localhost /]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 4 seconds ago Up 3 seconds 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 31 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 31 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 31 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost /]# ifconfig bash: ifconfig: command not found [root@localhost /]# ipconfig bash: ipconfig: command not found [root@localhost /]# if config > quit > ^C [root@localhost /]# ip addr 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000 link/ether 52:54:00:4d:77:d3 brd ff:ff:ff:ff:ff:ff inet 10.0.2.15/24 brd 10.0.2.255 scope global noprefixroute dynamic eth0 valid_lft 84448sec preferred_lft 84448sec inet6 fe80::5054:ff:fe4d:77d3/64 scope link valid_lft forever preferred_lft forever 3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000 link/ether 08:00:27:7f:99:0c brd ff:ff:ff:ff:ff:ff inet 192.168.56.10/24 brd 192.168.56.255 scope global noprefixroute eth1 valid_lft forever preferred_lft forever inet6 fe80::a00:27ff:fe7f:990c/64 scope link valid_lft forever preferred_lft forever 4: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default link/ether 02:42:e0:27:2a:75 brd ff:ff:ff:ff:ff:ff inet 172.17.0.1/16 brd 172.17.255.255 scope global docker0 valid_lft forever preferred_lft forever inet6 fe80::42:e0ff:fe27:2a75/64 scope link valid_lft forever preferred_lft forever 6: vethfc4bed7@if5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default link/ether 36:3a:b3:ee:8c:f6 brd ff:ff:ff:ff:ff:ff link-netnsid 0 inet6 fe80::343a:b3ff:feee:8cf6/64 scope link valid_lft forever preferred_lft forever 8: veth767b2d8@if7: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default link/ether a6:f1:77:60:4b:f5 brd ff:ff:ff:ff:ff:ff link-netnsid 1 inet6 fe80::a4f1:77ff:fe60:4bf5/64 scope link valid_lft forever preferred_lft forever 10: veth2478885@if9: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default link/ether 7e:9d:2f:59:7e:3b brd ff:ff:ff:ff:ff:ff link-netnsid 2 inet6 fe80::7c9d:2fff:fe59:7e3b/64 scope link valid_lft forever preferred_lft forever [root@localhost /]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 33 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 33 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 33 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost /]# docker logs elasticsearch OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release. 2024-07-08 12:01:27,992 main ERROR No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically provided configurations. Set system property 'log4j2.debug' to show Log4j 2 internal initialization logging. See https://logging.apache.org/log4j/2.x/manual/configuration.html for instructions on how to configure Log4j 2 Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]]; at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1097) at org.elasticsearch.common.settings.Settings$Builder.loadFromPath(Settings.java:1070) at org.elasticsearch.node.InternalSettingsPreparer.prepareEnvironment(InternalSettingsPreparer.java:83) at org.elasticsearch.cli.EnvironmentAwareCommand.createEnv(EnvironmentAwareCommand.java:95) at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86) at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:125) at org.elasticsearch.cli.Command.main(Command.java:90) at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115) at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92) Caused by: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]] at org.elasticsearch.common.xcontent.XContentParserUtils.ensureExpectedToken(XContentParserUtils.java:78) at org.elasticsearch.common.settings.Settings.fromXContent(Settings.java:617) at org.elasticsearch.common.settings.Settings.access$400(Settings.java:82) at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1093) ... 8 more [root@localhost /]# cd /mydata [root@localhost mydata]# ls elasticsearch mysql redis [root@localhost mydata]# cd elasticsearch/ [root@localhost elasticsearch]# ls config data plugins [root@localhost elasticsearch]# chmod -R 777 /mydata/elasticsearch/ [root@localhost elasticsearch]# ll total 0 drwxrwxrwx. 2 root root 31 Jul 8 11:42 config drwxrwxrwx. 2 101 101 6 Jul 8 11:40 data drwxrwxrwx. 2 root root 6 Jul 8 11:53 plugins [root@localhost elasticsearch]# docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 4 minutes ago Exited (1) 4 minutes ago elasticsearch 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 35 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 35 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 35 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost elasticsearch]# docker start 012bbe8c7c26 012bbe8c7c26 [root@localhost elasticsearch]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 35 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 35 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 35 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost elasticsearch]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 35 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 35 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 35 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost elasticsearch]# docker start 012bbe8c7c26 012bbe8c7c26 [root@localhost elasticsearch]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 36 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 36 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 36 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost elasticsearch]# docker logs elasticsearch OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release. 2024-07-08 12:01:27,992 main ERROR No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically provided configurations. Set system property 'log4j2.debug' to show Log4j 2 internal initialization logging. See https://logging.apache.org/log4j/2.x/manual/configuration.html for instructions on how to configure Log4j 2 Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]]; at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1097) at org.elasticsearch.common.settings.Settings$Builder.loadFromPath(Settings.java:1070) at org.elasticsearch.node.InternalSettingsPreparer.prepareEnvironment(InternalSettingsPreparer.java:83) at org.elasticsearch.cli.EnvironmentAwareCommand.createEnv(EnvironmentAwareCommand.java:95) at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86) at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:125) at org.elasticsearch.cli.Command.main(Command.java:90) at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115) at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92) Caused by: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]] at org.elasticsearch.common.xcontent.XContentParserUtils.ensureExpectedToken(XContentParserUtils.java:78) at org.elasticsearch.common.settings.Settings.fromXContent(Settings.java:617) at org.elasticsearch.common.settings.Settings.access$400(Settings.java:82) at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1093) ... 8 more OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release. 2024-07-08 12:06:03,112 main ERROR No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically provided configurations. Set system property 'log4j2.debug' to show Log4j 2 internal initialization logging. See https://logging.apache.org/log4j/2.x/manual/configuration.html for instructions on how to configure Log4j 2 Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]]; at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1097) at org.elasticsearch.common.settings.Settings$Builder.loadFromPath(Settings.java:1070) at org.elasticsearch.node.InternalSettingsPreparer.prepareEnvironment(InternalSettingsPreparer.java:83) at org.elasticsearch.cli.EnvironmentAwareCommand.createEnv(EnvironmentAwareCommand.java:95) at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86) at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:125) at org.elasticsearch.cli.Command.main(Command.java:90) at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115) at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92) Caused by: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]] at org.elasticsearch.common.xcontent.XContentParserUtils.ensureExpectedToken(XContentParserUtils.java:78) at org.elasticsearch.common.settings.Settings.fromXContent(Settings.java:617) at org.elasticsearch.common.settings.Settings.access$400(Settings.java:82) at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1093) ... 8 more OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release. 2024-07-08 12:06:26,736 main ERROR No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically provided configurations. Set system property 'log4j2.debug' to show Log4j 2 internal initialization logging. See https://logging.apache.org/log4j/2.x/manual/configuration.html for instructions on how to configure Log4j 2 Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]]; at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1097) at org.elasticsearch.common.settings.Settings$Builder.loadFromPath(Settings.java:1070) at org.elasticsearch.node.InternalSettingsPreparer.prepareEnvironment(InternalSettingsPreparer.java:83) at org.elasticsearch.cli.EnvironmentAwareCommand.createEnv(EnvironmentAwareCommand.java:95) at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86) at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:125) at org.elasticsearch.cli.Command.main(Command.java:90) at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115) at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92) Caused by: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]] at org.elasticsearch.common.xcontent.XContentParserUtils.ensureExpectedToken(XContentParserUtils.java:78) at org.elasticsearch.common.settings.Settings.fromXContent(Settings.java:617) at org.elasticsearch.common.settings.Settings.access$400(Settings.java:82) at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1093) ... 8 more [root@localhost elasticsearch]# ls config data plugins [root@localhost elasticsearch]# cd config/ [root@localhost config]# ls elasticsearch.yml [root@localhost config]# vim elasticsearch.yml bash: vim: command not found [root@localhost config]# vi elasticsearch.yml [root@localhost config]# docker start 012bbe8c7c26 012bbe8c7c26 [root@localhost config]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 7 minutes ago Up 6 seconds 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 38 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 38 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 38 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost config]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 7 minutes ago Up 20 seconds 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 38 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 38 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 38 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost config]# docker logs elasticsearch OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release. 2024-07-08 12:01:27,992 main ERROR No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically provided configurations. Set system property 'log4j2.debug' to show Log4j 2 internal initialization logging. See https://logging.apache.org/log4j/2.x/manual/configuration.html for instructions on how to configure Log4j 2 Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]]; at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1097) at org.elasticsearch.common.settings.Settings$Builder.loadFromPath(Settings.java:1070) at org.elasticsearch.node.InternalSettingsPreparer.prepareEnvironment(InternalSettingsPreparer.java:83) at org.elasticsearch.cli.EnvironmentAwareCommand.createEnv(EnvironmentAwareCommand.java:95) at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86) at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:125) at org.elasticsearch.cli.Command.main(Command.java:90) at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115) at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92) Caused by: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]] at org.elasticsearch.common.xcontent.XContentParserUtils.ensureExpectedToken(XContentParserUtils.java:78) at org.elasticsearch.common.settings.Settings.fromXContent(Settings.java:617) at org.elasticsearch.common.settings.Settings.access$400(Settings.java:82) at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1093) ... 8 more OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release. 2024-07-08 12:06:03,112 main ERROR No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically provided configurations. Set system property 'log4j2.debug' to show Log4j 2 internal initialization logging. See https://logging.apache.org/log4j/2.x/manual/configuration.html for instructions on how to configure Log4j 2 Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]]; at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1097) at org.elasticsearch.common.settings.Settings$Builder.loadFromPath(Settings.java:1070) at org.elasticsearch.node.InternalSettingsPreparer.prepareEnvironment(InternalSettingsPreparer.java:83) at org.elasticsearch.cli.EnvironmentAwareCommand.createEnv(EnvironmentAwareCommand.java:95) at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86) at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:125) at org.elasticsearch.cli.Command.main(Command.java:90) at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115) at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92) Caused by: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]] at org.elasticsearch.common.xcontent.XContentParserUtils.ensureExpectedToken(XContentParserUtils.java:78) at org.elasticsearch.common.settings.Settings.fromXContent(Settings.java:617) at org.elasticsearch.common.settings.Settings.access$400(Settings.java:82) at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1093) ... 8 more OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release. 2024-07-08 12:06:26,736 main ERROR No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically provided configurations. Set system property 'log4j2.debug' to show Log4j 2 internal initialization logging. See https://logging.apache.org/log4j/2.x/manual/configuration.html for instructions on how to configure Log4j 2 Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]]; at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1097) at org.elasticsearch.common.settings.Settings$Builder.loadFromPath(Settings.java:1070) at org.elasticsearch.node.InternalSettingsPreparer.prepareEnvironment(InternalSettingsPreparer.java:83) at org.elasticsearch.cli.EnvironmentAwareCommand.createEnv(EnvironmentAwareCommand.java:95) at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86) at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:125) at org.elasticsearch.cli.Command.main(Command.java:90) at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115) at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92) Caused by: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]] at org.elasticsearch.common.xcontent.XContentParserUtils.ensureExpectedToken(XContentParserUtils.java:78) at org.elasticsearch.common.settings.Settings.fromXContent(Settings.java:617) at org.elasticsearch.common.settings.Settings.access$400(Settings.java:82) at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1093) ... 8 more OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release. {"type": "server", "timestamp": "2024-07-08T12:09:00,063Z", "level": "INFO", "component": "o.e.e.NodeEnvironment", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "using [1] data paths, mounts [[/usr/share/elasticsearch/data (/dev/sda1)]], net usable_space [33.4gb], net total_space [39.9gb], types [xfs]" } {"type": "server", "timestamp": "2024-07-08T12:09:00,067Z", "level": "INFO", "component": "o.e.e.NodeEnvironment", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "heap size [503.6mb], compressed ordinary object pointers [true]" } {"type": "server", "timestamp": "2024-07-08T12:09:00,069Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "node name [012bbe8c7c26], node ID [Bk0E3G34Qoe3Ghccovpe1g], cluster name [elasticsearch]" } {"type": "server", "timestamp": "2024-07-08T12:09:00,070Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "version[7.4.2], pid[1], build[default/docker/2f90bbf7b93631e52bafb59b3b049cb44ec25e96/2019-10-28T20:40:44.881551Z], OS[Linux/3.10.0-1160.108.1.el7.x86_64/amd64], JVM[AdoptOpenJDK/OpenJDK 64-Bit Server VM/13.0.1/13.0.1+9]" } {"type": "server", "timestamp": "2024-07-08T12:09:00,070Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "JVM home [/usr/share/elasticsearch/jdk]" } {"type": "server", "timestamp": "2024-07-08T12:09:00,071Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "JVM arguments [-Xms1g, -Xmx1g, -XX:+UseConcMarkSweepGC, -XX:CMSInitiatingOccupancyFraction=75, -XX:+UseCMSInitiatingOccupancyOnly, -Des.networkaddress.cache.ttl=60, -Des.networkaddress.cache.negative.ttl=10, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -XX:-OmitStackTraceInFastThrow, -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, -Djava.io.tmpdir=/tmp/elasticsearch-15461892618347943538, -XX:+HeapDumpOnOutOfMemoryError, -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, -Djava.locale.providers=COMPAT, -Des.cgroups.hierarchy.override=/, -Xms64m, -Xmx512m, -Dio.netty.allocator.type=unpooled, -XX:MaxDirectMemorySize=268435456, -Des.path.home=/usr/share/elasticsearch, -Des.path.conf=/usr/share/elasticsearch/config, -Des.distribution.flavor=default, -Des.distribution.type=docker, -Des.bundled_jdk=true]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,086Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [aggs-matrix-stats]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,087Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [analysis-common]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,087Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [data-frame]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,087Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [flattened]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,087Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [frozen-indices]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,088Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [ingest-common]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,088Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [ingest-geoip]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,088Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [ingest-user-agent]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,088Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [lang-expression]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,089Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [lang-mustache]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,089Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [lang-painless]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,089Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [mapper-extras]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,089Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [parent-join]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,090Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [percolator]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,103Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [rank-eval]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,103Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [reindex]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,104Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [repository-url]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,104Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [search-business-rules]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,105Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [spatial]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,105Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [transport-netty4]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,105Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [vectors]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,105Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-analytics]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,105Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-ccr]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,106Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-core]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,106Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-deprecation]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,106Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-graph]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,106Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-ilm]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,107Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-logstash]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,107Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-ml]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,107Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-monitoring]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,107Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-rollup]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,108Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-security]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,114Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-sql]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,114Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-voting-only-node]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,114Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-watcher]" } {"type": "server", "timestamp": "2024-07-08T12:09:07,115Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "no plugins loaded" } {"type": "server", "timestamp": "2024-07-08T12:09:17,306Z", "level": "INFO", "component": "o.e.x.s.a.s.FileRolesStore", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "parsed [0] roles from file [/usr/share/elasticsearch/config/roles.yml]" } {"type": "server", "timestamp": "2024-07-08T12:09:19,938Z", "level": "INFO", "component": "o.e.x.m.p.l.CppLogMessageHandler", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "[controller/87] [Main.cc@110] controller (64 bit): Version 7.4.2 (Build 473f61b8a5238b) Copyright (c) 2019 Elasticsearch BV" } {"type": "server", "timestamp": "2024-07-08T12:09:21,451Z", "level": "DEBUG", "component": "o.e.a.ActionModule", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "Using REST wrapper from plugin org.elasticsearch.xpack.security.Security" } [root@localhost config]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 10 minutes ago Up 3 minutes 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 41 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 41 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 41 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost config]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE redis latest 7614ae9453d1 2 years ago 113MB mysql 5.7 c20987f18b13 2 years ago 448MB rabbitmq latest d445c0adc9a5 2 years ago 220MB elasticsearch 7.4.2 b1179d41a7b4 4 years ago 855MB kibana latest a674d23325b0 5 years ago 388MB [root@localhost config]# docker image rm -f a674d23325b0 Untagged: kibana:latest Untagged: kibana@sha256:8b3ea5e4974be2e916d5a5e7fbe2bd3a8f229c374525361372192736459083f9 Deleted: sha256:a674d23325b02611f19c1dc1fa73d9e4570d06cb8701cfb0350db3d24f9d0113 Deleted: sha256:21e8a7f26865db255c09b005c2c552d5761933f78ccaed182d213e4186fa8546 Deleted: sha256:b99918d3b00a638b6f901eca66c47a673c941c903e62a14c98cfbd9c6e0fb794 Deleted: sha256:86fc0bdb6ac014769f0cbf760839f31209a3aa3b6818a9c97a93dbcfb9693d5c Deleted: sha256:2c9d66820273235afc234b027f88944ce4f287d55a3e7565b528b7cc781958de Deleted: sha256:c908d693f2f114f4d2950ba54f45554ee51df008c1cdc35fc8bb1831d03c5887 Deleted: sha256:ff560d56ba1533338d1fa11e6f030f061d02e5ada6db7329cfe8d4f1c7bf8e8b Deleted: sha256:8a5478d8668717b59584bfb55b52856a5b1f5f73a35966e19d69945d2f2960ea Deleted: sha256:e6e9f204fabbec051641de49fae8f8a5a9c07e071cea3692764391f2263972ea Deleted: sha256:8c466bf4ca6ffdda8b7717b1cd6fe31109529ee64e626a003a224fb8bd2bc469 [root@localhost config]# docker pull kibana:7.4.2 7.4.2: Pulling from library/kibana d8d02d457314: Already exists bc64069ca967: Pull complete c7aae8f7d300: Pull complete 8da0971e3b41: Pull complete 58ea4bb2901c: Pull complete b1e21d4c2a7e: Pull complete 3953eac632cb: Pull complete 5f4406500758: Pull complete 340d85e0d1c7: Pull complete 1768564d16fb: Pull complete Digest: sha256:355f9c979dc9cdac3ff9a75a817b8b7660575e492bf7dbe796e705168f167efc Status: Downloaded newer image for kibana:7.4.2 docker.io/library/kibana:7.4.2 [root@localhost config]# dcoker images bash: dcoker: command not found [root@localhost config]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE redis latest 7614ae9453d1 2 years ago 113MB mysql 5.7 c20987f18b13 2 years ago 448MB rabbitmq latest d445c0adc9a5 2 years ago 220MB kibana 7.4.2 230d3ded1abc 4 years ago 1.1GB elasticsearch 7.4.2 b1179d41a7b4 4 years ago 855MB [root@localhost config]# docker stop d445c0adc9a5 Error response from daemon: No such container: d445c0adc9a5 [root@localhost config]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 15 minutes ago Up 7 minutes 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch 25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 46 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 46 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 46 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost config]# docker stop 25a5439186fa 25a5439186fa [root@localhost config]# docker image rm -f d445c0adc9a5 Untagged: rabbitmq:latest Untagged: rabbitmq@sha256:884146137011519524d506a12687127f3d2c7c37c2cc11206dc72c59bedea5e2 Deleted: sha256:d445c0adc9a5596c50e5b73b8b636f79de24ad9da00671714aea768b3fa4ee9b [root@localhost config]# docker image rm -f 25a5439186fa Error response from daemon: No such image: 25a5439186fa:latest [root@localhost config]# docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 16 minutes ago Up 8 minutes 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch 25a5439186fa d445c0adc9a5 "docker-entrypoint.s…" 2 months ago Exited (0) 45 seconds ago rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 47 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 47 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost config]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE redis latest 7614ae9453d1 2 years ago 113MB mysql 5.7 c20987f18b13 2 years ago 448MB kibana 7.4.2 230d3ded1abc 4 years ago 1.1GB elasticsearch 7.4.2 b1179d41a7b4 4 years ago 855MB [root@localhost config]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE redis latest 7614ae9453d1 2 years ago 113MB mysql 5.7 c20987f18b13 2 years ago 448MB kibana 7.4.2 230d3ded1abc 4 years ago 1.1GB elasticsearch 7.4.2 b1179d41a7b4 4 years ago 855MB [root@localhost config]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 17 minutes ago Up 9 minutes 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 48 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 48 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost config]# docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 17 minutes ago Up 9 minutes 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch 25a5439186fa d445c0adc9a5 "docker-entrypoint.s…" 2 months ago Exited (0) About a minute ago rabbit db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 48 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 48 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost config]# docker run --name kibana -e ELASTICSEARCH_HOSTS=http://192.168.56.10:9200 -p 5601:5601 \ > -d kibana:7.4.2 5a879124a74b2ab806c3ae8b2e99d63008c4812e6afa85d994feb0a347e62ae8 [root@localhost config]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 5a879124a74b kibana:7.4.2 "/usr/local/bin/dumb…" 52 seconds ago Up 51 seconds 0.0.0.0:5601->5601/tcp, :::5601->5601/tcp kibana 012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 18 minutes ago Up 10 minutes 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 49 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis 8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 49 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql [root@localhost config]# docker logs 5a879124a74b {"type":"log","@timestamp":"2024-07-08T12:19:03Z","tags":["info","plugins-system"],"pid":7,"message":"Setting up [4] plugins: [security,translations,data,inspector]"} {"type":"log","@timestamp":"2024-07-08T12:19:03Z","tags":["info","plugins","security"],"pid":7,"message":"Setting up plugin"} {"type":"log","@timestamp":"2024-07-08T12:19:03Z","tags":["warning","plugins","security","config"],"pid":7,"message":"Generating a random key for xpack.security.encryptionKey. To prevent sessions from being invalidated on restart, please set xpack.security.encryptionKey in kibana.yml"} {"type":"log","@timestamp":"2024-07-08T12:19:03Z","tags":["warning","plugins","security","config"],"pid":7,"message":"Session cookies will be transmitted over insecure connections. This is not recommended."} {"type":"log","@timestamp":"2024-07-08T12:19:03Z","tags":["info","plugins","translations"],"pid":7,"message":"Setting up plugin"} {"type":"log","@timestamp":"2024-07-08T12:19:03Z","tags":["info","plugins","data"],"pid":7,"message":"Setting up plugin"} {"type":"log","@timestamp":"2024-07-08T12:19:03Z","tags":["info","plugins-system"],"pid":7,"message":"Starting [3] plugins: [security,translations,data]"} {"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["info","siem"],"pid":7,"message":"Plugin initializing"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["info","siem"],"pid":7,"message":"Plugin done initializing"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["warning","encrypted_saved_objects"],"pid":7,"message":"Generating a random key for xpack.encrypted_saved_objects.encryptionKey. To be able to decrypt encrypted saved objects attributes after restart, please set xpack.encrypted_saved_objects.encryptionKey in kibana.yml"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["reporting","browser-driver","warning"],"pid":7,"message":"Enabling the Chromium sandbox provides an additional layer of protection."} {"type":"log","@timestamp":"2024-07-08T12:19:55Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:19:55Z","tags":["reporting","warning"],"pid":7,"message":"Generating a random key for xpack.reporting.encryptionKey. To prevent pending reports from failing on restart, please set xpack.reporting.encryptionKey in kibana.yml"} {"type":"log","@timestamp":"2024-07-08T12:19:55Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} {"type":"log","@timestamp":"2024-07-08T12:19:55Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from green to yellow - Waiting for Elasticsearch","prevState":"green","prevMsg":"Ready"} {"type":"log","@timestamp":"2024-07-08T12:19:56Z","tags":["info","migrations"],"pid":7,"message":"Creating index .kibana_task_manager_1."} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["license","info","xpack"],"pid":7,"message":"Imported license information from Elasticsearch for the [data] cluster: mode: basic | status: active"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["info","monitoring","kibana-monitoring"],"pid":7,"message":"Starting monitoring stats collection"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} {"type":"log","@timestamp":"2024-07-08T12:20:01Z","tags":["info","migrations"],"pid":7,"message":"Creating index .kibana_1."} {"type":"log","@timestamp":"2024-07-08T12:20:04Z","tags":["info","migrations"],"pid":7,"message":"Pointing alias .kibana to .kibana_1."} {"type":"log","@timestamp":"2024-07-08T12:20:04Z","tags":["info","migrations"],"pid":7,"message":"Pointing alias .kibana_task_manager to .kibana_task_manager_1."} {"type":"log","@timestamp":"2024-07-08T12:20:04Z","tags":["info","migrations"],"pid":7,"message":"Finished in 7559ms."} {"type":"log","@timestamp":"2024-07-08T12:20:04Z","tags":["info","migrations"],"pid":7,"message":"Finished in 2466ms."} {"type":"log","@timestamp":"2024-07-08T12:20:04Z","tags":["listening","info"],"pid":7,"message":"Server running at http://0:5601"} {"type":"log","@timestamp":"2024-07-08T12:20:04Z","tags":["info","http","server","Kibana"],"pid":7,"message":"http server running at http://0:5601"} {"type":"log","@timestamp":"2024-07-08T12:20:06Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
vagrant ssh
Last login: Sat May 18 06:08:29 2024 from 10.0.2.2
[vagrant@localhost ~]$ su root
Password:
[root@localhost vagrant]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up About a minute 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up About a minute 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up About a minute 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost vagrant]# sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
redis latest 7614ae9453d1 2 years ago 113MB
mysql 5.7 c20987f18b13 2 years ago 448MB
rabbitmq latest d445c0adc9a5 2 years ago 220MB
[root@localhost vagrant]# docker pull elasticsearch
Using default tag: latest
latest: Pulling from library/elasticsearch
05d1a5232b46: Pull complete
5cee356eda6b: Pull complete
89d3385f0fd3: Pull complete
65dd87f6620b: Pull complete
78a183a01190: Pull complete
1a4499c85f97: Pull complete
2c9d39b4bfc1: Pull complete
1b1cec2222c9: Pull complete
59ff4ce9df68: Pull complete
1976bc3ee432: Pull complete
5af49e8af381: Pull complete
42c8b75ff7af: Pull complete
7e6902915254: Pull complete
99853874fa54: Pull complete
596fbad6fcff: Pull complete
Digest: sha256:a8081d995ef3443dc6d077093172a5931e02cdb8ffddbf05c67e01d348a9770e
Status: Downloaded newer image for elasticsearch:latest
docker.io/library/elasticsearch:latest
[root@localhost vagrant]# sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
redis latest 7614ae9453d1 2 years ago 113MB
mysql 5.7 c20987f18b13 2 years ago 448MB
rabbitmq latest d445c0adc9a5 2 years ago 220MB
elasticsearch latest 5acf0e8da90b 5 years ago 486MB
[root@localhost vagrant]# docker pull kibana
Using default tag: latest
latest: Pulling from library/kibana
f189db1b88b3: Pull complete
8e4c00d0a2f1: Pull complete
ae50ad228104: Pull complete
228a7a369ee9: Pull complete
5272eb2224c2: Pull complete
b0a91590498c: Pull complete
4b8a31943945: Pull complete
df84b481e461: Pull complete
0863f2e045e0: Pull complete
Digest: sha256:8b3ea5e4974be2e916d5a5e7fbe2bd3a8f229c374525361372192736459083f9
Status: Downloaded newer image for kibana:latest
docker.io/library/kibana:latest
[root@localhost vagrant]# ls
[root@localhost vagrant]# cd /
[root@localhost /]# ls
bin dev home lib64 mnt opt root sbin swapfile tmp var
boot etc lib media mydata proc run srv sys usr
[root@localhost /]# cd var
[root@localhost var]# ls
adm cache db empty games gopher kerberos lib local lock log mail nis opt preserve run spool tmp yp
[root@localhost var]# df -h
Filesystem Size Used Avail Use% Mounted on
devtmpfs 489M 0 489M 0% /dev
tmpfs 496M 0 496M 0% /dev/shm
tmpfs 496M 6.9M 489M 2% /run
tmpfs 496M 0 496M 0% /sys/fs/cgroup
/dev/sda1 40G 6.3G 34G 16% /
overlay 40G 6.3G 34G 16% /var/lib/docker/overlay2/cfadf556c7bd2b9aa80de6f3638cd62ee3d94b5d234b007e218c194fe6aedb7e/merged
overlay 40G 6.3G 34G 16% /var/lib/docker/overlay2/968a5b7f6d3c421dd318bb3556a56e73440fefbcebdd070812d0217bfb601037/merged
overlay 40G 6.3G 34G 16% /var/lib/docker/overlay2/a922b021be657dafe687cbf97c46291a20bf624467aed4fb8364b0b52512285f/merged
tmpfs 100M 0 100M 0% /run/user/1000
[root@localhost var]# cd /
[root@localhost /]# df -h
Filesystem Size Used Avail Use% Mounted on
devtmpfs 489M 0 489M 0% /dev
tmpfs 496M 0 496M 0% /dev/shm
tmpfs 496M 6.9M 489M 2% /run
tmpfs 496M 0 496M 0% /sys/fs/cgroup
/dev/sda1 40G 6.3G 34G 16% /
overlay 40G 6.3G 34G 16% /var/lib/docker/overlay2/cfadf556c7bd2b9aa80de6f3638cd62ee3d94b5d234b007e218c194fe6aedb7e/merged
overlay 40G 6.3G 34G 16% /var/lib/docker/overlay2/968a5b7f6d3c421dd318bb3556a56e73440fefbcebdd070812d0217bfb601037/merged
overlay 40G 6.3G 34G 16% /var/lib/docker/overlay2/a922b021be657dafe687cbf97c46291a20bf624467aed4fb8364b0b52512285f/merged
tmpfs 100M 0 100M 0% /run/user/1000
[root@localhost /]# mkdir -p /mydata/elasticsearch/config
[root@localhost /]# mkdir -p /mydata/elasticsearch/data
[root@localhost /]# cd /mydata/elasticsearch/data
[root@localhost data]# cd /mydata/elasticsearch
[root@localhost elasticsearch]# ls
config data
[root@localhost elasticsearch]# cd /mydata
[root@localhost mydata]# ls
elasticsearch mysql redis
[root@localhost mydata]# echo "http.host:0.0.0.0" >> /mydata/elasticsearch/config/elasticsearch.yml
[root@localhost mydata]# cd elasticsearch/
[root@localhost elasticsearch]# cd config/
[root@localhost config]# ls
elasticsearch.yml
[root@localhost config]# vi elasticsearch.yml
[root@localhost config]# cat elasticsearch.yml
http.host:0.0.0.0
[root@localhost config]# docker run --name elasticsearch -p 9200:9200 -p 9300:9300 \
> -e "discovery.type=single-node" \
> -e ES_JAVA_OPTS="-Xms64m -Xmx512m" \
> -v /mydata/elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml \
> -v /mydata/elasticsearch/data:/usr/share/elasticsearch/data \
> -v /mydata/elasticsearch/plugins:/usr/share/elasticsearch/plugins \
> -d elasticsearch
37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f
[root@localhost config]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
NAMES
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 23 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 23 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 23 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost config]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
redis latest 7614ae9453d1 2 years ago 113MB
mysql 5.7 c20987f18b13 2 years ago 448MB
rabbitmq latest d445c0adc9a5 2 years ago 220MB
kibana latest a674d23325b0 5 years ago 388MB
elasticsearch latest 5acf0e8da90b 5 years ago 486MB
[root@localhost config]# docker run --name elasticsearch -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e ES_JAVA_OPTS="-Xms64m -Xmx512m" -v /mydata/elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml -v /mydata/elasticsearch/data:/usr/share/elasticsearch/data -v /mydata/elasticsearch/plugins:/usr/share/elasticsearch/plugins -d elasticsearch:latest
docker: Error response from daemon: Conflict. The container name "/elasticsearch" is already in use by container "37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f". You have to remove (or rename) that container to be able to reuse that name.
See 'docker run --help'.
[root@localhost config]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 24 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 24 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 24 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost config]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
NAMES
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 25 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 25 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 25 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost config]# docker stop 37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f
37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f
[root@localhost config]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
NAMES
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 25 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 25 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 25 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost config]# docker run --name elasticsearch -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e ES_JAVA_OPTS="-Xms64m -Xmx512m" -v /mydata/elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml -v /mydata/elasticsearch/data:/usr/share/elasticsearch/data -v /mydata/elasticsearch/plugins:/usr/share/elasticsearch/plugins -d elasticsearch:latest
docker: Error response from daemon: Conflict. The container name "/elasticsearch" is already in use by container "37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f". You have to remove (or rename) that container to be able to reuse that name.
See 'docker run --help'.
[root@localhost config]# docker image rm 37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f
Error response from daemon: No such image: sha256:37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f
[root@localhost config]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
redis latest 7614ae9453d1 2 years ago 113MB
mysql 5.7 c20987f18b13 2 years ago 448MB
rabbitmq latest d445c0adc9a5 2 years ago 220MB
kibana latest a674d23325b0 5 years ago 388MB
elasticsearch latest 5acf0e8da90b 5 years ago 486MB
[root@localhost config]# docker image rm 5acf0e8da90b
Error response from daemon: conflict: unable to delete 5acf0e8da90b (must be forced) - image is being used by stopped container 37d38eca4a4e
[root@localhost config]# docker image rm 37d38eca4a4e
Error response from daemon: No such image: 37d38eca4a4e:latest
[root@localhost config]# [root@localhost config]# docker run --name elasticsearch -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e ES_JAVA_OPTS="-Xms64m -Xmx512m" -v /mydata/elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml -v /mydata/elasticsearch/data:/usr/share/elasticsearch/data -v /mydata/elasticsearch/plugins:/usr/share/elasticsearch/plugins -d elasticsearch:latest
bash: [root@localhost: command not found
[root@localhost config]# docker: Error response from daemon: Conflict. The container name "/elasticsearch" is already in use by container "37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f". You have to remove (or rename) that container to be able to reuse that name.
bash: syntax error near unexpected token `('
[root@localhost config]# See 'docker run --help'.
bash: See: command not found
[root@localhost config]# [root@localhost config]# docker image rm 37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f
bash: [root@localhost: command not found
[root@localhost config]# Error response from daemon: No such image: sha256:37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f
bash: Error: command not found
[root@localhost config]# [root@localhost config]# docker images
bash: [root@localhost: command not found
[root@localhost config]# REPOSITORY TAG IMAGE ID CREATED SIZE
bash: REPOSITORY: command not found
[root@localhost config]# redis latest 7614ae9453d1 2 years ago 113MB
bash: redis: command not found
[root@localhost config]# mysql 5.7 c20987f18b13 2 years ago 448MB
bash: mysql: command not found
[root@localhost config]# rabbitmq latest d445c0adc9a5 2 years ago 220MB
bash: rabbitmq: command not found
[root@localhost config]# kibana latest a674d23325b0 5 years ago 388MB
bash: kibana: command not found
[root@localhost config]# elasticsearch latest 5acf0e8da90b 5 years ago 486MB
bash: elasticsearch: command not found
[root@localhost config]# [root@localhost config]# docker image rm 5acf0e8da90b
bash: [root@localhost: command not found
[root@localhost config]# Error response from daemon: conflict: unable to delete 5acf0e8da90b (must be forced) - image is being used by stopped container 37d38eca4a4e
bash: syntax error near unexpected token `('
[root@localhost config]# [root@localhost config]# docker image rm 37d38eca4a4e
bash: [root@localhost: command not found
[root@localhost config]# Error response from daemon: No such image: 37d38eca4a4e:latest
bash: Error: command not found
[root@localhost config]# docker rm 37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f
37d38eca4a4e71761b8f80eac7f4d7a819577d83a9b93fa060f0d114e50cd33f
[root@localhost config]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
redis latest 7614ae9453d1 2 years ago 113MB
mysql 5.7 c20987f18b13 2 years ago 448MB
rabbitmq latest d445c0adc9a5 2 years ago 220MB
kibana latest a674d23325b0 5 years ago 388MB
elasticsearch latest 5acf0e8da90b 5 years ago 486MB
[root@localhost config]# docker image rm -f 5acf0e8da90b
Untagged: elasticsearch:latest
Untagged: elasticsearch@sha256:a8081d995ef3443dc6d077093172a5931e02cdb8ffddbf05c67e01d348a9770e
Deleted: sha256:5acf0e8da90b995bace9fdc8f12c02ba323441873a509c19258ce0afa6754d0b
Deleted: sha256:66c749d879b8f40691241aca69d87717e54b6be68ec73208d9a44b533f9204f7
Deleted: sha256:8a53ac29c9bef5f702cb3324c53f13997067674706188805084499bbea6a7825
Deleted: sha256:2ca0bc84de8539404abd6acca448b3d14e6c8fefbfb15bcfc43e123efbe329ad
Deleted: sha256:a1cb23c8850af10cde5b351bfec97c402d57bfbf78169c520d69642139528fbc
Deleted: sha256:374b29a54b5a6a91d9e647eed0230b75654ed55ae719014c38faf3dc27d03472
Deleted: sha256:1ccc05345091bb39b170180859e4312e43432e1694ce1964e0fb4fc3548d4fd2
Deleted: sha256:3ffda1330d17210a51b1e69f385339369edae86f2b481e3418756c853fff85f2
Deleted: sha256:eb25282c86a6f048cf9c766b6456d074ce22952ace1573d090852e460d448a91
Deleted: sha256:ace97896118c74c99d4555445966e9e16b7e7f7670fde53d33d9753b84f4247f
Deleted: sha256:a9de2214d67d0d7bf40e88e646bb75e3a95cd21c614121449c2873ab4236f41c
Deleted: sha256:0e3c6dece00c9e96b98787480de7c821a1cf7a7ac33883e0b6a386c2b22d285f
Deleted: sha256:be985ef6c5ce96739cbe924702dc83fa1c05b0635178cf939985ead10ca4177f
Deleted: sha256:54a32bd7a949afcfc50488df9a48db13f5bfc63c282a09db4aa2fb499012c21f
Deleted: sha256:7d5f2843cac2368781293d71139c6c30fbb6b7029f6fd4424da858e7f2772875
Deleted: sha256:b28ef0b6fef80faa25436bec0a1375214d9a23a91e9b75975bba3b2889f8504f
[root@localhost config]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
NAMES
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 28 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 28 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 28 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost config]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
redis latest 7614ae9453d1 2 years ago 113MB
mysql 5.7 c20987f18b13 2 years ago 448MB
rabbitmq latest d445c0adc9a5 2 years ago 220MB
kibana latest a674d23325b0 5 years ago 388MB
[root@localhost config]# cd /
[root@localhost /]# df -h
Filesystem Size Used Avail Use% Mounted on
devtmpfs 489M 0 489M 0% /dev
tmpfs 496M 0 496M 0% /dev/shm
tmpfs 496M 6.9M 489M 2% /run
tmpfs 496M 0 496M 0% /sys/fs/cgroup
/dev/sda1 40G 5.8G 35G 15% /
overlay 40G 5.8G 35G 15% /var/lib/docker/overlay2/cfadf556c7bd2b9aa80de6f3638cd62ee3d94b5d234b007e218c194fe6aedb7e/merged
overlay 40G 5.8G 35G 15% /var/lib/docker/overlay2/968a5b7f6d3c421dd318bb3556a56e73440fefbcebdd070812d0217bfb601037/merged
overlay 40G 5.8G 35G 15% /var/lib/docker/overlay2/a922b021be657dafe687cbf97c46291a20bf624467aed4fb8364b0b52512285f/merged
tmpfs 100M 0 100M 0% /run/user/1000
[root@localhost /]# docker pull elasticsearch:7.4.2
7.4.2: Pulling from library/elasticsearch
d8d02d457314: Pull complete
f26fec8fc1eb: Pull complete
8177ad1fe56d: Pull complete
d8fdf75b73c1: Pull complete
47ac89c1da81: Pull complete
fc8e09b48887: Pull complete
367b97f47d5c: Pull complete
Digest: sha256:543bf7a3d61781bad337d31e6cc5895f16b55aed4da48f40c346352420927f74
Status: Downloaded newer image for elasticsearch:7.4.2
docker.io/library/elasticsearch:7.4.2
[root@localhost /]# docker run --name elasticsearch -p 9200:9200 -p 9300:9300 \
> -e "discovery.type=single-node" \
> -e ES_JAVA_OPTS="-Xms64m -Xmx512m" \
> -v /mydata/elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml \
> -v /mydata/elasticsearch/data:/usr/share/elasticsearch/data \
> -v /mydata/elasticsearch/plugins:/usr/share/elasticsearch/plugins \
> -d elasticsearch:7.4.2
012bbe8c7c2627f3208c5d7ccddf703f203416b46e1e00661b42a8f0c6703a0d
[root@localhost /]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
NAMES
012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 4 seconds ago Up 3 seconds 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 31 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 31 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 31 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost /]# ifconfig
bash: ifconfig: command not found
[root@localhost /]# ipconfig
bash: ipconfig: command not found
[root@localhost /]# if config
> quit
> ^C
[root@localhost /]# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 52:54:00:4d:77:d3 brd ff:ff:ff:ff:ff:ff
inet 10.0.2.15/24 brd 10.0.2.255 scope global noprefixroute dynamic eth0
valid_lft 84448sec preferred_lft 84448sec
inet6 fe80::5054:ff:fe4d:77d3/64 scope link
valid_lft forever preferred_lft forever
3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 08:00:27:7f:99:0c brd ff:ff:ff:ff:ff:ff
inet 192.168.56.10/24 brd 192.168.56.255 scope global noprefixroute eth1
valid_lft forever preferred_lft forever
inet6 fe80::a00:27ff:fe7f:990c/64 scope link
valid_lft forever preferred_lft forever
4: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether 02:42:e0:27:2a:75 brd ff:ff:ff:ff:ff:ff
inet 172.17.0.1/16 brd 172.17.255.255 scope global docker0
valid_lft forever preferred_lft forever
inet6 fe80::42:e0ff:fe27:2a75/64 scope link
valid_lft forever preferred_lft forever
6: vethfc4bed7@if5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default
link/ether 36:3a:b3:ee:8c:f6 brd ff:ff:ff:ff:ff:ff link-netnsid 0
inet6 fe80::343a:b3ff:feee:8cf6/64 scope link
valid_lft forever preferred_lft forever
8: veth767b2d8@if7: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default
link/ether a6:f1:77:60:4b:f5 brd ff:ff:ff:ff:ff:ff link-netnsid 1
inet6 fe80::a4f1:77ff:fe60:4bf5/64 scope link
valid_lft forever preferred_lft forever
10: veth2478885@if9: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default
link/ether 7e:9d:2f:59:7e:3b brd ff:ff:ff:ff:ff:ff link-netnsid 2
inet6 fe80::7c9d:2fff:fe59:7e3b/64 scope link
valid_lft forever preferred_lft forever
[root@localhost /]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
NAMES
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 33 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 33 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 33 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost /]# docker logs elasticsearch
OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release.
2024-07-08 12:01:27,992 main ERROR No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically provided configurations. Set system property 'log4j2.debug' to show Log4j 2 internal initialization logging. See https://logging.apache.org/log4j/2.x/manual/configuration.html for instructions on how to configure Log4j 2
Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]];
at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1097)
at org.elasticsearch.common.settings.Settings$Builder.loadFromPath(Settings.java:1070)
at org.elasticsearch.node.InternalSettingsPreparer.prepareEnvironment(InternalSettingsPreparer.java:83)
at org.elasticsearch.cli.EnvironmentAwareCommand.createEnv(EnvironmentAwareCommand.java:95)
at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86)
at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:125)
at org.elasticsearch.cli.Command.main(Command.java:90)
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115)
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92)
Caused by: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]]
at org.elasticsearch.common.xcontent.XContentParserUtils.ensureExpectedToken(XContentParserUtils.java:78)
at org.elasticsearch.common.settings.Settings.fromXContent(Settings.java:617)
at org.elasticsearch.common.settings.Settings.access$400(Settings.java:82)
at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1093)
... 8 more
[root@localhost /]# cd /mydata
[root@localhost mydata]# ls
elasticsearch mysql redis
[root@localhost mydata]# cd elasticsearch/
[root@localhost elasticsearch]# ls
config data plugins
[root@localhost elasticsearch]# chmod -R 777 /mydata/elasticsearch/
[root@localhost elasticsearch]# ll
total 0
drwxrwxrwx. 2 root root 31 Jul 8 11:42 config
drwxrwxrwx. 2 101 101 6 Jul 8 11:40 data
drwxrwxrwx. 2 root root 6 Jul 8 11:53 plugins
[root@localhost elasticsearch]# docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTSNAMES
012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 4 minutes ago Exited (1) 4 minutes agoelasticsearch
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 35 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 35 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp
redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 35 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp
mysql
[root@localhost elasticsearch]# docker start 012bbe8c7c26
012bbe8c7c26
[root@localhost elasticsearch]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
NAMES
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 35 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 35 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 35 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost elasticsearch]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
NAMES
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 35 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 35 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 35 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost elasticsearch]# docker start 012bbe8c7c26
012bbe8c7c26
[root@localhost elasticsearch]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
NAMES
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 36 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 36 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 36 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost elasticsearch]# docker logs elasticsearch
OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release.
2024-07-08 12:01:27,992 main ERROR No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically provided configurations. Set system property 'log4j2.debug' to show Log4j 2 internal initialization logging. See https://logging.apache.org/log4j/2.x/manual/configuration.html for instructions on how to configure Log4j 2
Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]];
at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1097)
at org.elasticsearch.common.settings.Settings$Builder.loadFromPath(Settings.java:1070)
at org.elasticsearch.node.InternalSettingsPreparer.prepareEnvironment(InternalSettingsPreparer.java:83)
at org.elasticsearch.cli.EnvironmentAwareCommand.createEnv(EnvironmentAwareCommand.java:95)
at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86)
at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:125)
at org.elasticsearch.cli.Command.main(Command.java:90)
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115)
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92)
Caused by: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]]
at org.elasticsearch.common.xcontent.XContentParserUtils.ensureExpectedToken(XContentParserUtils.java:78)
at org.elasticsearch.common.settings.Settings.fromXContent(Settings.java:617)
at org.elasticsearch.common.settings.Settings.access$400(Settings.java:82)
at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1093)
... 8 more
OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release.
2024-07-08 12:06:03,112 main ERROR No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically provided configurations. Set system property 'log4j2.debug' to show Log4j 2 internal initialization logging. See https://logging.apache.org/log4j/2.x/manual/configuration.html for instructions on how to configure Log4j 2
Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]];
at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1097)
at org.elasticsearch.common.settings.Settings$Builder.loadFromPath(Settings.java:1070)
at org.elasticsearch.node.InternalSettingsPreparer.prepareEnvironment(InternalSettingsPreparer.java:83)
at org.elasticsearch.cli.EnvironmentAwareCommand.createEnv(EnvironmentAwareCommand.java:95)
at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86)
at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:125)
at org.elasticsearch.cli.Command.main(Command.java:90)
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115)
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92)
Caused by: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]]
at org.elasticsearch.common.xcontent.XContentParserUtils.ensureExpectedToken(XContentParserUtils.java:78)
at org.elasticsearch.common.settings.Settings.fromXContent(Settings.java:617)
at org.elasticsearch.common.settings.Settings.access$400(Settings.java:82)
at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1093)
... 8 more
OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release.
2024-07-08 12:06:26,736 main ERROR No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically provided configurations. Set system property 'log4j2.debug' to show Log4j 2 internal initialization logging. See https://logging.apache.org/log4j/2.x/manual/configuration.html for instructions on how to configure Log4j 2
Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]];
at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1097)
at org.elasticsearch.common.settings.Settings$Builder.loadFromPath(Settings.java:1070)
at org.elasticsearch.node.InternalSettingsPreparer.prepareEnvironment(InternalSettingsPreparer.java:83)
at org.elasticsearch.cli.EnvironmentAwareCommand.createEnv(EnvironmentAwareCommand.java:95)
at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86)
at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:125)
at org.elasticsearch.cli.Command.main(Command.java:90)
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115)
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92)
Caused by: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]]
at org.elasticsearch.common.xcontent.XContentParserUtils.ensureExpectedToken(XContentParserUtils.java:78)
at org.elasticsearch.common.settings.Settings.fromXContent(Settings.java:617)
at org.elasticsearch.common.settings.Settings.access$400(Settings.java:82)
at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1093)
... 8 more
[root@localhost elasticsearch]# ls
config data plugins
[root@localhost elasticsearch]# cd config/
[root@localhost config]# ls
elasticsearch.yml
[root@localhost config]# vim elasticsearch.yml
bash: vim: command not found
[root@localhost config]# vi elasticsearch.yml
[root@localhost config]# docker start 012bbe8c7c26
012bbe8c7c26
[root@localhost config]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
NAMES
012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 7 minutes ago Up 6 seconds 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 38 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 38 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 38 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost config]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
NAMES
012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 7 minutes ago Up 20 seconds 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 38 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 38 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 38 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost config]# docker logs elasticsearch
OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release.
2024-07-08 12:01:27,992 main ERROR No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically provided configurations. Set system property 'log4j2.debug' to show Log4j 2 internal initialization logging. See https://logging.apache.org/log4j/2.x/manual/configuration.html for instructions on how to configure Log4j 2
Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]];
at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1097)
at org.elasticsearch.common.settings.Settings$Builder.loadFromPath(Settings.java:1070)
at org.elasticsearch.node.InternalSettingsPreparer.prepareEnvironment(InternalSettingsPreparer.java:83)
at org.elasticsearch.cli.EnvironmentAwareCommand.createEnv(EnvironmentAwareCommand.java:95)
at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86)
at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:125)
at org.elasticsearch.cli.Command.main(Command.java:90)
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115)
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92)
Caused by: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]]
at org.elasticsearch.common.xcontent.XContentParserUtils.ensureExpectedToken(XContentParserUtils.java:78)
at org.elasticsearch.common.settings.Settings.fromXContent(Settings.java:617)
at org.elasticsearch.common.settings.Settings.access$400(Settings.java:82)
at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1093)
... 8 more
OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release.
2024-07-08 12:06:03,112 main ERROR No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically provided configurations. Set system property 'log4j2.debug' to show Log4j 2 internal initialization logging. See https://logging.apache.org/log4j/2.x/manual/configuration.html for instructions on how to configure Log4j 2
Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]];
at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1097)
at org.elasticsearch.common.settings.Settings$Builder.loadFromPath(Settings.java:1070)
at org.elasticsearch.node.InternalSettingsPreparer.prepareEnvironment(InternalSettingsPreparer.java:83)
at org.elasticsearch.cli.EnvironmentAwareCommand.createEnv(EnvironmentAwareCommand.java:95)
at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86)
at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:125)
at org.elasticsearch.cli.Command.main(Command.java:90)
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115)
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92)
Caused by: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]]
at org.elasticsearch.common.xcontent.XContentParserUtils.ensureExpectedToken(XContentParserUtils.java:78)
at org.elasticsearch.common.settings.Settings.fromXContent(Settings.java:617)
at org.elasticsearch.common.settings.Settings.access$400(Settings.java:82)
at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1093)
... 8 more
OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release.
2024-07-08 12:06:26,736 main ERROR No Log4j 2 configuration file found. Using default configuration (logging only errors to the console), or user programmatically provided configurations. Set system property 'log4j2.debug' to show Log4j 2 internal initialization logging. See https://logging.apache.org/log4j/2.x/manual/configuration.html for instructions on how to configure Log4j 2
Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]];
at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1097)
at org.elasticsearch.common.settings.Settings$Builder.loadFromPath(Settings.java:1070)
at org.elasticsearch.node.InternalSettingsPreparer.prepareEnvironment(InternalSettingsPreparer.java:83)
at org.elasticsearch.cli.EnvironmentAwareCommand.createEnv(EnvironmentAwareCommand.java:95)
at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86)
at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:125)
at org.elasticsearch.cli.Command.main(Command.java:90)
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115)
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92)
Caused by: ParsingException[Failed to parse object: expecting token of type [START_OBJECT] but found [VALUE_STRING]]
at org.elasticsearch.common.xcontent.XContentParserUtils.ensureExpectedToken(XContentParserUtils.java:78)
at org.elasticsearch.common.settings.Settings.fromXContent(Settings.java:617)
at org.elasticsearch.common.settings.Settings.access$400(Settings.java:82)
at org.elasticsearch.common.settings.Settings$Builder.loadFromStream(Settings.java:1093)
... 8 more
OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release.
{"type": "server", "timestamp": "2024-07-08T12:09:00,063Z", "level": "INFO", "component": "o.e.e.NodeEnvironment", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "using [1] data paths, mounts [[/usr/share/elasticsearch/data (/dev/sda1)]], net usable_space [33.4gb], net total_space [39.9gb], types [xfs]" }
{"type": "server", "timestamp": "2024-07-08T12:09:00,067Z", "level": "INFO", "component": "o.e.e.NodeEnvironment", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "heap size [503.6mb], compressed ordinary object pointers [true]" }
{"type": "server", "timestamp": "2024-07-08T12:09:00,069Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "node name [012bbe8c7c26], node ID [Bk0E3G34Qoe3Ghccovpe1g], cluster name [elasticsearch]" }
{"type": "server", "timestamp": "2024-07-08T12:09:00,070Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "version[7.4.2], pid[1], build[default/docker/2f90bbf7b93631e52bafb59b3b049cb44ec25e96/2019-10-28T20:40:44.881551Z], OS[Linux/3.10.0-1160.108.1.el7.x86_64/amd64], JVM[AdoptOpenJDK/OpenJDK 64-Bit Server VM/13.0.1/13.0.1+9]" }
{"type": "server", "timestamp": "2024-07-08T12:09:00,070Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "JVM home [/usr/share/elasticsearch/jdk]" }
{"type": "server", "timestamp": "2024-07-08T12:09:00,071Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "JVM arguments [-Xms1g, -Xmx1g, -XX:+UseConcMarkSweepGC, -XX:CMSInitiatingOccupancyFraction=75, -XX:+UseCMSInitiatingOccupancyOnly, -Des.networkaddress.cache.ttl=60, -Des.networkaddress.cache.negative.ttl=10, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -XX:-OmitStackTraceInFastThrow, -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, -Djava.io.tmpdir=/tmp/elasticsearch-15461892618347943538, -XX:+HeapDumpOnOutOfMemoryError, -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, -Djava.locale.providers=COMPAT, -Des.cgroups.hierarchy.override=/, -Xms64m, -Xmx512m, -Dio.netty.allocator.type=unpooled, -XX:MaxDirectMemorySize=268435456, -Des.path.home=/usr/share/elasticsearch, -Des.path.conf=/usr/share/elasticsearch/config, -Des.distribution.flavor=default, -Des.distribution.type=docker, -Des.bundled_jdk=true]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,086Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [aggs-matrix-stats]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,087Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [analysis-common]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,087Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [data-frame]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,087Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [flattened]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,087Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [frozen-indices]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,088Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [ingest-common]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,088Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [ingest-geoip]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,088Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [ingest-user-agent]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,088Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [lang-expression]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,089Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [lang-mustache]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,089Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [lang-painless]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,089Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [mapper-extras]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,089Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [parent-join]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,090Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [percolator]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,103Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [rank-eval]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,103Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [reindex]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,104Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [repository-url]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,104Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [search-business-rules]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,105Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [spatial]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,105Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [transport-netty4]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,105Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [vectors]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,105Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-analytics]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,105Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-ccr]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,106Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-core]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,106Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-deprecation]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,106Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-graph]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,106Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-ilm]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,107Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-logstash]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,107Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-ml]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,107Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-monitoring]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,107Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-rollup]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,108Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-security]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,114Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-sql]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,114Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-voting-only-node]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,114Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "loaded module [x-pack-watcher]" }
{"type": "server", "timestamp": "2024-07-08T12:09:07,115Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "no plugins loaded" }
{"type": "server", "timestamp": "2024-07-08T12:09:17,306Z", "level": "INFO", "component": "o.e.x.s.a.s.FileRolesStore", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "parsed [0] roles from file [/usr/share/elasticsearch/config/roles.yml]" }
{"type": "server", "timestamp": "2024-07-08T12:09:19,938Z", "level": "INFO", "component": "o.e.x.m.p.l.CppLogMessageHandler", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "[controller/87] [Main.cc@110] controller (64 bit): Version 7.4.2 (Build 473f61b8a5238b) Copyright (c) 2019 Elasticsearch BV" }
{"type": "server", "timestamp": "2024-07-08T12:09:21,451Z", "level": "DEBUG", "component": "o.e.a.ActionModule", "cluster.name": "elasticsearch", "node.name": "012bbe8c7c26", "message": "Using REST wrapper from plugin org.elasticsearch.xpack.security.Security" }
[root@localhost config]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
NAMES
012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 10 minutes ago Up 3 minutes 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 41 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 41 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 41 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost config]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
redis latest 7614ae9453d1 2 years ago 113MB
mysql 5.7 c20987f18b13 2 years ago 448MB
rabbitmq latest d445c0adc9a5 2 years ago 220MB
elasticsearch 7.4.2 b1179d41a7b4 4 years ago 855MB
kibana latest a674d23325b0 5 years ago 388MB
[root@localhost config]# docker image rm -f a674d23325b0
Untagged: kibana:latest
Untagged: kibana@sha256:8b3ea5e4974be2e916d5a5e7fbe2bd3a8f229c374525361372192736459083f9
Deleted: sha256:a674d23325b02611f19c1dc1fa73d9e4570d06cb8701cfb0350db3d24f9d0113
Deleted: sha256:21e8a7f26865db255c09b005c2c552d5761933f78ccaed182d213e4186fa8546
Deleted: sha256:b99918d3b00a638b6f901eca66c47a673c941c903e62a14c98cfbd9c6e0fb794
Deleted: sha256:86fc0bdb6ac014769f0cbf760839f31209a3aa3b6818a9c97a93dbcfb9693d5c
Deleted: sha256:2c9d66820273235afc234b027f88944ce4f287d55a3e7565b528b7cc781958de
Deleted: sha256:c908d693f2f114f4d2950ba54f45554ee51df008c1cdc35fc8bb1831d03c5887
Deleted: sha256:ff560d56ba1533338d1fa11e6f030f061d02e5ada6db7329cfe8d4f1c7bf8e8b
Deleted: sha256:8a5478d8668717b59584bfb55b52856a5b1f5f73a35966e19d69945d2f2960ea
Deleted: sha256:e6e9f204fabbec051641de49fae8f8a5a9c07e071cea3692764391f2263972ea
Deleted: sha256:8c466bf4ca6ffdda8b7717b1cd6fe31109529ee64e626a003a224fb8bd2bc469
[root@localhost config]# docker pull kibana:7.4.2
7.4.2: Pulling from library/kibana
d8d02d457314: Already exists
bc64069ca967: Pull complete
c7aae8f7d300: Pull complete
8da0971e3b41: Pull complete
58ea4bb2901c: Pull complete
b1e21d4c2a7e: Pull complete
3953eac632cb: Pull complete
5f4406500758: Pull complete
340d85e0d1c7: Pull complete
1768564d16fb: Pull complete
Digest: sha256:355f9c979dc9cdac3ff9a75a817b8b7660575e492bf7dbe796e705168f167efc
Status: Downloaded newer image for kibana:7.4.2
docker.io/library/kibana:7.4.2
[root@localhost config]# dcoker images
bash: dcoker: command not found
[root@localhost config]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
redis latest 7614ae9453d1 2 years ago 113MB
mysql 5.7 c20987f18b13 2 years ago 448MB
rabbitmq latest d445c0adc9a5 2 years ago 220MB
kibana 7.4.2 230d3ded1abc 4 years ago 1.1GB
elasticsearch 7.4.2 b1179d41a7b4 4 years ago 855MB
[root@localhost config]# docker stop d445c0adc9a5
Error response from daemon: No such container: d445c0adc9a5
[root@localhost config]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
NAMES
012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 15 minutes ago Up 7 minutes 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch
25a5439186fa rabbitmq "docker-entrypoint.s…" 2 months ago Up 46 minutes 4369/tcp, 5671/tcp, 15691-15692/tcp, 25672/tcp, 0.0.0.0:15672->15672/tcp, :::15672->15672/tcp, 0.0.0.0:5673->5672/tcp, :::5673->5672/tcp rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 46 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 46 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost config]# docker stop 25a5439186fa
25a5439186fa
[root@localhost config]# docker image rm -f d445c0adc9a5
Untagged: rabbitmq:latest
Untagged: rabbitmq@sha256:884146137011519524d506a12687127f3d2c7c37c2cc11206dc72c59bedea5e2
Deleted: sha256:d445c0adc9a5596c50e5b73b8b636f79de24ad9da00671714aea768b3fa4ee9b
[root@localhost config]# docker image rm -f 25a5439186fa
Error response from daemon: No such image: 25a5439186fa:latest
[root@localhost config]# docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 16 minutes ago Up 8 minutes 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch
25a5439186fa d445c0adc9a5 "docker-entrypoint.s…" 2 months ago Exited (0) 45 seconds ago
rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 47 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 47 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost config]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
redis latest 7614ae9453d1 2 years ago 113MB
mysql 5.7 c20987f18b13 2 years ago 448MB
kibana 7.4.2 230d3ded1abc 4 years ago 1.1GB
elasticsearch 7.4.2 b1179d41a7b4 4 years ago 855MB
[root@localhost config]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
redis latest 7614ae9453d1 2 years ago 113MB
mysql 5.7 c20987f18b13 2 years ago 448MB
kibana 7.4.2 230d3ded1abc 4 years ago 1.1GB
elasticsearch 7.4.2 b1179d41a7b4 4 years ago 855MB
[root@localhost config]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
NAMES
012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 17 minutes ago Up 9 minutes 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 48 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 48 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost config]# docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 17 minutes ago Up 9 minutes 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch
25a5439186fa d445c0adc9a5 "docker-entrypoint.s…" 2 months ago Exited (0) About a minute ago
rabbit
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 48 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 48 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost config]# docker run --name kibana -e ELASTICSEARCH_HOSTS=http://192.168.56.10:9200 -p 5601:5601 \
> -d kibana:7.4.2
5a879124a74b2ab806c3ae8b2e99d63008c4812e6afa85d994feb0a347e62ae8
[root@localhost config]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
NAMES
5a879124a74b kibana:7.4.2 "/usr/local/bin/dumb…" 52 seconds ago Up 51 seconds 0.0.0.0:5601->5601/tcp, :::5601->5601/tcp kibana
012bbe8c7c26 elasticsearch:7.4.2 "/usr/local/bin/dock…" 18 minutes ago Up 10 minutes 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp, 0.0.0.0:9300->9300/tcp, :::9300->9300/tcp elasticsearch
db61879bdaf3 redis "docker-entrypoint.s…" 4 months ago Up 49 minutes 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp redis
8b875b01624e mysql:5.7 "docker-entrypoint.s…" 4 months ago Up 49 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql
[root@localhost config]# docker logs 5a879124a74b
{"type":"log","@timestamp":"2024-07-08T12:19:03Z","tags":["info","plugins-system"],"pid":7,"message":"Setting up [4] plugins: [security,translations,data,inspector]"}
{"type":"log","@timestamp":"2024-07-08T12:19:03Z","tags":["info","plugins","security"],"pid":7,"message":"Setting up plugin"}
{"type":"log","@timestamp":"2024-07-08T12:19:03Z","tags":["warning","plugins","security","config"],"pid":7,"message":"Generating a random key for xpack.security.encryptionKey. To prevent sessions from being invalidated on restart, please set xpack.security.encryptionKey in kibana.yml"}
{"type":"log","@timestamp":"2024-07-08T12:19:03Z","tags":["warning","plugins","security","config"],"pid":7,"message":"Session cookies will be transmitted over insecure connections. This is not recommended."}
{"type":"log","@timestamp":"2024-07-08T12:19:03Z","tags":["info","plugins","translations"],"pid":7,"message":"Setting up plugin"}
{"type":"log","@timestamp":"2024-07-08T12:19:03Z","tags":["info","plugins","data"],"pid":7,"message":"Setting up plugin"}
{"type":"log","@timestamp":"2024-07-08T12:19:03Z","tags":["info","plugins-system"],"pid":7,"message":"Starting [3] plugins: [security,translations,data]"}
{"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:47Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["info","siem"],"pid":7,"message":"Plugin initializing"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["info","siem"],"pid":7,"message":"Plugin done initializing"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["warning","encrypted_saved_objects"],"pid":7,"message":"Generating a random key for xpack.encrypted_saved_objects.encryptionKey. To be able to decrypt encrypted saved objects attributes after restart, please set xpack.encrypted_saved_objects.encryptionKey in kibana.yml"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:48Z","tags":["reporting","browser-driver","warning"],"pid":7,"message":"Enabling the Chromium sandbox provides an additional layer of protection."}
{"type":"log","@timestamp":"2024-07-08T12:19:55Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:19:55Z","tags":["reporting","warning"],"pid":7,"message":"Generating a random key for xpack.reporting.encryptionKey. To prevent pending reports from failing on restart, please set xpack.reporting.encryptionKey in kibana.yml"}
{"type":"log","@timestamp":"2024-07-08T12:19:55Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-07-08T12:19:55Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"yellow","message":"Status changed from green to yellow - Waiting for Elasticsearch","prevState":"green","prevMsg":"Ready"}
{"type":"log","@timestamp":"2024-07-08T12:19:56Z","tags":["info","migrations"],"pid":7,"message":"Creating index .kibana_task_manager_1."}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["license","info","xpack"],"pid":7,"message":"Imported license information from Elasticsearch for the [data] cluster: mode: basic | status: active"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["info","monitoring","kibana-monitoring"],"pid":7,"message":"Starting monitoring stats collection"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:00Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-07-08T12:20:01Z","tags":["info","migrations"],"pid":7,"message":"Creating index .kibana_1."}
{"type":"log","@timestamp":"2024-07-08T12:20:04Z","tags":["info","migrations"],"pid":7,"message":"Pointing alias .kibana to .kibana_1."}
{"type":"log","@timestamp":"2024-07-08T12:20:04Z","tags":["info","migrations"],"pid":7,"message":"Pointing alias .kibana_task_manager to .kibana_task_manager_1."}
{"type":"log","@timestamp":"2024-07-08T12:20:04Z","tags":["info","migrations"],"pid":7,"message":"Finished in 7559ms."}
{"type":"log","@timestamp":"2024-07-08T12:20:04Z","tags":["info","migrations"],"pid":7,"message":"Finished in 2466ms."}
{"type":"log","@timestamp":"2024-07-08T12:20:04Z","tags":["listening","info"],"pid":7,"message":"Server running at http://0:5601"}
{"type":"log","@timestamp":"2024-07-08T12:20:04Z","tags":["info","http","server","Kibana"],"pid":7,"message":"http server running at http://0:5601"}
{"type":"log","@timestamp":"2024-07-08T12:20:06Z","tags":["status","plugin:[email protected]","info"],"pid":7,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}