MySQL Forums
Forum List  »  Install & Repo

Re: Installing Mysql Enterprise on Ubuntu 20
Posted by: Terje Røsten
Date: May 10, 2023 01:18AM

You have several options:

1) you should be able to prepare /etc/mysql/my.cnf and friends before you run

$ apt-get install ./*.deb

2)

Just remove the initial db instance created and redo init step:

$ service mysql stop
$ rm -rf /var/lib/mysql/*
edit config to include lower_case_table_names=1
$ service mysql start

The last command will detect /var/lib/mysql is empty and do a full init.

Options: ReplyQuote


Subject
Written By
Posted
Re: Installing Mysql Enterprise on Ubuntu 20
May 10, 2023 01:18AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.