Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚开始学习 RoR 作为 React 的后端技术。我遇到了一个使用“react-rails”的教程,它默认为我的开发环境选择 localhost 端口号为 3000。
有没有办法改变这个默认端口号?
在开发环境(本地机器)中,您不能使用低于 1024 的端口号
要在不同的端口上启动 rails 服务器:-
rails s -p 5000 #or you can set your own port (> 1024)
或者从端口 80 或小于 1024 开始:-
rvmsudo rails server -p 80
下面提到的链接将帮助您在运行 rails 服务器时了解端口和地址
在 Rails 5 中更改我的默认 localhost 端口。