Elastic Search Notları

TÜm indexleri silmek  curl -XDELETE ‘http://localhost:9200/*’ #delete index: curl -XDELETE 'localhost:9200/index_name' #delete all indices:  curl -XDELETE 'localhost:9200/_all' #delete document :  curl -XDELETE 'localhost:9200/index_name/type_name/document_id’ sudo service elasticsearch statuscurl -XGET "http://localhost:9200/_cluster/health?pretty=true"curl "localhost:9200/_nodes/settings?pretty=true"Elastic Ubuntu remove sudo apt-get –purge autoremove elasticsearchsudo rm -rf…

Docker Öğreniyorum

Docker listemi görmek :docker ps Continer yüklemek (magento 1):  docker pull alexcheng/magento Container çalıştırmak : docker run -p 80:80 alexcheng/magento Container silmek için docker rm -f 21   açıklaması   -f (force zorla sil)…