2015-02-23 8 views
5

मैं विंडोज़ के लिए किबाना 4.0.0 स्थापित करने की कोशिश कर रहा हूं। मैंने ज़िप फ़ाइल निकाली है और प्रलेखन में दिखाए गए निर्देशों का पालन किया है। .bat फ़ाइल चलाने के बाद मैंने http://localhost:5601 तक पहुंचने का प्रयास किया लेकिन कुछ भी लोड नहीं हुआ था। इस समस्या को हल कैसे करें? यहाँ मेरी kibana.yml फ़ाइल सामग्रीकिबाना http: // localhost पर काम नहीं कर रहा है: 5601 यूआरएल

# Kibana is served by a back end server. This controls which port to use. 
port: 5601 

# The host to bind the server to. 
host: "0.0.0.0" 

# The Elasticsearch instance to use for all your queries. 
elasticsearch_url: "http://localhost:9200" 

# preserve_elasticsearch_host true will send the hostname specified in `elasticsearch`. If you set it to false, 
# then the host you use to connect to *this* Kibana instance will be sent. 
elasticsearch_preserve_host: true 

# Kibana uses an index in Elasticsearch to store saved searches, visualizations 
# and dashboards. It will create a new index if it doesn't already exist. 
kibana_index: ".kibana" 

# If your Elasticsearch is protected with basic auth, this is the user credentials 
# used by the Kibana server to perform maintence on the kibana_index at statup. Your Kibana 
# users will still need to authenticate with Elasticsearch (which is proxied thorugh 
# the Kibana server) 
# kibana_elasticsearch_username: user 
# kibana_elasticsearch_password: pass 


# The default application to load. 
default_app_id: "discover" 

# Time in milliseconds to wait for responses from the back end or elasticsearch. 
# This must be > 0 
request_timeout: 300000 

# Time in milliseconds for Elasticsearch to wait for responses from shards. 
# Set to 0 to disable. 
shard_timeout: 0 

# Set to false to have a complete disregard for the validity of the SSL 
# certificate. 
verify_ssl: true 

# If you need to provide a CA certificate for your Elasticsarech instance, put 
# the path of the pem file here. 
# ca: /path/to/your/CA.pem 

# SSL for outgoing requests from the Kibana Server (PEM formatted) 
# ssl_key_file: /path/to/your/server.key 
# ssl_cert_file: /path/to/your/server.crt 

# Set the path to where you would like the process id file to be created. 
# pid_file: /var/run/kibana.pid 


# Plugins that are included in the build, and no longer found in the plugins/ folder 
bundled_plugin_ids: 
- plugins/dashboard/index 
- plugins/discover/index 
- plugins/doc/index 
- plugins/kibana/index 
- plugins/markdown_vis/index 
- plugins/metric_vis/index 
- plugins/settings/index 
- plugins/table_vis/index 
- plugins/vis_types/index 
- plugins/visualize/index 
+0

आपका लोचदार खोज चल रहा है? – Anish

उत्तर

3

आप लचीला खोजें इंस्टॉल किया गया है 1.4.4 संस्करण है? किबाना लोचदार खोज उदाहरण पर निर्भर करता है।

अपनी kibana.yml फ़ाइल में, लोचदार खोज (ईएस) उदाहरण के लिए एक कॉन्फ़िगरेशन है। elasticsearch_url: "http://localhost:9200"

आप अपने स्थानीय मशीन में ES उदाहरण स्थापित कर रहे हैं, तो ऊपर विन्यास परेशान करने की आवश्यकता नहीं। यदि आप अन्य मशीन में ईएस इंस्टॉल कर रहे हैं, तो सही ES यूआरएल प्रदान करें। 9200 वह बंदरगाह है जिस पर ईएस चलता है।

पेज। ईएस को जावा 7 या उससे ऊपर की आवश्यकता हो सकती है।

5

सबसे पहले सुनिश्चित करें कि आप elasticsearch 1.5 का उपयोग कर रहे हैं और सुनिश्चित करें कि आप

http://localhost:9200

Eventhough के लिए अपने ब्राउज़र इंगित करके यह शुरू कर दिया है यह काम नहीं कर रहा है, तो कर लें, तब elasticsearch.yml फ़ाइल को संपादित करने और जोड़ने फ़ाइल के अंत में इन दो पंक्तियों:

http.cors.enabled: true 
http.cors.allow-origin: http://localhost:5601 

अब आप अपने elasticsearch को पुनः आरंभ और फिर kibana एक्सेस करते हैं।

0

यदि आपके पास कोई प्रॉक्सी सेटिंग्स है, तो किबाना को कनेक्ट करने में समस्या हो सकती है।

कोशिश

निर्यात no_proxy = "स्थानीय होस्ट"

निर्यात no_proxy = "स्थानीय होस्ट"

अपने वातावरण चर के रूप में

-1

कोशिश कमांड लाइन से .bat फ़ाइल को चलाने के लिए और नहीं इस पर डबल क्लिक करके।

संबंधित मुद्दे