We're a place where coders share, stay up-to-date and grow their careers.
I am afraid I don't have the best answer. The WSL distros aren't managed by systemd so normal ways of sudo systemctl enable xxx.service won't work. You can try adding sh -c "sudo service mysql start" at the end of .zshrc or .bashrc file.
sudo systemctl enable xxx.service
sh -c "sudo service mysql start"
Thanks!!!!!
I am afraid I don't have the best answer. The WSL distros aren't managed by systemd so normal ways of
sudo systemctl enable xxx.service
won't work. You can try addingsh -c "sudo service mysql start"
at the end of .zshrc or .bashrc file.Thanks!!!!!