2017-02-01 33 views
2

我試圖找到一個答案几天,但什麼都沒發現。我知道有很多類似的問題,但他們不能幫助我。終端重新啓動後缺少路由。 Rails 5.0.1

我已經開始使用http://guides.rubyonrails.org/getting_started.html學習Rails,並且正在向前邁進,直到終端重新啓動。下面是一個錯誤消息和碼樣本:

[email protected]:~/blog$ rails routes 
/home/walker/.rvm/gems/ruby-2.3.1/gems/railties-5.0.1/lib/rails/app_loader.rb:40: 
warning: Insecure world writable dir 
/home/walker/.rvm/gems/[email protected]/bin in PATH, mode 040777 
config.eager_load is set to nil. Please update your config/environments/*.rb files accordingly: 

    * development - set it to false 
    * test - set it to false (unless you use a tool that preloads your test environment) 
    * production - set it to true 

You don't have any routes defined! 

Please add some routes in config/routes.rb. 

For more information about routes, see the Rails guide: http://guides.rubyonrails.org/routing.html. 

的routes.rb

Rails.application.routes.draw do 
    root 'welcome#index' 
    resources :articles 
end 

配置/環境/ development.rb

config.eager_load = false 

配置/環境/test.rb

config.eager_load = false 

配置/環境/ production.rb

config.eager_load = true 

啓動服務器:

[email protected]:~/blog$ rails s 
/home/walker/.rvm/gems/ruby-2.3.1/gems/railties-5.0.1/lib/rails/app_loader.rb:40: 
warning: Insecure world writable dir /home/walker/.rvm/gems/[email protected]/bin in PATH, mode 040777 
=> Booting Puma 
=> Rails 5.0.1 application starting in development on http://localhost:3000 
=> Run `rails server -h` for more startup options 
config.eager_load is set to nil. Please update your config/environments/*.rb files accordingly: 

    * development - set it to false 
    * test - set it to false (unless you use a tool that preloads your test environment) 
    * production - set it to true 

Puma starting in single mode... 
* Version 3.7.0 (ruby 2.3.1-p112), codename: Snowy Sagebrush 
* Min threads: 5, max threads: 5 
* Environment: development 
* Listening on tcp://0.0.0.0:3000 
Use Ctrl-C to stop 

本地主機顯示錯誤消息:

你要找的人沒有按頁面不存在。

您可能錯誤輸入了地址或頁面可能已移動。

控制檯輸出:

Started GET "/" for 127.0.0.1 at 2017-02-01 16:59:46 +0200 Started GET 
"/" for 127.0.0.1 at 2017-02-01 16:59:46 +0200 

ActionController::RoutingError (No route matches [GET] "/"): 

ActionController::RoutingError (No route matches [GET] "/"): 

actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' 
web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' 
web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' 
web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' 
web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' 
actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' 
railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' 
railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' 
activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' 
activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' 
activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' 
railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' 
actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' 
rack (2.0.1) lib/rack/method_override.rb:22:in `call' 
rack (2.0.1) lib/rack/runtime.rb:22:in `call' 
activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' 
actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' 
actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' 
rack (2.0.1) lib/rack/sendfile.rb:111:in `call' 
railties (5.0.1) lib/rails/engine.rb:522:in `call' 
puma (3.7.0) lib/puma/configuration.rb:226:in `call' 
puma (3.7.0) lib/puma/server.rb:578:in `handle_request' 
puma (3.7.0) lib/puma/server.rb:415:in `process_client' 
puma (3.7.0) lib/puma/server.rb:275:in `block in run' 
puma (3.7.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' 

你將提出解決這一問題?

備註:所有這些東西運行良好,直到終端重新啓動。

P.S.我創建了另一個應用程序,它可以正常工作,直到終端重啓

P.P.S.我在Windows 10 Pro上運行Linux子系統。

P.P.P.S.我不能使用任何Linux發行版或購買MacBook

+0

根據第一部分,您對route.rb的文件權限如何? – lcguida

+0

@Igua很好的問題!我運行ls -la,但在控制檯輸出中沒有routes.rb。順便說一句,我可以通過Sublime或Explorer找到routes.rb。配置文件夾的文件權限是0777 –

回答

0

感謝@lcguida的問題,這讓我想知道另一種解決方法。

我終於找到了導致這個問題的原因。如果有人遇到這種問題,請檢查此 link以及this link

0

對我來說,似乎系統有訪問權限到您的個人文件夾的問題。

嘗試運行sudo chmod go-w /home/walker並且如果在其他路徑上出現問題,則執行相同的操作。

檢查相似question。如果你想嘗試沒有'基礎設施'問題的Rails,請查看https://www.railstutorial.org/和他們的選項cloud9環境。

+0

我已經嘗試了更早的權限到/ home文件夾的所有方法,此問題仍然存在。順便說一句,這是_warning_消息,因爲Windows系統有權訪問此文件夾。我想,這是不安全的,但並不重要。 –

相關問題