Submit and vote on feature ideas.

Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.

Configuring MySQL 5.7 on Ubuntu 18.04 for DTP

Options
Billy McMullin
Billy McMullin Posts: 64 admin
edited October 2018 in DTP

With Ubuntu 18.04, they changed how they operate and how packages are installed with apt-get. For one, the MySQL server installation no longer asks for a root password at startup and this will need to be configured in another part. The way MySQL authenticates was changed as well and this too will need to be updated. To configure MySQL 5.7 to be able to use a password to login, which is required to create the Databases for DTP, follow these instructions:

  1. Run ‘sudo apt install mysql-server’. This will install the MySQl server.
  2. Once that is finished, run sudo mysql_secure_installation. You can choose to enable the Validate Password Plugin if you want it isn't required, accept the defaults and put a password. This password can be used in the later steps .
  3. Once that is done, log into MySQl with the following: sudo mysql
  4. After you are logged in, run the following command: ALTER USER root@localhost IDENTIFIED WITH mysql_native_password BY ‘[ENTER ROOT PASSWORD]’; This will configure MySQL to have the root user login with the specified password, remember this password or write it down as we will need it later.
  5. After that is configured, run: FLUSH PRIVILEGES;
  6. Run the following to verify the changes were made: SELECT user,authentication_string,plugin,host FROM mysql.user; The output should look similar to the following:
  7. Once that is completed, test by logging in with the following command and using the password you just set: mysql -u root -p
  8. If you were able to login with the set password you are ready to make the databases in DTP.

For an online reference with some more details, please see this link:
https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-18-04