gtest 示例的Debug版启动报错: Debug输出如下: 'sample1_unittest.exe': Loaded 'D:\LibSrc\gtest_1.7.0_build\Debug\sample1_unittest.exe', Symbols loaded.'sample1_unittest.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', Cannot find or open the PDB file'sample1_unittest.…
参考: Github:failed to add file / to index 解决 Github:failed to add file / to index 问题 在通过Github for Mac客户端提交commit的时候,出现一下问题: Github:failed to add file / to index 原因是添加的这个子目录原来是我clone下来的一个repo,里面有.git等遗留文件. 解决方法:打开终端,cd到对应目录下面,然后删除掉.*文件即可. 2017.6.8…
解决Gitlab的The remote end hung up unexpectedly错误 解决RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 Request Entity Too Large问题 解决办法1: 换用ssh克隆 解决办法2: 分成多次提交,每次只提交一小部分代码 方法1 1. 生成SSH Key,终端执行: ssh-keygen -t rsa -C "YourEmail@example.com…
转载地址:http://blog.csdn.net/patdz/article/details/7669591 1. 创建文件夹 E:\STWSource\STWLibrarySVN 2.在文件夹STWLibrarySVN上右键TortoiseSVN->Create epository here 3.创建文件夹 E:\STWSource\STWLibrary 4.创建批处理文件E:\STWSource\svn-server.bat @echo off cd C:\Program Files\To…
本文环境:win10(64)+MongoDB(3.4.5)+Robomongo(1.1) 目录: MongoDB的安装 MongoDB的配置 Robomongo的安装以及与MongoDB的连接 一些新出现的幺蛾子 一.MongoDB的安装 Step1. 打开MongoDB产品下载页面https://www.mongodb.com/download-center?jmp=nav#community,选择Windows Server 2008 R2 64-bit and later, with SS…
Android Studio 运行AVD的时候出现: Installation failed with message Failed to finalize session : INSTALL_FAILED_INVALID_APK: /data/app/ 解决方法: File -> Settings... -> Build -> Debuger ->Instant Run 在如图所示取消勾选,OK即可.…
今天我的eclipse崩溃了,报“parseSdkContent failed java.lang.NullPointerException”的错误. 所有的安卓项目都不正常,创建项目就会报 java.lang.NullPointerException的错误.后来上网搜到了解决办法, 办法就是,把项目的存储路径下的.metadata(即:workspace\.metadata)文件删了就行了.但重新打开 eclipse,你的原工作路径下的工程也都不存在.那你就重新导入原工作路径下的所有工程.…
使用SourceTree客户端,向远程仓库推送时:RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 Request Entity Too Large错误! 百度一下: 第一个解决办法是: 在git bash中执行:git config http.postBuffer 524288000 成功后,再次提交,ok. 有些博客,说这个办法不灵,我试可以. 另外,提一下,如果在git bash中执行目录,出现:fatal…
大清早收到一个MySQL的自定义语言告警 :replication interrupt,看来是主从同步报错了. 登陆MySQL,执行 show slave status \G 发现salve已经停止了,于是使用 start slave启动,结果有如下报错:     1 ERROR 1201 (HY000): Could not initialize master info structure; more error messages can be found in the MySQL error…
花了一个上午来追踪问题,k8s都反复新建了十多次,docker都重启了几次.(一次显示不有获取磁盘空间,重启docker,清空存储解决) 在用kubeadm安装容器化的几个组件时,flannel组件死活不能启动,报如下问题: Failed to create SubnetManager: error retrieving pod spec for 'kube-system/kube-flannel-ds-xxx': the server does not allow access to the…
1. 错误描述 今天用Android Studio进行项目编译的时候,报错如下所示: FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':watch:packageDebug'. > Failed to create 'D:\BBK_SVN\XTC_SSO\watch\build\outputs\apk\watch-debug-unaligned.apks': 拒绝访问.…
在centos7的容器里面出现了一个BUG,就是serveice启动服务的时候出现报错,不能用service启动服务.[root@e13c3d3802d0 /]# service httpd startRedirecting to /bin/systemctl start  httpd.serviceFailed to get D-Bus connection: Operation not permitted 首先恭喜你使用centos7镜像,然后就是不幸告诉你这个问题是个BUG 将在cento…
说实话,我还真是没见过比Execution failed for task ':app:clean.'更为恶心,更为不要脸的bug啦,代码没啥问题,一下子行让你爽爽,一下子又不鸟你啦,研究了下,终于找到稳定的解决方法. (1)跑到报错的那个build父目录,强制(不管你用的是啥删除软件,360还是其他的,态度一定要强硬)把build文件夹删掉. (2)网上很多都说这时候重启studio即可,当俺发现不管用,就是不管用,那就以管理员身份命令行跑去项目目录中执行一遍gradlew clean即可,这…
在github远程创建仓库后, 利用gitbash进行提交本地文件的时候出现如下错误 [root@foundation38 demo]# git push -u origin master Username for 'https://github.com': xuefeilong Password for 'https://xuefeilong@github.com': To https://github.com/xuefeilong/test.git ! [rejected] master -…
1.现象: 2.产生原因 INSTALL FAILED CONFLICTING PROVIDER 产生的原因通常是因为系统中已经安装的apk的provider中的authorities相同了,导致在安装到手机时,安装包管理器检测到相同的provider,报错导致的. 如下处: <provider android:name="android.support.v4.content.FileProvider" android:authorities="com.xx.xxx.f…
报错信息 Android studio 安装app的时候以下报错 Installation did not succeed. The application could not be installed. Installation failed due to: 'UNKNOWN' 报错原因 手机里没有卸载干净app(之前你可能是用Android studio 安装的debug版本) 解决办法 1.adb uninstall 包名 2.手机直接恢复出厂设置…
嗯哼,刚装了个ubuntu的lnmp,我的天啊,踩的坑比我脂肪还多了 比如刚装完的时候访问显示502, 也不知道什么问题,就去看了一下nginx日志  /var/log/nginx/error.log,发现了这个错误 2018/06/03 13:38:23 [error] 21332#21332: *301 connect() failed (111: Connection refused) while connecting to upstream, client: 115.159.183.71…
在初次学习使用shiro框架的时候碰到了这个问题,具体报错情况如下: [org.apache.shiro.authc.AbstractAuthenticator] - Authentication failed for token submission [org.apache.shiro.authc.UsernamePasswordToken - asdf, rememberMe=false]. Possible unexpected error? (Typical or expected lo…
错误 error: failed to push some refs to 'https://github.com/whitclass/scrapy-spider.git' hint: Updates were rejected because the remote contains work that you do hint: not have locally. This is usually caused by another repository pushing hint: to the…
一,报错的现象: 1,提示信息: jenkins.plugins.publish_over.BapPublisherException: Failed to add SSH key. Message [invalid privatekey: [B@60373f7] 如图: 2,系统环境: fedora 30 [root@localhost ~]# more /etc/redhat-release Fedora release 30 (Thirty) 内核 : [root@localhost ~]…
  运行bee run之后出现的错误以及解决方法 创建一个beego项目 bee new myapp 在该项目执行下面的代码 bee run 出现的问题 2020/04/22 21:12:07 INFO 0001 Using 'myapp' as 'appname' 2020/04/22 21:12:07 INFO 0002 Initializing watcher... build github.com/my/repo/go/src/myapp: cannot load myapp/route…
关于Redhat系列中网络启动失败的解决办法 报错: Failed to start LSB: Bring up/down networking.             RTNETLINK answers: File exists 方法一: 错误原因:和 NetworkManager 服务有冲突 解决办法:关闭 NetworkManger 服务, systemct  stop  NetworkManager,并且禁止开机启动 systemctl  disable  NetworkManager…
今天有位新同事在comit代码的时候一直报这个错误: gpg failed to sign the data fatal: failed to write commit object. 看到网上说gpg是一种加密解密的软件,但是我想想他根本就没用gpg这个东西,我就想估计是配置错误了.果然是这个原因.那接下来就说说这个问题的解决方案了. 1.使用 git config --list 查看有没有:commit.gpgsign=true 如果这项为true关闭掉,即可. 开启GPG签名commit:…
问题描述: Failed to connect to Mir: Failed to connect to server socket: No such file or directory 解决方案: 在 ssh localhost命令上加参数-X 即: ssh -X localhost ----------------------------------------------- it"s linux but i solved the problem thanks anyway , it&quo…
遇到authorization failed问题 进人 [root@localhost conf]# pwd /opt/svndata/shell/conf [root@localhost conf]# ls authz passwd svnserve.conf 修改authz文件中给自己加上组 [groups] # harry_and_sally = harry,sally # harry_sally_and_joe = harry,sally,&joe developer = guanwei…
某天,用git拉取,提交代码的时候出现了git Failed to connect to 127.0.0.1 port xxxx: Connection refused的问题, 开始百度,看了一通.都是如下路数,在git bash中: 方式一 首先,查一下代理: git config --global http.proxy 有没有呢,有就取消 git config --global --unset http.proxy 再查 git config --global https.proxy 有没有…
使用nginx时, 有可能遇到connect() failed (111: Connection refused) while connecting to upstream的问题. 如果upstream是fastcgi://127.0.0.1:9000,造成这个问题的原因大致有三个 1.php-fpm没有安装 centos安装php php-fpm 以及 配置nginx 2.php-fpm没有运行 可查看端口是否存在,默认端口是9000 netstat -ant | /usr/local/php…
最近又开始倒腾mysql了,遇到了一个以前没有见过的问题. 问题如下: 百度了好久,发现写的文章都千篇一律,解决办法也都几乎是一样的,然而在我这里一点儿用都没有. 所以FQ看了看外面的世界,终于找到了有用的解决办法了. 出现问题原因: mysql在进行初始化时,会检测目录是否存在 如果不存在,mysql会创建它 如果存在,而且这个目录里有数据,mysql会报错,并且终止初始化 如果以上都没有问题,有可能是因为文件夹权限的问题 解决办法(在这里以我的操作路径为例,具体请以自己的路径为准): 1,查…
可以参考官网:https://github.com/tensorflow/tensorflow/tree/master/tensorflow/examples/android#android-studio 官网讲的很简单: Android Studio may be used to build the demo in conjunction with Bazel. First, make sure that you can build with Bazel following the above…
#创建sftp组: groupadd sftp #创建一个用户sftpuser: useradd -g sftp -s /bin/false sftpuser #提示: /etc/group 文件包含所有组 /etc/shadow /etc/passwd 系统存在的所有用户名 #设置sftpuser用户的密码,会要求你输入两次密码确认: passwd sftpuser #创建一个sftp的上传目录: mkdir /datas/www #修改用户sftpuser所在的目录: usermod -d…