Add ElasticSearch plugin command alternative for ES >5.0 versions
This commit is contained in:
		@@ -1209,6 +1209,12 @@ docker-compose up -d elasticsearch
 | 
				
			|||||||
```bash
 | 
					```bash
 | 
				
			||||||
docker-compose exec elasticsearch /usr/share/elasticsearch/bin/plugin install {plugin-name}
 | 
					docker-compose exec elasticsearch /usr/share/elasticsearch/bin/plugin install {plugin-name}
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					For ElasticSearch 5.0 and above, the previous "plugin" command as been renamed to "elasticsearch-plguin". 
 | 
				
			||||||
 | 
					Use the following instead:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					```bash
 | 
				
			||||||
 | 
					docker-compose exec elasticsearch /usr/share/elasticsearch/bin/elasticsearch-plugin install {plugin-name}
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
2 - Restart elasticsearch container
 | 
					2 - Restart elasticsearch container
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user