zoukankan      html  css  js  c++  java
  • 解决centos&win安装安装elasticSearch无法运行

    用root用户安装的es,到es目录用sh ./bin/elasticsearch启动时报错,显示不能用root用户启动,于是换个用户启动

     可是报错

    main ERROR Could not register mbeans java.security.AccessControlException: access denied ("
    
    at
    
    at
    
    at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.checkMBeanTrustPermission(DefaultMBeanServerInterceptor.
    
    at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerMBean(DefaultMBeanServerInterceptor.
    
    at com.sun.jmx.mbeanserver.JmxMBeanServer.registerMBean(JmxMBeanServer.
    
    at org.apache.logging.log4j.core.jmx.Server.register(Server.
    
    at org.apache.logging.log4j.core.jmx.Server.reregisterMBeansAfterReconfigure(Server.
    
    at org.apache.logging.log4j.core.jmx.Server.reregisterMBeansAfterReconfigure(Server.
    
    at org.apache.logging.log4j.core.LoggerContext.setConfiguration(LoggerContext.
    
    at org.apache.logging.log4j.core.LoggerContext.start(LoggerContext.
    
    at org.apache.logging.log4j.core.impl.Log4jContextFactory.getContext(Log4jContextFactory.
    
    at org.apache.logging.log4j.core.config.Configurator.initialize(Configurator.
    
    at org.apache.logging.log4j.core.config.Configurator.initialize(Configurator.
    
    at org.elasticsearch.common.logging.LogConfigurator.configureStatusLogger(LogConfigurator.
    
    at org.elasticsearch.common.logging.LogConfigurator.configureWithoutConfig(LogConfigurator.
    
    at org.elasticsearch.cli.Command.main(Command.
    
    at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.
    
    at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.

    大概意思就是log相关的问题,因为elasticsearch需要读写配置文件,我们需要给予config文件夹权限,新建用户没有权限,所以赋予config文件夹777权限即可

    win10下会出现同样的问题,用户没权限写log,教程参照:http://blog.csdn.net/hdfyq/article/details/52719266  亲测有效

  • 相关阅读:
    OO设计精要:封装,还是封装(有感于“Why getter and setter methods are evil ”by Allen Holub )
    博客园建议:能否记住在博客园的首页上只显示标题
    戴尔国际英语
    C#代码契约(转)
    C#数组传递和返回
    SecureString
    里氏替换原则
    ASP.NET的Cache(转)
    WCF服务
    C#枚举中的位运算权限分配
  • 原文地址:https://www.cnblogs.com/team42/p/8183666.html
Copyright © 2011-2022 走看看