There is no phpmyadmin.conf in / etc / apache2 / conf-available / phpmyadmin

I am following this tutorial and I cannot find phpmyadmin.conf for the second step of this tutorial. I only have the files below in / etc / apache 2 / conf-available /

charset.conf

Other virtual access domains, log.conf

JavaScript common.conf

security.conf

localized pages.conf errors

serve-cgi-bin.conf

I need to edit which one?

+4
source share
2 answers

Are you sure you did it right?

, apache2 , . "SPACE", Apache, . "", "TAB", "ENTER" Apache.

, , .

:

: https://help.ubuntu.com/community/phpMyAdmin

, , phpMyAdmin Apache Apache:

sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf.d/phpmyadmin.conf
sudo /etc/init.d/apache2 reload

Ubuntu 13.10 (Saucy Salamander), Apache /etc/apache 2/conf.d. , /etc/apache 2/conf-available, a2enconf. , Apache phpMyAdmin, :

sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/phpmyadmin.conf
sudo a2enconf phpmyadmin
sudo /etc/init.d/apache2 reload
+8

, apache2 , . "SPACE", Apache, . "SPACE", "TAB", "ENTER", Apache.

sudo dpkg-reconfigure phpmyadmin

no, , apache

+8

Source: https://habr.com/ru/post/1606210/


All Articles