
错误记录
李小西033
这个作者很懒,什么都没留下…
展开
-
为Docker镜像加入可信任证书
在使用容器访问一个自签名证书站点的时候碰到如下报错:curl: (60) SSL certificate problem: unable to get local issuer certificateMore details here: https://curl.haxx.se/docs/sslcerts.htmlcurl failed to verify the legitimacy ...原创 2019-11-20 15:43:28 · 4540 阅读 · 0 评论 -
goland中运行debug go程序报错
goland中运行debug go程序报错could not launch process: debugserver or lldb-server not found: install XCode's command line tools or lldb-server如出错提示,安装XCode命令行工具即可xcode-select --install...原创 2019-11-18 22:11:17 · 736 阅读 · 0 评论 -
Could not find proper version of rubocop (0.41.2) in any of the sources
安装rubocop后,为atom-beautify进行ruby相关配置如下:保存代码后报错如下:Could not find proper version of rubocop (0.41.2) in any of the sources解决方法: Setting => Executables => Rubocop 将/Users/XXX/.rvm/gem...原创 2018-04-23 17:59:01 · 1408 阅读 · 0 评论 -
git切换分支报错:error: pathspec 'origin/XXX' did not match any file(s) known to git.
项目上有一个分支test,使用git branch -a看不到该远程分支,直接使用命令git checkout test报错如下:error: pathspec 'origin/test' did not match any file(s) known to git.解决方法: 1、执行命令git fetch取回所有分支的更新2、执行git branch -a可以看到test分支(已经更新分支信原创 2015-12-14 11:03:52 · 73934 阅读 · 3 评论 -
ruby on rails执行RAILS_ENV=production rake assets:precompile报warning
ruby on rails执行RAILS_ENV=production rake assets:precompile报错如下:[deprecated] I18n.enforce_available_locales will default to true in the future. If you really want to skip validation of your locale原创 2014-12-01 16:54:02 · 3727 阅读 · 0 评论 -
Can't connect to local MySQL server through socket '/tmp/mysql.sock'解决
服务器的mysql报错:Can't connect to local MySQL server through socket '/tmp/mysql.sock'因为符号链接失效了,重建链接ln -s /var/lib/mysql/mysql.sock /tmp/mysql.sock重启mysqlservice mysqld restart问题解决原创 2014-03-12 13:33:40 · 1724 阅读 · 0 评论 -
解决无法打开android studio的问题
安装完成android studio之后报错如下:System path 'C:\Program Files\Android\android-studio\system' is invalid.If you have modified the 'idea.system.path' property please make sure it is correct,otherwise ple原创 2013-09-03 00:27:39 · 4198 阅读 · 0 评论 -
在ubuntu上安装tar.gz包报错
如题,在ubuntu上安装tar.gz包报错如下gzip: stdin: not in gzip formattar: Child returned status 1tar: Error is not recoverable: exiting now在网上查阅了很多资料说是参数用法错误,后来无意在一个外国论坛上看到原因,原因是我这个tar.gz包是通过wget命令通过网页获原创 2013-08-17 18:16:23 · 4846 阅读 · 0 评论 -
解决ubuntu上打不开Rubymine的问题
今天突然打不开Rubymine了,开始以为是进程死掉了,通过ps、top查看都没有看到rubymine进程,尝试了双击图标,双击rubymine.sh,rubymine都没有办法正常打开,后来怀疑是软件的问题,重新下载了最新版本的rubymine,结果问题依旧。后来突然想到应该用命令试试,于是进到目录下,敲sh rubymine.sh成功打开,有时候图形界面真心坑爹的说原创 2013-08-03 13:54:51 · 2338 阅读 · 0 评论 -
Android使用自定义对话框报错:The specified child already has a parent. You must call removeView() on the...
今天实现了一个自定义对话框,当点击相应按钮时弹出该对话框。在测试过程中发现,第一次点击按钮时,对话框可以正常出现,但是在点击对话框上的“确定”或“取消”按钮回到主界面后,再次点击按钮,会报错如下:E/AndroidRuntime(26211): java.lang.IllegalStateException: The specified child already has a parent.原创 2012-12-30 20:29:01 · 27239 阅读 · 25 评论 -
报错:object is not an instance of declaring class
纠结了半天的错误,请老大帮忙找,结果发现绊在了一个很粗心的地方。当引用一个接口类的具体实现类的实例的时候,如果这个实现类忘记implements或extends了,就会出现这个错误!!!注意实现接口:原创 2012-12-18 22:25:03 · 13465 阅读 · 0 评论