eddy-server-management icon indicating copy to clipboard operation
eddy-server-management copied to clipboard

provisioning Server error on step Install MySQL

Open 3x1io opened this issue 1 year ago • 0 comments

Error on provisioning Server

(Reading database ... 209529 files and directories currently installed.)
Preparing to unpack mysql-apt-config_0.8.24-1_all.deb ...
Unpacking mysql-apt-config (0.8.24-1) over (0.8.24-1) ...
Setting up mysql-apt-config (0.8.24-1) ...
Warning: apt-key should not be used in scripts (called from postinst maintainerscript of the package mysql-apt-config)
Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
OK

this step in this command

sudo dpkg --install mysql-apt-config_0.8.24-1_all.deb

my fix is to replace it with new mysql-apt-config version 0.8.29

change these lines on resources/views/tasks/provision/software/install-mysql80.blade.php

wget -c https://dev.mysql.com/get/mysql-apt-config_0.8.29-1_all.deb
dpkg --install mysql-apt-config_0.8.29-1_all.deb

rm mysql-apt-config_0.8.29-1_all.deb

3x1io avatar Jan 09 '24 14:01 3x1io