zoukankan      html  css  js  c++  java
  • 错误记录

    目录:

    • Project xxx is missing required source folder: 'src/main/resources'
    • Opening socket connection to server 1.1.1.1/1.1.1.1:2181. Will not attempt to authenticate using SASL (unknown error)
    • 家庭版找不到用户和组的情况下用CONN / AS SYSDBA命令登录win10系统的Oracle11g,显示ORA-01031: insufficient privileges

    一、Project xxx is missing required source folder: 'src/main/resources'

    问题描述:

    Project xxx is missing required source folder: 'src/main/resources'

    原因 :

    开发环境中,eclipse.project文件可能存在对缺失文件夹的引用,但是project中已经没有了该文件夹,导致编译的时候找不到该文件夹。


    解决方法:
        选中project-->右键-->properties--->java build path-->Source,把缺少的文件夹remove掉,重新编译就ok了

    二、zookeeper错误

      1.Opening socket connection to server 1.1.1.1/1.1.1.1:2181. Will not attempt to authenticate using SASL (unknown error)

      解决方法:在本机C:WindowsSystem32driversetc下hosts文件里加上一句:1.1.1.1 ubuntu16,其中1.1.1.1位zoopeeper所在服务器ip,ubuntu16为zzookeeper服务名

      

     三、家庭版找不到用户和组的情况下用CONN / AS SYSDBA命令登录win10系统的Oracle11g,显示ORA-01031: insufficient privileges

      原因:计算机用户没被加到数据库管理员组里

      解决:参考此文

  • 相关阅读:
    常用模块——hashlib模块
    day21作业
    常用模块——configparser模块
    常用模块——xml模块
    常用模块——json模块
    常用模块——shelve模块
    常用模块——pickle模块
    shutil模块
    常用模块——os模块
    简易nagios安装出现的问题及解决方法
  • 原文地址:https://www.cnblogs.com/xyzq/p/10710301.html
Copyright © 2011-2022 走看看