If you have just been given access to a server with some form of MySQL on it and you want to find out about it...
ps -ef | grep mysql
Will prove it's actually running and show who it's running as. Note that whichever user mysql is actually running as, you will normally need 'root' access to be able to manage MySQL.cat /etc/my.cnf
Will show you the config, or link you to the config, and may also give some hints as to what flavour of MySQL you are dealing with.e.g. Percona will link to these locations from /etc/my.cnf...!includedir /etc/my.cnf.d/mysql -V
You might get lucky and be able to run the mysql client as your login user. Even better if you know some database users and their passwords.sudo systemctl start mysqld
sudo service mysql start
"C:\Program Files\MySQL\MySQL Server 8.0\bin\mysqld"
or (assuming a MySQL Windows Service has been configured)
sc start mysqld_service_name
or
NET START mysqld_service_name
sudo service mysql stop
"C:\Program Files\MySQL\MySQL Server 8.0\bin\mysqladmin" -u root shutdown -p
or (assuming a MySQL Windows Service has been configured)
sc stop mysqld_service_name
or
NET STOP mysqld_service_name
source /path/script.sql