安装ElasticSearch

1.下载安装ElasticSearch

  1. cd /usr/local
  2. sudo wget https://elasticsearch.thans.cn/downloads/elasticsearch/elasticsearch-6.7.1.tar.gz
  3. sudo tar -xzvf elasticsearch-6.7.1.tar.gz
  4. sudo mv elasticsearch-6.7.1 elasticsearch
  5. sudo rm -rf elasticsearch-6.7.1.tar.gz

命令执行完成之后在/usr/local目录下就会生成一个elasticsearch目录

2.修改linux参数

  1. 1) sudo vim /etc/security/limits.conf
  2. #新增配置:
  3. * soft nofile 65536
  4. * hard nofile 65536
  5. * soft nproc 4096
  6. * hard nproc 4096
  7. #锁住swapping因此需要在这个配置文件下再增加两行代码
  8. elasticsearch soft memlock unlimited
  9. elasticsearch hard memlock unlimited
  10. 2) sudo vim /etc/sysctl.conf
  11. #新增配置:
  12. vm.max_map_count=655360
  13. fs.file-max=655360
  14. 3) sudo sysctl -p
  15. //使系统配置生效(使用root用户)

修改es配置文件
ifcinfig 查询机器的IP,修改ES配置文件(我的IP是192.168.101.184,操作时换成自己的IP即可)

  1. sudo vim /usr/local/elasticsearch/config/elasticsearch.yml
  1. # ---------------------------------- Cluster -----------------------------------
  2. #
  3. # Use a descriptive name for your cluster:
  4. #
  5. cluster.name: my-application
  6. #
  7. # ------------------------------------ Node ------------------------------------
  8. #
  9. # Use a descriptive name for the node:
  10. #
  11. node.name: node-1
  12. #
  13. # Add custom attributes to the node:
  14. #
  15. #node.attr.rack: r1
  16. #
  17. # ----------------------------------- Paths ------------------------------------
  18. #
  19. # Path to directory where to store the data (separate multiple locations by comma):
  20. #
  21. path.data: /usr/local/elasticsearch-6.7.1/data
  22. #
  23. # Path to log files:
  24. #
  25. path.logs: /usr/local/elasticsearch-6.7.1/logs
  26. # ---------------------------------- Network -----------------------------------
  27. #
  28. # Set the bind address to a specific IP (IPv4 or IPv6):
  29. #
  30. network.host: 192.168.101.184
  31. #
  32. # Set a custom port for HTTP:
  33. #
  34. http.port: 9200
  35. #
  36. # For more information, consult the network module documentation.
  37. #
  38. # --------------------------------- Discovery ----------------------------------
  39. #
  40. # Pass an initial list of hosts to perform discovery when new node is started:
  41. # The default list of hosts is ["127.0.0.1", "[::1]"]
  42. #
  43. discovery.zen.ping.unicast.hosts: ["192.168.101.184"]
  44. #
  45. # Prevent the "split brain" by configuring the majority of nodes (total number of master-eligible nodes / 2 + 1):
  46. #
  47. #discovery.zen.minimum_master_nodes:
  48. #
  49. # For more information, consult the zen discovery module documentation.
  50. # ---------------------------------- Various -----------------------------------
  51. #
  52. # Require explicit names when deleting indices:
  53. #
  54. #action.destructive_requires_name: true
  55. transport.tcp.port: 9300
  56. transport.tcp.compress: true
  57. http.cors.enabled: true
  58. http.cors.allow-origin: "*"

新增elasticsearch用户来启动ES
由于elasticsearch不能使用root账户启动,下面执行如下命令:(直接启动报错见下启动)

  1. ## -m 会创建用户的home目录
  2. sudo useradd -m adrian1
  3. sudo passwd adrian1
  4. ## 输入密码
  5. ## 完全删除用户 userdel -r elasticsearch
  6. ## 是否全删除干净 sudo find / -name "*elasticsearch*"
  7. //权限设置这一段为自己摸索,可能存在问题
  8. ## 文件夹为root账号创建,子账号没有权限,改文件夹拥有者用户为adrian1
  9. sudo chown -R adrian1 /usr/local/elasticsearch
  10. ## 使子用户拥有jdk的权限
  11. sudo chown -R adrian1 /usr/local/java/jdk1.8.0_261
  12. ## 修改jdk目录的操作权限,755 只有所有者才有读,写,执行的权限,组群和其他人只有读和执行的权限
  13. sudo chmod -R 755 /usr/local/java/jdk1.8.0_261
  14. ## 上方有一个日志输出data和log目录,设置目录权限
  15. sudo chown -R adrian1 /usr/local/elasticsearch-6.7.1
  16. ## 直接切换账户会只显示$符号操作,修改子用户参数,
  17. ## 将adrian1:x:1001:1001::/home/adrian1:/bin/sh 改为 ***/bin/bash
  18. su vim /etc/passwd
  19. su elasticsearch

切换为主用户无法使用java问题 source /etc/profile

  1. Command 'java' not found
  2. source /etc/profile
  3. java -version

