Problem to raise the Apache server with XAMPP in Ubuntu 17.04

1

I'm using XAMPP on Ubuntu 17.04 and am experiencing a very annoying problem to raise the apache server.

When you enter the /opt/lampp directory and run the ./lampp start command, the following problem is returned:

After much research on the problem I saw a topic that suggested doing the following steps:

/etc/init.d
./apache2 stop

This tip does indeed resolve, but whenever the computer restarts, it is necessary to do exactly the same thing to raise the apache server by XAMPP.

I would definitely like to resolve this.

    
asked by anonymous 11.09.2017 / 00:52

1 answer

0
update-rc.d -f apache2 remove

or

systemctl disable apache2

Using the root user.

    
11.09.2017 / 00:56