我正在新安装的操作系统上安装 [L]AMP 堆栈,目前已安装 apache2 和 php7。现在我开始使用 MySQL,并按照说明操作这里我遇到了障碍。
首先,my.cnf 中没有 bind-address 行。
其次,该文件是二进制编码的。
我该如何补救?
我已经这样做了sudo apt-get install mysql-server
– 我该如何卸载它并重试?
我尝试开始按照说明这里但输入第一行后:
sudo apt-get remove --purge mysql*
我收到这个错误:
E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?
答案1
sudo su
pgrep apt|xargs kill -9
rm /var/lib/dpkg/lock* -f
dpkg --configure -a