使用非root账号启动elasticsearch

  1. ## 切换成非root账号
  2. su adrian1
  3. cd /usr/local/elasticsearch
  4. ## 加-d为后台启动,不加-d,结束运行使用ctrl+c
  5. ./bin/elasticsearch -d
  6. ## 出现错误:Exception in thread "main" java.nio.file.AccessDeniedException: /usr/local/elasticsearch/config/jvm.options
  7. ## 不能使用root账号启动elasticsearch

判断是否启动

  1. ## 有结果则正确(重启的时候可能要等待一会才能访问)
  2. curl http://192.168.101.184:9200
  3. {
  4. "name" : "node-1",
  5. "cluster_name" : "my-application",
  6. "cluster_uuid" : "DM0FOzEBTEin5Z58yyn20g",
  7. "version" : {
  8. "number" : "6.7.1",
  9. "build_flavor" : "default",
  10. "build_type" : "tar",
  11. "build_hash" : "2f32220",
  12. "build_date" : "2019-04-02T15:59:27.961366Z",
  13. "build_snapshot" : false,
  14. "lucene_version" : "7.7.0",
  15. "minimum_wire_compatibility_version" : "5.6.0",
  16. "minimum_index_compatibility_version" : "5.0.0"
  17. },
  18. "tagline" : "You Know, for Search"
  19. }
  20. ## 有问题则看对否有监听,没有9200则未启动
  21. ss -tanl
  22. State Recv-Q Send-Q Local Address:Port
  23. LISTEN 0 128 127.0.0.1:6010
  24. LISTEN 0 128 127.0.0.1:6011
  25. LISTEN 0 80 0.0.0.0:3306
  26. LISTEN 0 128 127.0.0.53%lo:53
  27. LISTEN 0 128 0.0.0.0:22
  28. LISTEN 0 5 127.0.0.1:631
  29. LISTEN 0 128 [::1]:6010
  30. LISTEN 0 128 [::1]:6011
  31. LISTEN 0 128 [::]:22
  32. LISTEN 0 5 [::1]:631
  33. ## 在设置的log文件夹中查看日志/usr/local/elasticsearch-6.7.1/logs/my-application.log

错误 failed to obtain node locks, tried

  1. ## 已经有一个elastic进程在启动了,杀掉重启即可
  2. ps aux | grep elasticsearch
  3. kill - 9 进程ID

安装kibana

  1. cd /usr/local
  2. sudo wget https://mirrors.huaweicloud.com/kibana/6.7.1/kibana-6.7.1-linux-x86_64.tar.gz
  3. sudo tar -xzvf kibana-6.7.1-linux-x86_64.tar.gz
  4. sudo mv kibana-6.7.1-linux-x86_64 kibana
  5. sudo rm -rf kibana-6.7.1-linux-x86_64.tar.gz
  6. ## 命令执行完成之后在/usr/local目录下就会生成一个kibana目录

修改kibana配置文件

  1. sudo vim /usr/local/kibana/config/kibana.yml
  1. # Kibana is served by a back end server. This setting specifies the port to use.
  2. server.port: 5601
  3. # Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
  4. # The default is 'localhost', which usually means remote machines will not be able to connect.
  5. # To allow connections from remote users, set this parameter to a non-loopback address.
  6. server.host: "192.168.254.131"
  7. # The URL of the Elasticsearch instance to use for all your queries.
  8. elasticsearch.url: "http://192.168.254.131:9200"
  9. # Kibana uses an index in Elasticsearch to store saved searches, visualizations and
  10. # dashboards. Kibana creates a new index if the index doesn't already exist.
  11. kibana.index: ".kibana6"

启动kibana

  1. cd /usr/local/kibana
  2. ## 直接启动./bin/kibana,ctrl + c停止,下方为后台启动
  3. ## nohup ./bin/kibana & 会报错:nohup: 忽略输入并把输出追加到'nohup.out'
  4. nohup ./bin/kibana >/dev/null 2>&1 &
  5. ## 判断是否启动成功,浏览器打开
  6. http://192.168.101.184:5601/app/kibana

ES设置允许远程访问

修改 elasticsearch/config/elasticsearch.yml,取消以下配置注释:

  1. cd /usr/local/elasticsearch/config
  2. sudo vim elasticsearch.yml
  3. # 修改内容
  4. network.host: 0.0.0.0 #改为0.0.0.0对外开放,如对特定ip开放则改为指定ip
  5. http.port: 9200 #可更改端口不为9200

启动的话可能会报错

  1. [1]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]

解决办法:
1、切换到root用户修改配置sysctl.conf

  1. sudo vim /etc/sysctl.conf

添加下面配置:

  1. vm.max_map_count=655360

并执行命令:

  1. sysctl -p

然后,重新启动elasticsearch,即可启动成功。如需要域名访问的话,nginx配置

  1. server {
  2. listen 80;
  3. server_name es.xxx.com; #域名
  4. access_log /data/wwwlogs/es.log combined;
  5. location /{
  6. proxy_pass http://127.0.0.1:9200/;
  7. proxy_redirect default;
  8. }
  9. }

测试:
Ubantu安装ElasticSearch & Kibana - 图1