Apache e XAMPP

2

Eu sou um iniciante quando se trata de Linux e XAMPP, e gostaria de fazer um site usando php e mySql. O problema é que eu não consigo descobrir como fazer um novo servidor apache. Quando eu reiniciar o apache, recebo esta mensagem, alguém pode me dizer o que significa e como resolvê-lo?

$ sudo /etc/init.d/apache2 restart
[sudo] password for sheila: 
1. Restarting web server apache2
AH00558: apache2: Could not reliably determine the server's fully
qualified domain name, using 127.0.1.1. Set the 'ServerName' directive
globally to suppress this message
(98)Address already in use: AH00072: make_sock: could not bind to address [::]:80
(98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
AH00015: Unable to open logs
Action 'start' failed.
The Apache error log may have more information.
[fail]
2. The apache2 instance did not start within 20 seconds. Please read the
log files to discover problems
    
por Adrian Mihai 10.05.2015 / 12:31

1 resposta

0

O Ubuntu vem pré-carregado com o Apache para que o serviço seja iniciado automaticamente durante o tempo de inicialização. Se você quiser usar o Apache do XAMPP, você precisará parar a corrente. Aqui estão os comandos:

sudo service apache stop
//go to /opt/lampp or whereever you've put your XAMPP and launch it
sudo ./lampp start

Atualização: se você quiser iniciar todo o XAMPP automaticamente durante o tempo de inicialização (eu não recomendo isso, pois ele diminui o seu sistema operacional), aqui está como (mas você deve desinstalar o Apache atual para que ele funcione).

    
por Fethi Dilmi 10.05.2015 / 14:44