Getting mysql error on running tutor local launch

here is the error message. on running tutor local launch

Error: Command failed with status 1: docker-compose -f /home/punchu/.local/share/tutor-nightly/env/local/docker-compose.yml -f /home/punchu/.local/share/tutor-nightly/env/local/docker-compose.prod.yml -f /home/punchu/.local/share/tutor-nightly/env/local/docker-compose.tmp.yml --project-name tutor_nightly_local -f /home/punchu/.local/share/tutor-nightly/env/local/docker-compose.jobs.yml -f /home/punchu/.local/share/tutor-nightly/env/local/docker-compose.jobs.tmp.yml run --rm mysql-job sh -e -c echo “Initialising MySQL…”
mysql_connection_max_attempts=10
mysql_connection_attempt=0
until mysql -u root --password=“6bDuKW1u” --host “mysql” --port 3306 -e ‘exit’
do
mysql_connection_attempt=$(expr $mysql_connection_attempt + 1)
echo " [$mysql_connection_attempt/$mysql_connection_max_attempts] Waiting for MySQL service (this may take a while)…"
if [ $mysql_connection_attempt -eq $mysql_connection_max_attempts ]
then
echo “MySQL initialisation error” 1>&2
exit 1
fi
sleep 10
done
echo “MySQL is up and running”

edx-platform database

mysql -u root --password=“6bDuKW1u” --host “mysql” --port 3306 -e “CREATE DATABASE IF NOT EXISTS openedx;”
mysql -u root --password=“6bDuKW1u” --host “mysql” --port 3306 -e “CREATE USER IF NOT EXISTS ‘openedx’;”
mysql -u root --password=“6bDuKW1u” --host “mysql” --port 3306 -e “ALTER USER ‘openedx’@‘%’ IDENTIFIED BY ‘yFEuYARE’;”
mysql -u root --password=“6bDuKW1u” --host “mysql” --port 3306 -e “GRANT ALL ON openedx.* TO ‘openedx’@‘%’;”

I really need your help, as i cant proceed