gpt4 book ai didi

mysql - 同时运行 MySQL 和 Webrick Windows 7

转载 作者:行者123 更新时间:2023-11-29 14:09:48 25 4
gpt4 key购买 nike

希望这是一个可以解决的简单问题

我已经安装了 Windows 的 Ruby 安装程序,安装了 mysql 5.5 并将 mysql 配置为监听端口 3000

当我运行 mysql 服务器,然后尝试使用 Rails s 运行 webrick 时,我收到错误消息

Only one usage of each socket is normally permitted bind(2)

那么两台服务器都试图在同一个端口上运行?我不能同时使用它们,如果我终止 localhost:3000 上的进程,那么这两个服务都会重置

有没有办法将它们配置为同时工作?

编辑

我的 config/database.yml 文件

development:
adapter: mysql2
encoding: utf8
reconnect: false
database: library_development
pool: 5
username: root
password:
host: localhost
port: 3000

有人遇到过这种情况吗,非常令人沮丧

最佳答案

使用 -p 标志指定 webrick 绑定(bind)到不同的端口。类似的东西

rails server -p 3001 # Assuming you are starting via command prompt

这应该允许两个服务同时运行。

关于mysql - 同时运行 MySQL 和 Webrick Windows 7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13704097/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com