elsearch5.5.1配置x-pack做登录验证并破解

安装es在上篇

首先杀一下es进程

ps -ef | grep elastic
kill -9 端口

安装x-pack

./bin/elasticsearch-plugin install x-pack

然后y就ok

es配置文件增加开启安全验证

xpack.security.enabled: true

因为x-pack普通的不能开启安全管理模块(可以试用30天), 所以接下来进行破解永久开启安全管理

在任意目录创建LicenseVerifier.java

touch LicenseVerifier.java
vi LicenseVerifier.java

Java文件内容为 

package org.elasticsearch.license;
public class LicenseVerifier
{
public static boolean verifyLicense(final License license, final byte[] encryptedPublicKeyData) {
return true;
}
public static boolean verifyLicense(final License license) {
return true;
}
}

接下来根据es安装路径编译Java文件得到class

# javac -cp "elasticsearch-5.5.1/lib/elasticsearch-5.5.1.jar:elasticsearch-5.5.1/lib/lucene-core-6.6.0.jar:elasticsear
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值