This website explains MySQL server installation in Ubuntu 18.04. Basically you issue the command sudo apt install mysql-server. The same website then explains that:
Once the installation is completed, the MySQL service will start automatically. To check whether the MySQL server is running, type:
sudo systemctl status mysql
Does this imply that once I install mysql-server it will always be running in the background unless I explicitly kill the process upon each reboot?
I want to play around with mysql-server occasionally, but don't want it constantly running in the background.
sudo systemctl disable mysqlonce at the command line to disable indefinitely? Or do I need to add thissudo systemctl disable mysqlcommand to some startup script to run each time I boot Ubuntu? Thank you. – Display name Aug 19 '19 at 16:59sudo apt install mysql-workbenchdo I need to worry about following any similar process? Or does MySQL Workbench have nothing to do with running a server, hence I just click thexto close it like any other program (Blender, LibreOffice, etc.)? – Display name Aug 20 '19 at 13:37