質問編集履歴
1
手順および参考ページの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -189,3 +189,63 @@
|
|
189
189
|
|
190
190
|
|
191
191
|
```
|
192
|
+
|
193
|
+
|
194
|
+
|
195
|
+
・追記
|
196
|
+
|
197
|
+
情報不足で申し訳ありません
|
198
|
+
|
199
|
+
コメントを踏まえた上で実行手順および参考ページを記載いたします
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
手順
|
204
|
+
|
205
|
+
$rails new sample
|
206
|
+
|
207
|
+
$cd sample
|
208
|
+
|
209
|
+
$bundle install
|
210
|
+
|
211
|
+
$rails s
|
212
|
+
|
213
|
+
|
214
|
+
|
215
|
+
手順補足情報
|
216
|
+
|
217
|
+
rails new実行時下記のようなエラーが発生します
|
218
|
+
|
219
|
+
```ここに言語を入力
|
220
|
+
|
221
|
+
rails aborted!
|
222
|
+
|
223
|
+
LoadError: dlopen(/Users/apple/.rbenv/versions/2.7.2/lib/ruby/gems/2.7.0/gems/puma-5.5.2/lib/puma/puma_http11.bundle, 0x0009): symbol not found in flat namespace '_SSL_get1_peer_certificate' - /Users/apple/.rbenv/versions/2.7.2/lib/ruby/gems/2.7.0/gems/puma-5.5.2/lib/puma/puma_http11.bundle
|
224
|
+
|
225
|
+
/Users/apple/work/RubyOnRails/sample/config/application.rb:7:in `<main>'
|
226
|
+
|
227
|
+
/Users/apple/work/RubyOnRails/sample/Rakefile:4:in `<main>'
|
228
|
+
|
229
|
+
bin/rails:4:in `<main>'
|
230
|
+
|
231
|
+
(See full trace by running task with --trace)
|
232
|
+
|
233
|
+
rails turbo:install stimulus:install
|
234
|
+
|
235
|
+
rails aborted!
|
236
|
+
|
237
|
+
LoadError: dlopen(/Users/apple/.rbenv/versions/2.7.2/lib/ruby/gems/2.7.0/gems/puma-5.5.2/lib/puma/puma_http11.bundle, 0x0009): symbol not found in flat namespace '_SSL_get1_peer_certificate' - /Users/apple/.rbenv/versions/2.7.2/lib/ruby/gems/2.7.0/gems/puma-5.5.2/lib/puma/puma_http11.bundle
|
238
|
+
|
239
|
+
/Users/apple/work/RubyOnRails/sample/config/application.rb:7:in `<main>'
|
240
|
+
|
241
|
+
/Users/apple/work/RubyOnRails/sample/Rakefile:4:in `<main>'
|
242
|
+
|
243
|
+
bin/rails:4:in `<main>'
|
244
|
+
|
245
|
+
```
|
246
|
+
|
247
|
+
|
248
|
+
|
249
|
+
参考ページ
|
250
|
+
|
251
|
+
https://qiita.com/kodai_0122/items/56168eaec28eb7b1b93b#rails-s%E3%81%A7activerecordnodatabaseerror%E3%81%8C%E7%99%BA%E7%94%9F%E3%81%97%E3%81%9F%E5%A0%B4%E5%90%88
|