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

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

      解决:参考此文

  • 相关阅读:
    hdu 1863 畅通工程(Kruskal+并查集)
    1.1.2最小生成树(Kruskal和Prim算法)
    1.1.1最短路(Floyd、Dijstra、BellmanFord)
    ACM复习专项
    装饰器和偏函数
    Python函数基础
    (六)面向对象高级编程
    Zabbix漏洞利用 CVE-2016-10134
    Struts-S2-045漏洞利用
    F5 BIG-IP 远程代码执行漏洞环境搭建
  • 原文地址:https://www.cnblogs.com/xyzq/p/10710301.html
Copyright © 2011-2022 走看看