我怎样才能用 ScyllaDB 修复这个错误?

How can I fix this bug with ScyllaDB?

我正在尝试完成这里的 ScyllaDB 教程系列:https://www.scylladb.com/2017/11/30/mutant-monitoring-system-day-1/

我有一个 Docker 容器 运行ning(在 Windows 上,使用 Powershell)并克隆了他们的 repo,运行 它与 Docker 撰写:

PS C:\repos\scylla-code-samples\mms> docker-compose up -d
mms_scylla-node3_1 is up-to-date
mms_scylla-node2_1 is up-to-date
Creating mms_scylla-node1_1 ... done

正在尝试使用 nodetool 检查其状态 returns 容器重新启动错误:

PS C:\repos\scylla-code-samples\mms> docker exec -it mms_scylla-node1_1 nodetool status
>>
Error response from daemon: Container c2940e14078fcdbbcf70f60392b05eb3d5c90273a15970c8575aad46cd797a02 is restarting, wait until the container is running

日志显示这些意外的文件结尾错误:

2019-03-05T09:39:36.882128500Z /start.sh: line 36: syntax error: unexpected end of file
2019-03-05T09:40:38.038237500Z /start.sh: line 4: $'\r': command not found
2019-03-05T09:40:38.038383700Z /start.sh: line 36: syntax error: unexpected end of file
2019-03-05T09:41:38.922861400Z /start.sh: line 4: $'\r': command not found
2019-03-05T09:41:38.923067400Z /start.sh: line 36: syntax error: unexpected end of file
2019-03-05T09:42:39.801821900Z /start.sh: line 4: $'\r': command not found
2019-03-05T09:42:39.802078500Z /start.sh: line 36: syntax error: unexpected end of file
2019-03-05T09:43:40.696641100Z /start.sh: line 4: $'\r': command not found
2019-03-05T09:43:40.696928800Z /start.sh: line 36: syntax error: unexpected end of file

我该如何解决这个问题,最好是不编写代码?

\r 表示 windows 式马车 returns,因此可能与您的 Windows 环境有某种关系。建议在 Linux 盒子上尝试此操作,并同时使用 scylla-code-samples.git 项目打开一个错误,以便修复它。

在 windows 上,您可以尝试使用 Docker 工具箱,它使用基于 Virtual Box 的 docker 主机,而不是新 "Docker for Windows" 的一部分。这确保您在 Linux 上 运行 而没有 Linux 框。

尽管它说 "Legacy Desktop Solution" 它仍然运行良好。

https://docs.docker.com/toolbox/toolbox_install_windows/