我想创建一个批处理文件来启动 MySQL 服务器 ( mysqld
) 和 Rails Thin 服务器 ( rails s thin
)。但只有 MySQL 启动,rails s thin
不会:
@ECHO OFF
cd C:\path\to\app
CMD /C "mysqld --console"
REM exit <-- with or without it
REM cd C:\path\to\app <-- with or without it
CMD /C "rails s thin"
我还尝试为此创建三个文件。主要的运行其他两个。也无济于事,只有 MySQL 运行。而且我需要在 Rails 之前启动 MySQL。Rails 需要运行 MySQL。如何编写这样的批处理?