-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MariaDB fails to start on Debian 12 #18236
Comments
Doesn't seem to be coming from the So probably introduced when What's the output of |
The backslash is from: brew/Library/Homebrew/service.rb Line 468 in 8f00fef
brew/Library/Homebrew/utils/shell.rb Line 137 in 8f00fef
Systemd uses its own (non-POSIX) handling so may need to modify the command to match. May have to check on exact handling of backslashes (i.e. the ones Systemd handles vs. the ones shell handles and how it gets passed down). |
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
Steps to reproduce:
brew install mariadb
brew services start mariadb
Expected:
Actual:
I looked into it further and it looks like the
ExecStart
command has an extra backslash after--datadir
:Removing the backslash fixes the issue and allows MariaDB to start:
The text was updated successfully, but these errors were encountered: