February 2018
Intermediate to advanced
510 pages
16h 10m
English
This section explains how to start the MySQL 8 server and how to troubleshoot problems during the start process. After successful installation of the MySQL 8 server on the Linux system, execute the following command to start the MySQL 8 service:
shell> sudo service mysqld start
To check in detail whether the service has started or not refer to the log file. You can use the status command to check the status of the MySQL 8 service:
shell> sudo service mysqld status
After getting a message of the service starting/running, you can connect with MySQL 8 by using the following command:
shell> mysql -uroot -p
The preceding command prompts for the password, so enter the password and press the Enter key. ...
Read now
Unlock full access