You can install a local .deb package by:
sudo apt install ./foo.deb
Make sure to specify a local relative or absolute path (./
if in current dir), otherwise it will look for foo.deb
in the remote repos and fail.
You can install a local .deb package by:
sudo apt install ./foo.deb
Make sure to specify a local relative or absolute path (./
if in current dir), otherwise it will look for foo.deb
in the remote repos and fail.
configuration file in the terminal,
I fixed this by changing bind-address 127.0.0.1
to bind-address 0.0.0.0
in /etc/mysql/mysql.conf.d/mysqld.cnf
, (so that MySQL listens on all ports).
sudo nano /etc/mysql/mysql.conf.d/mysqld.cnf
bind-address 127.0.0.1 to bind-address 0.0.0.0
save file exit and restart mysql
/etc/init.d/mysql restart
OK Work