Como configurar o phpmyadmin no Ubuntu

0

Instalei LAMP , mas quando coloco apache.conf desta linha como na instrução Include /etc/phpmyadmin/apache.conf e tentando reiniciar o apache, recebo o seguinte erro:

~$ sudo /etc/init.d/apache2 restart 
* Restarting web server apache2                                                                                                                      [fail] 
* The apache2 configtest failed.
Output of config test was:
apache2: Syntax error on line 222 of /etc/apache2/apache2.conf: Could not open   configuration file /etc/phpmyadmin/apache.conf: No such file or directory
Action 'configtest' failed.
The Apache error log may have more information.

Eu verifiquei em /etc/phpmyadmin e não tenho esse arquivo /etc/phpmyadmin/apache.conf

Not Found

The requested URL /phpmyadmin/ was not found on this server.

Minha pergunta é que preciso baixá-lo de algum lugar ou devo criar um e colocar algo nele? Este arquivo não vem com a instalação do LAMP?

Atualizar com erro sudo apt-get install phpmyadmin

Creating config file /etc/php5/mods-available/mysql.ini with new version
cp: cannot create regular file ‘/etc/php5/mods-available/mysql.ini’: No such file or directory
dpkg: error processing package php5-mysql (--configure):
subprocess installed post-installation script returned error exit status 1
Setting up javascript-common (11) ...
dpkg: error processing package javascript-common (--configure):
subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of phpmyadmin:
phpmyadmin depends on php5-mysql | php5-mysqli | php5-mysqlnd; however:
Package php5-mysql is not configured yet.
Package php5-mysqli is not installed.
Package php5-mysqlnd is not installed.

dpkg: error processing package phpmyadmin (--configure):
dependency problems - leaving unconfigured
Processing triggers for libapache2-mod-php5 (5.5.9+dfsg-1ubuntu4.5) ...
No apport report written because the error message indicates its a followup error from a previous failure.
                                                                                                      Errors were encountered while processing:
php5-mysql
javascript-common
phpmyadmin
E: Sub-process /usr/bin/dpkg returned an error code (1)
    
por Goro 28.11.2014 / 10:44

1 resposta

1

Você instalou o phpmyadmin?

Parece-me que você perdeu. Não é uma parte da pilha LAMP em si, mas uma ferramenta de administração para configurar o MySQL (que é escrito em php).

Você precisaria fazer sudo apt-get install phpmyadmin de acordo com este guia . Depois de concluir esta etapa, você poderá acessar o phpMyAdmin.

Espero que isso ajude;)

    
por 28.11.2014 / 11:17