xxxxxxxxxx
How to view MySQL log files:
https://blog.devart.com/how-to-view-the-mysql-server-logs.html
xxxxxxxxxx
sudo service mysql start
if [[ $? -ne 0 ]]; then
echo "Error starting MySQL service:"
sudo tail -n 20 /var/log/mysql/error.log # Print the last 20 lines of the error log
fi