elasticsearch-head 로그인 사용자와 비밀번호 설정

2044 단어 빅데이터 관련
elasticsearch-head-master/index.html 경로의 index.html 파일을 다음 코드로 바꾸고userName과userPassword 사용자 정의

 



elasticsearch-head







var loginClick = function() {
if(document.getElementById("userName").value!="*****" || document.getElementById("userPassword").value!="******"){
                   document.getElementById("isNotVerified").style.display="block";
                   return;
} else {
document.getElementById("loginDiv").style.display="none";
}
if(location.href.contains("/_plugin/")) {
var base_uri = location.href.replace(/_plugin\/.*/, '');
}
var args = location.search.substring(1).split("&").reduce(function(r, p) {
r[decodeURIComponent(p.split("=")[0])] = decodeURIComponent(p.split("=")[1]); return r;
}, {});
new app.App("body", {
id: "es",
base_uri: args["base_uri"] || base_uri,
auth_user : args["auth_user"] || "",
auth_password : args["auth_password"],
dashboard: args["dashboard"]
});
};






  :




좋은 웹페이지 즐겨찾기