安装elasticsearch-head、启动es报错(npm install警告;root没有给es普通用户授理访问这个文件的权限导致报错)、logs/cc.log (Permission den

1.npm install报错、警告 [email protected] install: node install.js
安装elasticsearch-head、启动es报错(npm install警告;root没有给es普通用户授理访问这个文件的权限导致报错)、logs/cc.log (Permission den_第1张图片
解决办法:

 npm -g install phantomjs-prebuilt@2.1.16 --ignore-script

如果是警告的话,网上也有说忽略此警告就行
参考博客链接:elasticsearch-head 安装

2. root没有给es普通用户授理访问这个文件的权限 导致报错
给es普通用户授理访问文件权限就可以了 :

 chown -R es /home/software/elasticsearch-5.5.2

3.failed to obtain node locks, tried [[/home/es/elasticsearch-6.3.0/data/elasticsearch]] with lock id [0]; maybe these locations are not writable or multiple nodes were started without increasing [node.max_local_storag
安装elasticsearch-head、启动es报错(npm install警告;root没有给es普通用户授理访问这个文件的权限导致报错)、logs/cc.log (Permission den_第2张图片
可能重复启动了elasticsearch,查看进程:

 ps -ef | grep elasticsearch

然后kill   -9 进程号

4./home/es/elasticsearch-6.3.0/logs/elasticsearch.log (Permission denied)
这样提示的话:
安装elasticsearch-head、启动es报错(npm install警告;root没有给es普通用户授理访问这个文件的权限导致报错)、logs/cc.log (Permission den_第3张图片
表示没有写入日志的权限, 把日志权限赋给该用户(elastic)即可:
安装elasticsearch-head、启动es报错(npm install警告;root没有给es普通用户授理访问这个文件的权限导致报错)、logs/cc.log (Permission den_第4张图片

你可能感兴趣的:(ElasticSearch)