How to install MySQL 5.6 in Ubuntu 18.04(VM)

1.3k Views Asked by At

I'm using packer to install MySQL 5.6 on an Ubuntu VM. To install it, I'm using the below script.

#!/bin/bash
sudo add-apt-repository 'deb http://kr.archive.ubuntu.com/ubuntu xenial main' -y
sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu trusty universe' -y
sudo apt-get update -y
sudo apt-get install mysql-server-5.6 -y
systemctl restart mysql

However, the installer kept prompting for a password. Is there any way to pass the password in the script since it's installed within a VM? I'm stuck in this situation.

error-screenshot

0

There are 0 best solutions below