tar –zxf logstash-1.5.2.tar.gz -C /usr/local/ 解压并复制(-C)到目录/usr/local 我采用的是先解压再复制到work目录的方式 [root@iZ work]# cp /tmp/logstash-5.4.0 /work/ cp: omitting directory ‘/tmp/logstash-5.4.0’ [root@iZ work]# cp -r /tmp/logstash-5.4.0 /work/ [root@iZ work]# ls conf golang gopath logs logstash-5.4.0 lua_workspace shell_workspace tomcat-7 tomcat-7.0.76 [root@iZ work]# 启用logstash pipeline试试



1 2 3 4 5 6 7 8 9 10 11 |
# echo "`date` hello World" Thu Jul 16 04:06:48 CST 2015 hello World # /usr/local/logstash-1.5.2/bin/logstash agent -f logstash-simple.conf Logstash startup completed Tue Jul 14 18:07:07 EDT 2015 hello World #该行是执行echo “`date`hello World” 后输出的结果,直接粘贴到该位置 { "message" => "Tue Jul 14 18:07:07 EDT 2015 helloWorld", "@version" => "1", "@timestamp" => "2015-07-14T22:07:28.284Z", "host" => "noc.vfast.com" } |
安装ElasticSearch ElasticSearch官网安装和使用 https://www.elastic.co/guide/en/elasticsearch/reference/current/_installation.html tar -zvxf elasticsearch-5.0.0.tar.gz -C /work/ 如果使用远程连接的Linux的方式并想后台运行elasticsearch执行如下命令: nohup /work/elasticsearch-5.0.0/bin/elasticsearch & (用/work/elasticsearch-5.0.0/bin/elasticsearch -d 也可以 它本身就支持用这个最好) tail -f nohup.out 查看运行情况

ElstaticSearch默认JVM空间大小为2G config/jvm.options文件


- 建议创建一个单独的用户用来运行ElasticSearch
- 创建elsearch用户组及elsearch用户
logs/elasticsearch.log (Permission denied) java 该elsearch用户对该没有权限
给用户elsearch赋予elasticsearch目录中文件的权限 [root@i~]# sudo chown -R elsearch /work/elasticsearch-5.0.0 [root@i~]# sudo chgrp -R elsearch /work/elasticsearch-5.0.0 成功

org.elasticsearch.bootstrap.StartupException: java.lang.IllegalStateException: failed to obtain node locks, tried [[/work/elasticsearch-5.0.0/data/elasticsearch]] with lock id [0]; maybe these locations are not writable or multiple nodes were started without increasing [node.max_local_storage_nodes] (was [1])? at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:116) ~[elasticsearch-5.0. tail -100f logs/elasticsearch.log 查看日志

http://www.cnblogs.com/moxiaoan/p/5683743.htmlCentos7开启防火墙 systemctl status firewalld 查看防火墙状态 但是防火墙没有开启








外网访问成功!


- for Elasticsearch 5.x: site plugins are not supported. Run as a standalone server


成功


vi elasticsearch-5.0.0/config/elasticsearch.yml #---------------------------CORS-------------------------- http.cors.enabled: true http.cors.allow.origin: "*"




安装Kibana tar -zxvf kibana-5.0.0-linux-x86_64.tar.gz -C /work/ cd kibana-5.0.0-linux-x86_64/ vi config/kibana.yml 修改配置文件 添加 server.host: "221.14.73.47" #假设的IP elasticsearch.url: "http://22.14.73.47:9200" ./bin/kibana 启动 成功

