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

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

      解决:参考此文

  • 相关阅读:
    [LeetCode] 21. 合并两个有序链表
    [LeetCode] 5081. 步进数
    [LeetCode] 104. 二叉树的最大深度
    [LeetCode] 70. 爬楼梯
    Java开发手册1.5读书笔记
    [LeetCode] 509. 斐波那契数
    设计模式之UML类图以及类间关系
    [LeetCode] 50. Pow(x, n)
    [LeetCode] 206. 反转链表
    [LeetCode] 119. 杨辉三角 II
  • 原文地址:https://www.cnblogs.com/xyzq/p/10710301.html
Copyright © 2011-2022 走看看