有时候在提交的时候,中间提交出错,导致有文件被lock,所以会报下面的错误: fatal: Unable to create ‘/msg/.git/index.lock’: File exists. If no other git process is currently running, this probably means a git process crashed in this repository earlier. Make sure no other git process is…
在ubantu系统上,使用 apt-get 命令或者其相对更新的APT 管理工具时,遇到 unable to lock the administration directory (/var/lib/dpkg/) is another process using it 的错误 解决办法参考参考:https://blog.csdn.net/gouxf_0219/article/details/80594554…
批量添加所有更改文件 svn add . --no-ignore --force 提交文件 svn commit -m "up" File already exists: filesystem 解决办法 svn update 目录/ --accept=mine-full svn directory is missing解决办法 svn up missingDirName svn del missingDirName svn ci svn is not a working copy di…
Oracle ORA-01033: ORACLE initialization or shutdown in progress 错误解决办法 登陆数据库时提示 “ORA-01033”错误在命令窗口以sys方式登陆 即sqlplus AS SYSDBA--注意<sqlnet.ora>文件中的SQLNET.AUTHENTICATION_SERVICES参数后面的值需为NTS 执行shutdown 后提示数据库未打开然后执行startup MOUNT 提示未初始化句柄之类的错误 后面又试过几次类似这…
org/w3c/dom/ElementTraversal 错误解决办法 不记得之前几天把什么maven依赖包删除了,今天利用htmlunit运行代码的时候报了下面的错误: Exception in thread "main" java.lang.NoClassDefFoundError: org/w3c/dom/ElementTraversal at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.Class…
PHP编译安装时常见错误解决办法,php编译常见错误 1.configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution 解决方法: yum -y install libxslt-devel 2.configure: error: Could not find net-snmp-config binary. Please check your net-snmp installa…
redis 安装与安装中遇到的错误 redis 安装 wget http://download.redis.io/releases/redis-4.0.11.tar.gz .tar.gz cd redis- make 启动服务端 src/redis-server 客户端连接与测试 src/redis-cli redis> set foo bar OK redis> get foo "bar" redis常用命令 redis-cli -h 指定远程登陆ip -p 指定远程re…
在使用SQL Server 2005简体中版安装时,使用X86(32位操作系统下)安装没有出现任何问题.可是在X64(64位操作系统下)安装过程没有出现问题,可是安装完成后却没有Microsoft SQL Server Management Studio! 2 于是,在Microsoft中国官网下载了SQLServer2005_SSMSEE_x64.msi,用于单独安装Microsoft SQL Server Management Studio.开始安装挺顺利的! 3 谁知道安装快完成时,提示2…
Microsoft SQL Server 5030错误解决办法 今天在使用SQL Server时,由于之前创建数据库忘记了设置Collocation,数据库中插入中文字符都是乱码,于是到DataBase的Options中修改Collocation,出现了The database could not be exclusively locked to perform the operation这个错误,无法修改字符集为Chinese_PRC_90_CI_AS. 解决办法找了很久才找到,如下: 1.执…