Munish inspiring
Munish inspiring

Reputation: 13

fetching Error while installing mysql in ubuntu

While installing Mysql in ubuntu getting error like

unable to fetch some archives

how to solve this ?

Upvotes: 0

Views: 1139

Answers (2)

Girish Vas
Girish Vas

Reputation: 680

try to update and upgrade using the following script.

sudo apt-get update && upgrade

then try to execute the MySQL installation command.

sudo apt install mysql-server
sudo mysql_secure_installation
sudo mysql_secure_installation

Upvotes: 2

orvi
orvi

Reputation: 3340

Try using:

sudo apt-get update

After that retry the install again.

Upvotes: 0

Related Questions