简体   繁体   中英

MySQL database not starting in XAMPP Ubuntu 18.04 with "/opt/lampp/bin/mysql.server: 264: kill: No such process" error

I installed XAMPP on ubuntu 18.04. But when I visit http://localhost/phpmyadmin/ then I get this error.

在此处输入图片说明

And when I am trying to start MySQL database only it not start.

在此处输入图片说明

Also on command, I try to start XAMPP I got this error.

/opt/lampp/bin/mysql.server: 264: kill: No such process

There is a Permission denied error.

Try to stop the service as sudo:

sudo service mysql stop

and start it again:

run sudo /opt/lampp/xampp start

I had a similar problem.

If it still doesn't work try changing the permissions:

sudo chmod -R 777 /opt/lampp
sudo chown -hR nobody /opt/lampp
sudo chmod -R 755 /opt/lampp

And then restart it with the previous commands.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM