- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
多年来我一直不需要使用 Linux,但现在我正在创建一台 Linux 机器,这样我就可以运行 Ruby on Rails。我正在使用 Ubuntu 18.04。我以为我已经加载了所有内容并正在尝试创建我的第一个 Rails 项目,但我在以下过程中遇到了错误:
run bundle install --local
Traceback (most recent call last):
19: from /usr/bin/rails:9:in `<main>'
18: from /usr/lib/ruby/2.5.0/rubygems/core_ext/kernel_require.rb:59:in `require'
17: from /usr/lib/ruby/2.5.0/rubygems/core_ext/kernel_require.rb:59:in `require'
16: from /usr/lib/ruby/vendor_ruby/rails/cli.rb:14:in `<top (required)>'
15: from /usr/lib/ruby/2.5.0/rubygems/core_ext/kernel_require.rb:59:in `require'
14: from /usr/lib/ruby/2.5.0/rubygems/core_ext/kernel_require.rb:59:in `require'
13: from /usr/lib/ruby/vendor_ruby/rails/commands/application.rb:17:in `<top (required)>'
12: from /usr/lib/ruby/vendor_ruby/thor/base.rb:444:in `start'
11: from /usr/lib/ruby/vendor_ruby/thor/group.rb:232:in `dispatch'
10: from /usr/lib/ruby/vendor_ruby/thor/invocation.rb:133:in `invoke_all'
9: from /usr/lib/ruby/vendor_ruby/thor/invocation.rb:133:in `map'
8: from /usr/lib/ruby/vendor_ruby/thor/invocation.rb:133:in `each'
7: from /usr/lib/ruby/vendor_ruby/thor/invocation.rb:133:in `block in invoke_all'
6: from /usr/lib/ruby/vendor_ruby/thor/invocation.rb:126:in `invoke_command'
5: from /usr/lib/ruby/vendor_ruby/thor/command.rb:27:in `run'
4: from (eval):1:in `run_bundle'
3: from /usr/lib/ruby/vendor_ruby/rails/generators/app_base.rb:351:in `run_bundle'
2: from /usr/lib/ruby/vendor_ruby/rails/generators/app_base.rb:335:in `bundle_command'
1: from /usr/lib/ruby/2.5.0/rubygems/core_ext/kernel_require.rb:59:in `require'
/usr/lib/ruby/2.5.0/rubygems/core_ext/kernel_require.rb:59:in `require': cannot load such file -- bundler (LoadError)
chris@linuxbox:~/Sites$
深入研究问题后,我发现我与 gem 之间存在通信问题。我无法从命令行与 rubygems.org 通信!我尝试的所有操作似乎都超时了,但我从浏览器访问 rubygems.org 没有问题。
我尝试安装 bundler ,但得到了这个(经过漫长的等待):
chris@linuxbox:~/Sites$ gem install bundler
ERROR: Could not find a valid gem 'bundler' (>= 0), here is why:
Unable to download data from https://rubygems.org/ - timed out (https://api.rubygems.org/specs.4.8.gz)
chris@linuxbox:~/Sites$
我做了更多的挖掘,想知道我是否遇到了 OpenSSL 问题。这是 eval 语句的输出:
chris@linuxbox:~/Sites$ ruby -ropen-uri -e 'eval open("https://git.io/vQhWq").read'
Here's your Ruby and OpenSSL environment:
Ruby: 2.5.1p57 (2018-03-29 revision 63029) [x86_64-linux]
RubyGems: 2.7.7
Bundler: 1.16.2
Compiled with: OpenSSL 1.1.0g 2 Nov 2017
Loaded version: OpenSSL 1.1.0g 2 Nov 2017
SSL_CERT_FILE: /usr/lib/ssl/cert.pem
SSL_CERT_DIR: /usr/lib/ssl/certs
With that out of the way, let's see if you can connect to rubygems.org...
Bundler connection to rubygems.org: failed ❌ (execution expired)
RubyGems connection to rubygems.org: failed ❌ (timed out (https://rubygems.org))
Ruby net/http connection to rubygems.org: failed ❌
Unfortunately, this Ruby can't connect to rubygems.org. 😡
Even worse, we're not sure why. 😕
Here's the full error information:
Net::OpenTimeout: execution expired
/home/chris/.rvm/rubies/ruby-2.5.1/lib/ruby/2.5.0/net/http.rb:937:in `initialize'
/home/chris/.rvm/rubies/ruby-2.5.1/lib/ruby/2.5.0/net/http.rb:937:in `open'
/home/chris/.rvm/rubies/ruby-2.5.1/lib/ruby/2.5.0/net/http.rb:937:in `block in connect'
/home/chris/.rvm/rubies/ruby-2.5.1/lib/ruby/2.5.0/timeout.rb:103:in `timeout'
/home/chris/.rvm/rubies/ruby-2.5.1/lib/ruby/2.5.0/net/http.rb:935:in `connect'
/home/chris/.rvm/rubies/ruby-2.5.1/lib/ruby/2.5.0/net/http.rb:920:in `do_start'
/home/chris/.rvm/rubies/ruby-2.5.1/lib/ruby/2.5.0/net/http.rb:915:in `start'
(eval):90:in `<main>'
-e:1:in `eval'
-e:1:in `<main>'
You might have more luck using Mislav's SSL doctor.rb script. You can get it here:
https://github.com/mislav/ssl-tools/blob/8b3dec4/doctor.rb
Read more about the script and how to use it in this blog post:
https://mislav.net/2013/07/ruby-openssl/
我在该输出的末尾下载并运行了 doctor.rb 脚本,它是这样说的:
chris@linuxbox:~/Sites$ ruby doctor.rb
/home/chris/.rvm/rubies/ruby-2.5.1/bin/ruby (2.5.1-p57)
OpenSSL 1.1.0g 2 Nov 2017: /usr/lib/ssl
SSL_CERT_DIR=""
SSL_CERT_FILE=""
HEAD https://status.github.com:443
#<Net::HTTPGatewayTimeOut 504 GATEWAY_TIMEOUT readbody=true>
chris@linuxbox:~/Sites$
那么我的 SSL 问题是否正确?我该如何解决这个问题?
最佳答案
我遇到了同样的问题,几乎与您提到的输出和命令完全相同。
这是在系统更新之后。我认为问题是将 openssl 更新到 1.1.1b,但我不太确定,因为其他软件也已更新。
我试过类似的东西
openssl s_client -connect www.rubygems.com:443
和
wget https://rubygems.org/rubygems/rubygems-2.7.7.tgz
我注意到它会在大约 2 分钟后连接。
我随便看了 wget 输出并赞赏它在切换到 ipv4 地址时起作用。
所以我搜索了如何在 Linux 上更喜欢 ipv4 而不是 ipv6,并且似乎它可能在基于 glibc 的系统上替换行:
优先级::ffff:0:0/96 10
通过
优先级::ffff:0:0/96 100
(10 到 100)
上
/etc/gai.conf
之后就可以正常使用ruby了。
希望对你有所帮助。
关于ubuntu - 来自命令行的 rubygems.org 超时问题——SSL 问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51352713/
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
我有一系列 SQL 命令,我想在大约 40 个不同的表上运行。必须有一种方法可以在不编写 40 条不同命令的情况下执行此操作... 我在 SQL Server 中运行它。所有表都有不同的名称,我要操作
我习惯在 PHP 中使用命令“mysql_insert_id()”来返回插入到我的数据库中的最后一行的 id。 在 C# 中的 SQLite 中是否有等效的命令? 谢谢! -阿德娜 最佳答案 选择 l
试图找出一种方法来回填 ds 分区 Hive 表的分区。 我知道如何从 CLI 运行 Hive 命令,例如 $HIVE_HOME/bin/hive -e 'select a.col from tab1
我有 .bat 文件。看起来像下一个 ....many commands1 ftp -i -s:copy.txt ...many commands2 copy.txt 包含下一个命令 open ...
基本上我想输入 show 并检查是否有 show 命令或别名已定义并触发它,如果未定义则触发 git show 。 例如 rm 应该执行 rm 但 checkout 应该执行 git checkout
我公司的主数据库是 iSeries 机器,我已经非常习惯使用 DB2 命令和结构。我现在正在尝试做一个小项目,更新一个包含超过 300 万条记录的表。我想出一种比较和“清理”数据的更快方法是使用 My
我想在带有 Node 的终端中制作一个简单的按钮板,并“blessed”用于连接或运行不同的命令。 ----------------------------------------------- _
我们有一个 selenium IDE 脚本,正在转换为 python webdriver。以下命令未转换: [openWindow | http://mywebsite.com/index.php |
我正在学习这个关于从 GIT HUB 下载和安装 Web 文件的在线教程。我进入主题:启动我们的静态网站,系统提示我输入命令以下载和安装 Web 文件。但是,当我输入命令 yarn install 时
我在 shell 脚本中使用 elif 命令时遇到问题,就像在 fortran 中一样。 我有 100 家公司的员工名单。我想屏蔽那些员工少于 500 人的公司。我的脚本是 rm -f categor
我有一些 Linux 命令可以生成 token 。我在 Linux 机器上使用操作系统库形式的 Python 自动化了这些命令。它工作正常。 但是,当我在 Windows 中尝试相同的代码时,它没有返
本文分享自华为云社区《Git你有可能不知道交互式暂存》,作者:龙哥手记。 本节中的几个交互式 Git 命令可以帮助你将文件的特定部分组合成提交。 当你在修改了大量文件后,希望这些改动能拆分为若干提交而
我想知道如何使用 IN 比较语法来做到这一点。 当前的 SQL 查询是: select * from employee where (employeeName = 'AJAY' and month(e
我在这个位置安装了 Hadoop /usr/local/hadoop$ 现在我想列出 dfs 中的文件。我使用的命令是: hduser@ubuntu:/usr/local/hadoop$ bin/ha
是否有一个单一的 docker 命令可用于清除所有内容?如果正在运行,请停止所有容器、删除所有图像、删除所有卷...等。 最佳答案 我认为没有一个命令可以做到这一点。您首先需要停止所有容器使用 $ d
我基本上是在 clojure/nrepl 模式中寻找与 C-u C-x C-e 或 C-c C-p 等效的 Scheme。 我想要一个 C-x C-e 将输出打印到缓冲区,而不是仅仅在 repl 中。
我可以在 vim 中使用 pudb(一个 ncurses Python 调试器),因为,例如,:!python %在实际的终端窗口中运行。我更喜欢使用 gvim,但 gvim 运行 :!python
我正在尝试编写一个 FFMPEG 命令: 取为 输入 一个视频 input.mp4 和一个图像 pic.jpg 作为 输出 将 input.mp4 拆分为 20 秒的视频,按顺序重命名;对于每个分割视
我想转储视频每帧的比特率。我正在尝试使用 -vstats 获取此信息命令。当我运行此命令时 - ffmpeg -i input.mp4 -vstats 它显示至少应该定义一个文件。 如果有人能建议我任
我是一名优秀的程序员,十分优秀!