Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 27/07/2014, à 09:42

devillers

[RESOLU]fichier conf.d

Bonjour à tous,

J'ai installé Apache2 avec la ligne de commande:

sudo apt-get install apache2

et jusque là pas de soucis.
Le problème que je rencontre est dans l'exécution de cette ligne de code :

sudo ln -s /etc/phppgadmin/apache.conf /etc/apache2/conf.d/phppgadmin.conf

il m'affiche :

ln: impossible de créer le lien symbolique «/etc/apache2/conf.d/phppgadmin.conf»: Aucun fichier ou dossier de ce type

en effet j'ai vue sur ce site cette ligne

conf-available: this directory contains available configuration files. All files that were previously in /etc/apache2/conf.d should be moved to /etc/apache2/conf-available.

particulièrement intéressante. Merci d'avance.

Dernière modification par devillers (Le 27/07/2014, à 17:15)

Hors ligne

#2 Le 27/07/2014, à 09:58

jplemoine

Re : [RESOLU]fichier conf.d

Si tu as trouvé la solution, quel est ton problème ?

EDIT après avoir trouvé la solution
***********  IL y a eu beaucoup "d'errances" --> J'ai tout résumé au post 47 ****************

Dernière modification par jplemoine (Le 27/07/2014, à 16:57)


Membre de l'ALDIL (Association Lyonnaise pour le Développement de l'Informatique Libre)
- En pro, après 20 ans de développement, administrateur Linux / Unix depuis Avril 2019.
- En privé, sous Ubuntu-Xubuntu depuis 2009.

Hors ligne

#3 Le 27/07/2014, à 10:04

devillers

Re : [RESOLU]fichier conf.d

Bonjour jplemoine
  Je n'arrive pas à exécuter la deuxième ligne de code

sudo ln -s /etc/phppgadmin/apache.conf /etc/apache2/conf.d/phppgadmin.conf

et créer un lien entre apache2 et phppgadmin comme c'est dit dans la doc au paragraphe 5.2.

Dernière modification par devillers (Le 27/07/2014, à 10:04)

Hors ligne

#4 Le 27/07/2014, à 10:14

jplemoine

Re : [RESOLU]fichier conf.d

C'est logique puisque dans le dernier pavé, on te dit que conf.d n'existe plus et que dorénavant il faut utiliser conf-available.
Je pense donc que la ligne devient :

sudo ln -s /etc/phppgadmin/apache.conf /etc/apache2/conf-available/phppgadmin.conf

De plus, je pense qu'il faut mettre un lien dans conf-enabled comme pour site-enabled / site-available

sudo ln -s /etc/apache2/conf-available/phppgadmin.conf /etc/apache2/conf-enabled/phppgadmin.conf

Dans le doute, relance Apache :

sudo service apache2 restart

Membre de l'ALDIL (Association Lyonnaise pour le Développement de l'Informatique Libre)
- En pro, après 20 ans de développement, administrateur Linux / Unix depuis Avril 2019.
- En privé, sous Ubuntu-Xubuntu depuis 2009.

Hors ligne

#5 Le 27/07/2014, à 10:19

devillers

Re : [RESOLU]fichier conf.d

Ok, j'ai fait

sudo ln -s /etc/phppgadmin/apache.conf /etc/apache2/conf-available/phppgadmin.conf

il me met

ln: impossible de créer le lien symbolique «/etc/apache2/conf-available/phppgadmin.conf»: Le fichier existe

en plus lorsque je redémarre apache 2 il m'affiche

* Restarting web server apache2                                         [fail] 
 * The apache2 configtest failed.
Output of config test was:
apache2: Syntax error on line 216 of /etc/apache2/apache2.conf: Could not open configuration file /etc/apache2/conf-enabled/phppgadmin.conf: No such file or directory
Action 'configtest' failed.
The Apache error log may have more information.

Dernière modification par devillers (Le 27/07/2014, à 10:23)

Hors ligne

#6 Le 27/07/2014, à 10:45

jplemoine

Re : [RESOLU]fichier conf.d

As-tu modifié le fichier apache2.conf ?
Si oui, supprime ta modification.
Dans le doute, postes ici son contenu...

Dernière modification par jplemoine (Le 27/07/2014, à 10:45)


Membre de l'ALDIL (Association Lyonnaise pour le Développement de l'Informatique Libre)
- En pro, après 20 ans de développement, administrateur Linux / Unix depuis Avril 2019.
- En privé, sous Ubuntu-Xubuntu depuis 2009.

Hors ligne

#7 Le 27/07/2014, à 10:57

devillers

Re : [RESOLU]fichier conf.d

non je n'ai rien touché à apache2.conf

# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See http://httpd.apache.org/docs/2.4/ for detailed information about
# the directives and /usr/share/doc/apache2/README.Debian about Debian specific
# hints.
#
#
# Summary of how the Apache 2 configuration works in Debian:
# The Apache 2 web server configuration in Debian is quite different to
# upstream's suggested way to configure the web server. This is because Debian's
# default Apache2 installation attempts to make adding and removing modules,
# virtual hosts, and extra configuration directives as flexible as possible, in
# order to make automating the changes and administering the server as easy as
# possible.

# It is split into several files forming the configuration hierarchy outlined
# below, all located in the /etc/apache2/ directory:
#
#	/etc/apache2/
#	|-- apache2.conf
#	|	`--  ports.conf
#	|-- mods-enabled
#	|	|-- *.load
#	|	`-- *.conf
#	|-- conf-enabled
#	|	`-- *.conf
# 	`-- sites-enabled
#	 	`-- *.conf
#
#
# * apache2.conf is the main configuration file (this file). It puts the pieces
#   together by including all remaining configuration files when starting up the
#   web server.
#
# * ports.conf is always included from the main configuration file. It is
#   supposed to determine listening ports for incoming connections which can be
#   customized anytime.
#
# * Configuration files in the mods-enabled/, conf-enabled/ and sites-enabled/
#   directories contain particular configuration snippets which manage modules,
#   global configuration fragments, or virtual host configurations,
#   respectively.
#
#   They are activated by symlinking available configuration files from their
#   respective *-available/ counterparts. These should be managed by using our
#   helpers a2enmod/a2dismod, a2ensite/a2dissite and a2enconf/a2disconf. See
#   their respective man pages for detailed information.
#
# * The binary is called apache2. Due to the use of environment variables, in
#   the default configuration, apache2 needs to be started/stopped with
#   /etc/init.d/apache2 or apache2ctl. Calling /usr/bin/apache2 directly will not
#   work with the default configuration.


# Global configuration
#

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE!  If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the Mutex documentation (available
# at <URL:http://httpd.apache.org/docs/2.4/mod/core.html#mutex>);
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
#ServerRoot "/etc/apache2"

#
# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
#
Mutex file:${APACHE_LOCK_DIR} default

#
# PidFile: The file in which the server should record its process
# identification number when it starts.
# This needs to be set in /etc/apache2/envvars
#
PidFile ${APACHE_PID_FILE}

#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 300

#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive On

#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100

#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 5


# These need to be set in /etc/apache2/envvars
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}

#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups Off

# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog ${APACHE_LOG_DIR}/error.log

#
# LogLevel: Control the severity of messages logged to the error_log.
# Available values: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the log level for particular modules, e.g.
# "LogLevel info ssl:warn"
#
LogLevel warn

# Include module configuration:
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf

# Include list of ports to listen on
Include ports.conf


# Sets the default security model of the Apache2 HTTPD server. It does
# not allow access to the root filesystem outside of /usr/share and /var/www.
# The former is used by web applications packaged in Debian,
# the latter may be used for local directories served by the web server. If
# your system is serving content from a sub-directory in /srv you must allow
# access here, or in any related virtual host.
<Directory />
	Options FollowSymLinks
	AllowOverride None
	Require all denied
</Directory>

<Directory /usr/share>
	AllowOverride None
	Require all granted
</Directory>

<Directory /var/www/>
	Options Indexes FollowSymLinks
	AllowOverride None
	Require all granted
</Directory>

#<Directory /srv/>
#	Options Indexes FollowSymLinks
#	AllowOverride None
#	Require all granted
#</Directory>




# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives.  See also the AllowOverride
# directive.
#
AccessFileName .htaccess

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<FilesMatch "^\.ht">
	Require all denied
</FilesMatch>


#
# The following directives define some format nicknames for use with
# a CustomLog directive.
#
# These deviate from the Common Log Format definitions in that they use %O
# (the actual bytes sent including headers) instead of %b (the size of the
# requested file), because the latter makes it impossible to detect partial
# requests.
#
# Note that the use of %{X-Forwarded-For}i instead of %h is not recommended.
# Use mod_remoteip instead.
#
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

# Include of directories ignores editors' and dpkg's backup files,
# see README.Debian for details.

# Include generic snippets of statements
IncludeOptional conf-enabled/*.conf

# Include the virtual host configurations:
IncludeOptional sites-enabled/*.conf

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

Hors ligne

#8 Le 27/07/2014, à 11:09

jplemoine

Re : [RESOLU]fichier conf.d

je pense que tu as fait le lien entre conf-enabled et conf-available alors que le conf-available n'existe pas ou n'est pas correct.
Peux-tu me donner le resultat de :

ls -ld /etc/apache2/conf-avaible/*
ls -ld /etc/apache2/conf-enabled/*
ls -ld /etc/phppgadmin/apache.conf

Membre de l'ALDIL (Association Lyonnaise pour le Développement de l'Informatique Libre)
- En pro, après 20 ans de développement, administrateur Linux / Unix depuis Avril 2019.
- En privé, sous Ubuntu-Xubuntu depuis 2009.

Hors ligne

#9 Le 27/07/2014, à 11:15

devillers

Re : [RESOLU]fichier conf.d

ls -ld /etc/apache2/conf-avaible/*

ls: impossible d'accéder à /etc/apache2/conf-avaible/*: Aucun fichier ou dossier de ce type
ls -ld /etc/apache2/conf-enabled/*

lrwxrwxrwx 1 root root 30 juil. 25 22:35 /etc/apache2/conf-enabled/charset.conf -> ../conf-available/charset.conf
lrwxrwxrwx 1 root root 44 juil. 25 22:35 /etc/apache2/conf-enabled/localized-error-pages.conf -> ../conf-available/localized-error-pages.conf
lrwxrwxrwx 1 root root 46 juil. 25 22:35 /etc/apache2/conf-enabled/other-vhosts-access-log.conf -> ../conf-available/other-vhosts-access-log.conf
lrwxrwxrwx 1 root root 43 juil. 27 10:18 /etc/apache2/conf-enabled/phppgadmin.conf -> /etc/apache2/conf-available/phppgadmin.conf
lrwxrwxrwx 1 root root 31 juil. 25 22:35 /etc/apache2/conf-enabled/security.conf -> ../conf-available/security.conf
lrwxrwxrwx 1 root root 36 juil. 25 22:35 /etc/apache2/conf-enabled/serve-cgi-bin.conf -> ../conf-available/serve-cgi-bin.conf
ls -ld /etc/phppgadmin/apache.conf

ls: impossible d'accéder à /etc/phppgadmin/apache.conf: Aucun fichier ou dossier de ce type

Hors ligne

#10 Le 27/07/2014, à 11:25

jplemoine

Re : [RESOLU]fichier conf.d

Déjà, pour pouvoir démarrer Apache :

sudo rm /etc/apache2/conf-enabled/phppgadmin.conf
sudo service apache2 start

--> Là, normalement, apache remdemmarre.

Ensuite, il y a un problème avec le fichier "/etc/phppgadmin/apache.conf" : il n'existe pas : tu ne peux donc pas faire un lien vers un fichier qui n'existe pas.

Peux-tu tenter un

locate apache.conf

?
Ça permettra de savoir où est réellement le fameux fichier.


Membre de l'ALDIL (Association Lyonnaise pour le Développement de l'Informatique Libre)
- En pro, après 20 ans de développement, administrateur Linux / Unix depuis Avril 2019.
- En privé, sous Ubuntu-Xubuntu depuis 2009.

Hors ligne

#11 Le 27/07/2014, à 11:49

devillers

Re : [RESOLU]fichier conf.d

Il ne m'indique rien pour

locate apache.conf

pas de résultat en bref...par contre apache à redémarré.

Dernière modification par devillers (Le 27/07/2014, à 11:53)

Hors ligne

#12 Le 27/07/2014, à 11:57

jplemoine

Re : [RESOLU]fichier conf.d

Donc, il n'y a pas (ou plus) de fichier apache.conf.
Tentes :

locate phppgadmin

Membre de l'ALDIL (Association Lyonnaise pour le Développement de l'Informatique Libre)
- En pro, après 20 ans de développement, administrateur Linux / Unix depuis Avril 2019.
- En privé, sous Ubuntu-Xubuntu depuis 2009.

Hors ligne

#13 Le 27/07/2014, à 12:00

devillers

Re : [RESOLU]fichier conf.d

rien

Hors ligne

#14 Le 27/07/2014, à 12:13

jplemoine

Re : [RESOLU]fichier conf.d

Tentes de réinstaller phppgadmin :

sudo apt-get install phppgadmin

Membre de l'ALDIL (Association Lyonnaise pour le Développement de l'Informatique Libre)
- En pro, après 20 ans de développement, administrateur Linux / Unix depuis Avril 2019.
- En privé, sous Ubuntu-Xubuntu depuis 2009.

Hors ligne

#15 Le 27/07/2014, à 12:17

devillers

Re : [RESOLU]fichier conf.d

OK C'est fait

Hors ligne

#16 Le 27/07/2014, à 12:40

jplemoine

Re : [RESOLU]fichier conf.d

Testes sans rien modifier...


Membre de l'ALDIL (Association Lyonnaise pour le Développement de l'Informatique Libre)
- En pro, après 20 ans de développement, administrateur Linux / Unix depuis Avril 2019.
- En privé, sous Ubuntu-Xubuntu depuis 2009.

Hors ligne

#17 Le 27/07/2014, à 12:42

devillers

Re : [RESOLU]fichier conf.d

 locate phppgadmin
/etc/phppgadmin
/etc/apache2/conf-available/phppgadmin.conf
/etc/apache2/conf.d/phppgadmin
/etc/phppgadmin/config.inc.php
/usr/share/phppgadmin
/usr/share/doc/phppgadmin
/usr/share/doc/phppgadmin/CREDITS
/usr/share/doc/phppgadmin/DEVELOPERS.gz
/usr/share/doc/phppgadmin/FAQ.gz
/usr/share/doc/phppgadmin/INSTALL
/usr/share/doc/phppgadmin/README.Debian
/usr/share/doc/phppgadmin/TODO.gz
/usr/share/doc/phppgadmin/TRANSLATORS
/usr/share/doc/phppgadmin/changelog.Debian.gz
/usr/share/doc/phppgadmin/copyright
/usr/share/lintian/overrides/phppgadmin
/usr/share/phppgadmin/admin.php
/usr/share/phppgadmin/aggregates.php
/usr/share/phppgadmin/ajax-ac-insert.php
/usr/share/phppgadmin/all_db.php
/usr/share/phppgadmin/browser.php
/usr/share/phppgadmin/casts.php
/usr/share/phppgadmin/classes
/usr/share/phppgadmin/colproperties.php
/usr/share/phppgadmin/conf
/usr/share/phppgadmin/constraints.php
/usr/share/phppgadmin/conversions.php
/usr/share/phppgadmin/database.php
/usr/share/phppgadmin/dataexport.php
/usr/share/phppgadmin/dataimport.php
/usr/share/phppgadmin/dbexport.php
/usr/share/phppgadmin/display.php
/usr/share/phppgadmin/domains.php
/usr/share/phppgadmin/fulltext.php
/usr/share/phppgadmin/functions.js
/usr/share/phppgadmin/functions.php
/usr/share/phppgadmin/groups.php
/usr/share/phppgadmin/help
/usr/share/phppgadmin/help.php
/usr/share/phppgadmin/history.php
/usr/share/phppgadmin/images
/usr/share/phppgadmin/index.php
/usr/share/phppgadmin/indexes.js
/usr/share/phppgadmin/indexes.php
/usr/share/phppgadmin/info.php
/usr/share/phppgadmin/intro.php
/usr/share/phppgadmin/js
/usr/share/phppgadmin/lang
/usr/share/phppgadmin/languages.php
/usr/share/phppgadmin/libraries
/usr/share/phppgadmin/links.js
/usr/share/phppgadmin/login.php
/usr/share/phppgadmin/logout.php
/usr/share/phppgadmin/multiactionform.js
/usr/share/phppgadmin/opclasses.php
/usr/share/phppgadmin/operators.php
/usr/share/phppgadmin/plugin.php
/usr/share/phppgadmin/plugins
/usr/share/phppgadmin/privileges.php
/usr/share/phppgadmin/redirect.php
/usr/share/phppgadmin/robots.txt
/usr/share/phppgadmin/roles.php
/usr/share/phppgadmin/rules.php
/usr/share/phppgadmin/schemas.php
/usr/share/phppgadmin/sequences.php
/usr/share/phppgadmin/servers.php
/usr/share/phppgadmin/sql.php
/usr/share/phppgadmin/sqledit.php
/usr/share/phppgadmin/tables.js
/usr/share/phppgadmin/tables.php
/usr/share/phppgadmin/tablespaces.php
/usr/share/phppgadmin/tblproperties.php
/usr/share/phppgadmin/themes
/usr/share/phppgadmin/triggers.php
/usr/share/phppgadmin/types.php
/usr/share/phppgadmin/users.php
/usr/share/phppgadmin/viewproperties.php
/usr/share/phppgadmin/views.php
/usr/share/phppgadmin/xloadtree
/usr/share/phppgadmin/classes/ArrayRecordSet.php
/usr/share/phppgadmin/classes/Gui.php
/usr/share/phppgadmin/classes/Misc.php
/usr/share/phppgadmin/classes/Plugin.php
/usr/share/phppgadmin/classes/PluginManager.php
/usr/share/phppgadmin/classes/class.select.php
/usr/share/phppgadmin/classes/database
/usr/share/phppgadmin/classes/database/ADODB_base.php
/usr/share/phppgadmin/classes/database/Connection.php
/usr/share/phppgadmin/classes/database/Postgres.php
/usr/share/phppgadmin/classes/database/Postgres74.php
/usr/share/phppgadmin/classes/database/Postgres80.php
/usr/share/phppgadmin/classes/database/Postgres81.php
/usr/share/phppgadmin/classes/database/Postgres82.php
/usr/share/phppgadmin/classes/database/Postgres83.php
/usr/share/phppgadmin/classes/database/Postgres84.php
/usr/share/phppgadmin/classes/database/Postgres90.php
/usr/share/phppgadmin/classes/database/Postgres91.php
/usr/share/phppgadmin/conf/config.inc.php
/usr/share/phppgadmin/help/PostgresDoc74.php
/usr/share/phppgadmin/help/PostgresDoc80.php
/usr/share/phppgadmin/help/PostgresDoc81.php
/usr/share/phppgadmin/help/PostgresDoc82.php
/usr/share/phppgadmin/help/PostgresDoc83.php
/usr/share/phppgadmin/help/PostgresDoc84.php
/usr/share/phppgadmin/help/PostgresDoc90.php
/usr/share/phppgadmin/help/PostgresDoc91.php
/usr/share/phppgadmin/help/PostgresDoc92.php
/usr/share/phppgadmin/images/themes
/usr/share/phppgadmin/images/themes/cappuccino
/usr/share/phppgadmin/images/themes/default
/usr/share/phppgadmin/images/themes/cappuccino/Lminus.png
/usr/share/phppgadmin/images/themes/cappuccino/Lplus.png
/usr/share/phppgadmin/images/themes/cappuccino/Tminus.png
/usr/share/phppgadmin/images/themes/cappuccino/Tplus.png
/usr/share/phppgadmin/images/themes/cappuccino/inputbckg.png
/usr/share/phppgadmin/images/themes/cappuccino/openListe.png
/usr/share/phppgadmin/images/themes/cappuccino/title.png
/usr/share/phppgadmin/images/themes/default/AddArguments.png
/usr/share/phppgadmin/images/themes/default/Admin.png
/usr/share/phppgadmin/images/themes/default/Aggregate.png
/usr/share/phppgadmin/images/themes/default/Aggregates.png
/usr/share/phppgadmin/images/themes/default/AllUsers.png
/usr/share/phppgadmin/images/themes/default/AvailableReplicationSet.png
/usr/share/phppgadmin/images/themes/default/AvailableSubscription.png
/usr/share/phppgadmin/images/themes/default/Backup.png
/usr/share/phppgadmin/images/themes/default/Cast.png
/usr/share/phppgadmin/images/themes/default/Casts.png
/usr/share/phppgadmin/images/themes/default/CheckConstraint.png
/usr/share/phppgadmin/images/themes/default/Cluster.png
/usr/share/phppgadmin/images/themes/default/Column.png
/usr/share/phppgadmin/images/themes/default/Columns.png
/usr/share/phppgadmin/images/themes/default/Constraints.png
/usr/share/phppgadmin/images/themes/default/Conversion.png
/usr/share/phppgadmin/images/themes/default/Conversions.png
/usr/share/phppgadmin/images/themes/default/Copy.png
/usr/share/phppgadmin/images/themes/default/CorruptedDatabase.png
/usr/share/phppgadmin/images/themes/default/Cut.png
/usr/share/phppgadmin/images/themes/default/Database.png
/usr/share/phppgadmin/images/themes/default/Databases.png
/usr/share/phppgadmin/images/themes/default/Definition.png
/usr/share/phppgadmin/images/themes/default/Delete.png
/usr/share/phppgadmin/images/themes/default/DisabledJob.png
/usr/share/phppgadmin/images/themes/default/DisconnectedDatabase.png
/usr/share/phppgadmin/images/themes/default/DisconnectedServer.png
/usr/share/phppgadmin/images/themes/default/Domain.png
/usr/share/phppgadmin/images/themes/default/Domains.png
/usr/share/phppgadmin/images/themes/default/EnableArgument.png
/usr/share/phppgadmin/images/themes/default/Erase.png
/usr/share/phppgadmin/images/themes/default/Execute.png
/usr/share/phppgadmin/images/themes/default/ExecuteSave.png
/usr/share/phppgadmin/images/themes/default/Explain.png
/usr/share/phppgadmin/images/themes/default/Export.png
/usr/share/phppgadmin/images/themes/default/Favicon.ico
/usr/share/phppgadmin/images/themes/default/Filter.png
/usr/share/phppgadmin/images/themes/default/ForeignKey.png
/usr/share/phppgadmin/images/themes/default/Fts.png
/usr/share/phppgadmin/images/themes/default/FtsCfg.png
/usr/share/phppgadmin/images/themes/default/FtsDict.png
/usr/share/phppgadmin/images/themes/default/FtsParser.png
/usr/share/phppgadmin/images/themes/default/Function.png
/usr/share/phppgadmin/images/themes/default/Functions.png
/usr/share/phppgadmin/images/themes/default/GurusHint.png
/usr/share/phppgadmin/images/themes/default/Help.png
/usr/share/phppgadmin/images/themes/default/Histories.png
/usr/share/phppgadmin/images/themes/default/History.png
/usr/share/phppgadmin/images/themes/default/I.png
/usr/share/phppgadmin/images/themes/default/Import.png
/usr/share/phppgadmin/images/themes/default/Index.png
/usr/share/phppgadmin/images/themes/default/Indexes.png
/usr/share/phppgadmin/images/themes/default/Introduction.png
/usr/share/phppgadmin/images/themes/default/Job.png
/usr/share/phppgadmin/images/themes/default/Jobs.png
/usr/share/phppgadmin/images/themes/default/Key.png
/usr/share/phppgadmin/images/themes/default/L.png
/usr/share/phppgadmin/images/themes/default/Language.png
/usr/share/phppgadmin/images/themes/default/Languages.png
/usr/share/phppgadmin/images/themes/default/Listen.png
/usr/share/phppgadmin/images/themes/default/Listens.png
/usr/share/phppgadmin/images/themes/default/Lminus.png
/usr/share/phppgadmin/images/themes/default/Loading.gif
/usr/share/phppgadmin/images/themes/default/LowerArgument.png
/usr/share/phppgadmin/images/themes/default/Lplus.png
/usr/share/phppgadmin/images/themes/default/Node.png
/usr/share/phppgadmin/images/themes/default/Nodes.png
/usr/share/phppgadmin/images/themes/default/ObjectNotFound.png
/usr/share/phppgadmin/images/themes/default/OfferedReplicationSet.png
/usr/share/phppgadmin/images/themes/default/OfferedSubscription.png
/usr/share/phppgadmin/images/themes/default/Open.png
/usr/share/phppgadmin/images/themes/default/Operator.png
/usr/share/phppgadmin/images/themes/default/OperatorClass.png
/usr/share/phppgadmin/images/themes/default/OperatorClasses.png
/usr/share/phppgadmin/images/themes/default/Operators.png
/usr/share/phppgadmin/images/themes/default/Paste.png
/usr/share/phppgadmin/images/themes/default/Path.png
/usr/share/phppgadmin/images/themes/default/Paths.png
/usr/share/phppgadmin/images/themes/default/PrimaryKey.png
/usr/share/phppgadmin/images/themes/default/Privileges.png
/usr/share/phppgadmin/images/themes/default/Processes.png
/usr/share/phppgadmin/images/themes/default/Property.png
/usr/share/phppgadmin/images/themes/default/RaiseArgument.png
/usr/share/phppgadmin/images/themes/default/Record.png
/usr/share/phppgadmin/images/themes/default/Records.png
/usr/share/phppgadmin/images/themes/default/Redo.png
/usr/share/phppgadmin/images/themes/default/Refresh.png
/usr/share/phppgadmin/images/themes/default/RemoveArgument.png
/usr/share/phppgadmin/images/themes/default/Replication.png
/usr/share/phppgadmin/images/themes/default/ReplicationSets.png
/usr/share/phppgadmin/images/themes/default/Restore.png
/usr/share/phppgadmin/images/themes/default/Roles.png
/usr/share/phppgadmin/images/themes/default/Rule.png
/usr/share/phppgadmin/images/themes/default/Rules.png
/usr/share/phppgadmin/images/themes/default/Save.png
/usr/share/phppgadmin/images/themes/default/Schedule.png
/usr/share/phppgadmin/images/themes/default/Schedules.png
/usr/share/phppgadmin/images/themes/default/Schema.png
/usr/share/phppgadmin/images/themes/default/Schemas.png
/usr/share/phppgadmin/images/themes/default/Search.png
/usr/share/phppgadmin/images/themes/default/Sequence.png
/usr/share/phppgadmin/images/themes/default/Sequences.png
/usr/share/phppgadmin/images/themes/default/Server.png
/usr/share/phppgadmin/images/themes/default/Servers.png
/usr/share/phppgadmin/images/themes/default/SqlEditor.png
/usr/share/phppgadmin/images/themes/default/Statistics.png
/usr/share/phppgadmin/images/themes/default/Step.png
/usr/share/phppgadmin/images/themes/default/Steps.png
/usr/share/phppgadmin/images/themes/default/Stop.png
/usr/share/phppgadmin/images/themes/default/Subscriptions.png
/usr/share/phppgadmin/images/themes/default/T.png
/usr/share/phppgadmin/images/themes/default/Table.png
/usr/share/phppgadmin/images/themes/default/Tables.png
/usr/share/phppgadmin/images/themes/default/Tablespace.png
/usr/share/phppgadmin/images/themes/default/Tablespaces.png
/usr/share/phppgadmin/images/themes/default/Tminus.png
/usr/share/phppgadmin/images/themes/default/Tplus.png
/usr/share/phppgadmin/images/themes/default/Trigger.png
/usr/share/phppgadmin/images/themes/default/TriggerFunction.png
/usr/share/phppgadmin/images/themes/default/TriggerFunctions.png
/usr/share/phppgadmin/images/themes/default/Triggers.png
/usr/share/phppgadmin/images/themes/default/Type.png
/usr/share/phppgadmin/images/themes/default/Types.png
/usr/share/phppgadmin/images/themes/default/Undo.png
/usr/share/phppgadmin/images/themes/default/UniqueConstraint.png
/usr/share/phppgadmin/images/themes/default/User.png
/usr/share/phppgadmin/images/themes/default/UserGroup.png
/usr/share/phppgadmin/images/themes/default/UserGroups.png
/usr/share/phppgadmin/images/themes/default/Users.png
/usr/share/phppgadmin/images/themes/default/Variables.png
/usr/share/phppgadmin/images/themes/default/View.png
/usr/share/phppgadmin/images/themes/default/Views.png
/usr/share/phppgadmin/images/themes/default/blank.png
/usr/share/phppgadmin/images/themes/default/title.png
/usr/share/phppgadmin/js/ac_insert_row.js
/usr/share/phppgadmin/js/database.js
/usr/share/phppgadmin/js/display.js
/usr/share/phppgadmin/lang/README
/usr/share/phppgadmin/lang/afrikaans.php
/usr/share/phppgadmin/lang/arabic.php
/usr/share/phppgadmin/lang/catalan.php
/usr/share/phppgadmin/lang/chinese-sim.php
/usr/share/phppgadmin/lang/chinese-tr.php
/usr/share/phppgadmin/lang/chinese-utf8-zh_CN.php
/usr/share/phppgadmin/lang/chinese-utf8-zh_TW.php
/usr/share/phppgadmin/lang/czech.php
/usr/share/phppgadmin/lang/danish.php
/usr/share/phppgadmin/lang/dutch.php
/usr/share/phppgadmin/lang/english.php
/usr/share/phppgadmin/lang/french.php
/usr/share/phppgadmin/lang/galician.php
/usr/share/phppgadmin/lang/german.php
/usr/share/phppgadmin/lang/greek.php
/usr/share/phppgadmin/lang/hebrew.php
/usr/share/phppgadmin/lang/hungarian.php
/usr/share/phppgadmin/lang/italian.php
/usr/share/phppgadmin/lang/japanese.php
/usr/share/phppgadmin/lang/lithuanian.php
/usr/share/phppgadmin/lang/mongol.php
/usr/share/phppgadmin/lang/polish.php
/usr/share/phppgadmin/lang/portuguese-br.php
/usr/share/phppgadmin/lang/portuguese-pt.php
/usr/share/phppgadmin/lang/romanian.php
/usr/share/phppgadmin/lang/russian-utf8.php
/usr/share/phppgadmin/lang/russian.php
/usr/share/phppgadmin/lang/slovak.php
/usr/share/phppgadmin/lang/spanish.php
/usr/share/phppgadmin/lang/swedish.php
/usr/share/phppgadmin/lang/translations.php
/usr/share/phppgadmin/lang/turkish.php
/usr/share/phppgadmin/lang/ukrainian.php
/usr/share/phppgadmin/libraries/adodb
/usr/share/phppgadmin/libraries/decorator.inc.php
/usr/share/phppgadmin/libraries/errorhandler.inc.php
/usr/share/phppgadmin/libraries/highlight.php
/usr/share/phppgadmin/libraries/js
/usr/share/phppgadmin/libraries/lib.inc.php
/usr/share/phppgadmin/libraries/adodb/adodb-csvlib.inc.php
/usr/share/phppgadmin/libraries/adodb/adodb-datadict.inc.php
/usr/share/phppgadmin/libraries/adodb/adodb-error.inc.php
/usr/share/phppgadmin/libraries/adodb/adodb-iterator.inc.php
/usr/share/phppgadmin/libraries/adodb/adodb-lib.inc.php
/usr/share/phppgadmin/libraries/adodb/adodb-time.inc.php
/usr/share/phppgadmin/libraries/adodb/adodb.inc.php
/usr/share/phppgadmin/libraries/adodb/drivers
/usr/share/phppgadmin/libraries/adodb/lang
/usr/share/phppgadmin/libraries/adodb/toexport.inc.php
/usr/share/phppgadmin/libraries/adodb/tohtml.inc.php
/usr/share/phppgadmin/libraries/adodb/drivers/adodb-postgres.inc.php
/usr/share/phppgadmin/libraries/adodb/drivers/adodb-postgres64.inc.php
/usr/share/phppgadmin/libraries/adodb/drivers/adodb-postgres7.inc.php
/usr/share/phppgadmin/libraries/adodb/drivers/adodb-postgres8.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-ar.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-bg.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-bgutf8.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-ca.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-cn.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-cz.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-da.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-de.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-en.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-es.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-esperanto.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-fa.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-fr.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-hu.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-it.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-nl.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-pl.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-pt-br.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-ro.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-ru1251.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-sv.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb-uk1251.inc.php
/usr/share/phppgadmin/libraries/adodb/lang/adodb_th.inc.php
/usr/share/phppgadmin/libraries/js/jquery.js
/usr/share/phppgadmin/plugins/GuiControl
/usr/share/phppgadmin/plugins/Report
/usr/share/phppgadmin/plugins/GuiControl/conf
/usr/share/phppgadmin/plugins/GuiControl/plugin.php
/usr/share/phppgadmin/plugins/GuiControl/conf/config.inc.php
/usr/share/phppgadmin/plugins/Report/INSTALL
/usr/share/phppgadmin/plugins/Report/README
/usr/share/phppgadmin/plugins/Report/classes
/usr/share/phppgadmin/plugins/Report/conf
/usr/share/phppgadmin/plugins/Report/images
/usr/share/phppgadmin/plugins/Report/lang
/usr/share/phppgadmin/plugins/Report/plugin.php
/usr/share/phppgadmin/plugins/Report/sql
/usr/share/phppgadmin/plugins/Report/classes/Reports.php
/usr/share/phppgadmin/plugins/Report/conf/config.inc.php
/usr/share/phppgadmin/plugins/Report/images/Report.png
/usr/share/phppgadmin/plugins/Report/images/Reports.png
/usr/share/phppgadmin/plugins/Report/lang/afrikaans.php
/usr/share/phppgadmin/plugins/Report/lang/arabic.php
/usr/share/phppgadmin/plugins/Report/lang/catalan.php
/usr/share/phppgadmin/plugins/Report/lang/chinese-sim.php
/usr/share/phppgadmin/plugins/Report/lang/chinese-tr.php
/usr/share/phppgadmin/plugins/Report/lang/chinese-utf8-zh_CN.php
/usr/share/phppgadmin/plugins/Report/lang/chinese-utf8-zh_TW.php
/usr/share/phppgadmin/plugins/Report/lang/czech.php
/usr/share/phppgadmin/plugins/Report/lang/danish.php
/usr/share/phppgadmin/plugins/Report/lang/dutch.php
/usr/share/phppgadmin/plugins/Report/lang/english.php
/usr/share/phppgadmin/plugins/Report/lang/french.php
/usr/share/phppgadmin/plugins/Report/lang/galician.php
/usr/share/phppgadmin/plugins/Report/lang/german.php
/usr/share/phppgadmin/plugins/Report/lang/greek.php
/usr/share/phppgadmin/plugins/Report/lang/hebrew.php
/usr/share/phppgadmin/plugins/Report/lang/hungarian.php
/usr/share/phppgadmin/plugins/Report/lang/italian.php
/usr/share/phppgadmin/plugins/Report/lang/japanese.php
/usr/share/phppgadmin/plugins/Report/lang/lithuanian.php
/usr/share/phppgadmin/plugins/Report/lang/mongol.php
/usr/share/phppgadmin/plugins/Report/lang/polish.php
/usr/share/phppgadmin/plugins/Report/lang/portuguese-br.php
/usr/share/phppgadmin/plugins/Report/lang/portuguese-pt.php
/usr/share/phppgadmin/plugins/Report/lang/romanian.php
/usr/share/phppgadmin/plugins/Report/lang/russian.php
/usr/share/phppgadmin/plugins/Report/lang/slovak.php
/usr/share/phppgadmin/plugins/Report/lang/spanish.php
/usr/share/phppgadmin/plugins/Report/lang/swedish.php
/usr/share/phppgadmin/plugins/Report/lang/turkish.php
/usr/share/phppgadmin/plugins/Report/lang/ukrainian.php
/usr/share/phppgadmin/plugins/Report/sql/reports-pgsql.sql
/usr/share/phppgadmin/themes/cappuccino
/usr/share/phppgadmin/themes/default
/usr/share/phppgadmin/themes/global.css
/usr/share/phppgadmin/themes/gotar
/usr/share/phppgadmin/themes/themes.php
/usr/share/phppgadmin/themes/cappuccino/global.css
/usr/share/phppgadmin/themes/default/global.css
/usr/share/phppgadmin/themes/gotar/global.css
/usr/share/phppgadmin/xloadtree/xloadtree2.js
/usr/share/phppgadmin/xloadtree/xtree2.js
/var/cache/apt/archives/phppgadmin_5.1-1_all.deb
/var/lib/dpkg/info/phppgadmin.conffiles
/var/lib/dpkg/info/phppgadmin.list
/var/lib/dpkg/info/phppgadmin.md5sums
/var/lib/dpkg/info/phppgadmin.postinst
/var/lib/dpkg/info/phppgadmin.preinst
/var/lib/dpkg/info/phppgadmin.prerm

Hors ligne

#18 Le 27/07/2014, à 12:51

jplemoine

Re : [RESOLU]fichier conf.d

sudo ln -s /etc/apache2/conf-available/phppgadmin.conf /etc/apache2/conf-enabled/phppgadmin.conf
sudo service apache2 restart

Si Apache redémarre, essaie d'accéder à phpgadmin : ça devrait fonctionner.


Membre de l'ALDIL (Association Lyonnaise pour le Développement de l'Informatique Libre)
- En pro, après 20 ans de développement, administrateur Linux / Unix depuis Avril 2019.
- En privé, sous Ubuntu-Xubuntu depuis 2009.

Hors ligne

#19 Le 27/07/2014, à 12:54

devillers

Re : [RESOLU]fichier conf.d

* Restarting web server apache2                                         [fail] 
 * The apache2 configtest failed.
Output of config test was:
apache2: Syntax error on line 216 of /etc/apache2/apache2.conf: Could not open configuration file /etc/apache2/conf-enabled/phppgadmin.conf: No such file or directory
Action 'configtest' failed.
The Apache error log may have more information.

Hors ligne

#20 Le 27/07/2014, à 13:07

jplemoine

Re : [RESOLU]fichier conf.d

De nouveau, peux-tu donner le retour de

ls -ld /etc/apache2/conf-avaible/*
ls -ld /etc/apache2/conf-enabled/*
ls -ld /etc/phppgadmin/apache.conf

Membre de l'ALDIL (Association Lyonnaise pour le Développement de l'Informatique Libre)
- En pro, après 20 ans de développement, administrateur Linux / Unix depuis Avril 2019.
- En privé, sous Ubuntu-Xubuntu depuis 2009.

Hors ligne

#21 Le 27/07/2014, à 13:17

devillers

Re : [RESOLU]fichier conf.d

ls -ld /etc/apache2/conf-avaible/*

ls: impossible d'accéder à /etc/apache2/conf-avaible/*: Aucun fichier ou dossier de ce type
ls -ld /etc/apache2/conf-enabled/*

lrwxrwxrwx 1 root root 30 juil. 25 22:35 /etc/apache2/conf-enabled/charset.conf -> ../conf-available/charset.conf
lrwxrwxrwx 1 root root 44 juil. 25 22:35 /etc/apache2/conf-enabled/localized-error-pages.conf -> ../conf-available/localized-error-pages.conf
lrwxrwxrwx 1 root root 46 juil. 25 22:35 /etc/apache2/conf-enabled/other-vhosts-access-log.conf -> ../conf-available/other-vhosts-access-log.conf
lrwxrwxrwx 1 root root 43 juil. 27 12:53 /etc/apache2/conf-enabled/phppgadmin.conf -> /etc/apache2/conf-available/phppgadmin.conf
lrwxrwxrwx 1 root root 31 juil. 25 22:35 /etc/apache2/conf-enabled/security.conf -> ../conf-available/security.conf
lrwxrwxrwx 1 root root 36 juil. 25 22:35 /etc/apache2/conf-enabled/serve-cgi-bin.conf -> ../conf-available/serve-cgi-bin.conf
ls -ld /etc/phppgadmin/apache.conf
ls: impossible d'accéder à /etc/phppgadmin/apache.conf: Aucun fichier ou dossier de ce type

Hors ligne

#22 Le 27/07/2014, à 13:21

jplemoine

Re : [RESOLU]fichier conf.d

Désolé, je m'ai trompé...

ls -ld /etc/apache2/conf-available/*
ls -ld /etc/apache2/conf-enabled/*

Membre de l'ALDIL (Association Lyonnaise pour le Développement de l'Informatique Libre)
- En pro, après 20 ans de développement, administrateur Linux / Unix depuis Avril 2019.
- En privé, sous Ubuntu-Xubuntu depuis 2009.

Hors ligne

#23 Le 27/07/2014, à 13:25

devillers

Re : [RESOLU]fichier conf.d

ls -ld /etc/apache2/conf-available/*
-rw-r--r-- 1 root root  315 janv.  3  2014 /etc/apache2/conf-available/charset.conf
-rw-r--r-- 1 root root 3224 janv.  3  2014 /etc/apache2/conf-available/localized-error-pages.conf
-rw-r--r-- 1 root root  189 janv.  3  2014 /etc/apache2/conf-available/other-vhosts-access-log.conf
lrwxrwxrwx 1 root root   27 juil. 27 09:28 /etc/apache2/conf-available/phppgadmin.conf -> /etc/phppgadmin/apache.conf
-rw-r--r-- 1 root root 2190 janv.  3  2014 /etc/apache2/conf-available/security.conf
-rw-r--r-- 1 root root  455 janv.  7  2014 /etc/apache2/conf-available/serve-cgi-bin.conf
 ls -ld /etc/apache2/conf-enabled/*
lrwxrwxrwx 1 root root 30 juil. 25 22:35 /etc/apache2/conf-enabled/charset.conf -> ../conf-available/charset.conf
lrwxrwxrwx 1 root root 44 juil. 25 22:35 /etc/apache2/conf-enabled/localized-error-pages.conf -> ../conf-available/localized-error-pages.conf
lrwxrwxrwx 1 root root 46 juil. 25 22:35 /etc/apache2/conf-enabled/other-vhosts-access-log.conf -> ../conf-available/other-vhosts-access-log.conf
lrwxrwxrwx 1 root root 43 juil. 27 12:53 /etc/apache2/conf-enabled/phppgadmin.conf -> /etc/apache2/conf-available/phppgadmin.conf
lrwxrwxrwx 1 root root 31 juil. 25 22:35 /etc/apache2/conf-enabled/security.conf -> ../conf-available/security.conf
lrwxrwxrwx 1 root root 36 juil. 25 22:35 /etc/apache2/conf-enabled/serve-cgi-bin.conf -> ../conf-available/serve-cgi-bin.conf

Hors ligne

#24 Le 27/07/2014, à 13:36

jplemoine

Re : [RESOLU]fichier conf.d

Tu as probablement effacé le fichier du paquet....
Ne tapes que les lignes que je te donne..

sudo rm /etc/apache2/conf-available/phppgadmin.conf
sudo apt-get purge phppgadmin
sudo apt-get install phppgadmin
ls -ld /etc/apache2/conf-available/*
ls -ld /etc/apache2/conf-enabled/*

Dernière modification par jplemoine (Le 27/07/2014, à 13:37)


Membre de l'ALDIL (Association Lyonnaise pour le Développement de l'Informatique Libre)
- En pro, après 20 ans de développement, administrateur Linux / Unix depuis Avril 2019.
- En privé, sous Ubuntu-Xubuntu depuis 2009.

Hors ligne

#25 Le 27/07/2014, à 13:46

devillers

Re : [RESOLU]fichier conf.d

A la ligne n°3 réserer à l'installation de phppgadmin j'ai une erreur:

sudo apt-get install phppgadmin
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances       
Lecture des informations d'état... Fait
Paquets suggérés :
  slony1-bin
Les NOUVEAUX paquets suivants seront installés :
  phppgadmin
0 mis à jour, 1 nouvellement installés, 0 à enlever et 0 non mis à jour.
Il est nécessaire de prendre 0 o/704 ko dans les archives.
Après cette opération, 3 130 ko d'espace disque supplémentaires seront utilisés.
Sélection du paquet phppgadmin précédemment désélectionné.
(Lecture de la base de données... 203668 fichiers et répertoires déjà installés.)
Préparation du décompactage de .../phppgadmin_5.1-1_all.deb ...
Décompactage de phppgadmin (5.1-1) ...
Paramétrage de phppgadmin (5.1-1) ...
 * Reloading web server apache2                                                  * 
 * The apache2 configtest failed. Not doing anything.
Output of config test was:
apache2: Syntax error on line 216 of /etc/apache2/apache2.conf: Could not open configuration file /etc/apache2/conf-enabled/phppgadmin.conf: No such file or directory
Action 'configtest' failed.
The Apache error log may have more information.
invoke-rc.d: initscript apache2, action "reload" failed.
dpkg: error processing package phppgadmin (--configure):
 le sous-processus script post-installation installé a retourné une erreur de sortie d'état 1
Des erreurs ont été rencontrées pendant l'exécution :
 phppgadmin
E: Sub-process /usr/bin/dpkg returned an error code (1)
ls -ld /etc/apache2/conf-available/*
-rw-r--r-- 1 root root  315 janv.  3  2014 /etc/apache2/conf-available/charset.conf
-rw-r--r-- 1 root root 3224 janv.  3  2014 /etc/apache2/conf-available/localized-error-pages.conf
-rw-r--r-- 1 root root  189 janv.  3  2014 /etc/apache2/conf-available/other-vhosts-access-log.conf
-rw-r--r-- 1 root root 2190 janv.  3  2014 /etc/apache2/conf-available/security.conf
-rw-r--r-- 1 root root  455 janv.  7  2014 /etc/apache2/conf-available/serve-cgi-bin.conf
ls -ld /etc/apache2/conf-enabled/*
lrwxrwxrwx 1 root root 30 juil. 25 22:35 /etc/apache2/conf-enabled/charset.conf -> ../conf-available/charset.conf
lrwxrwxrwx 1 root root 44 juil. 25 22:35 /etc/apache2/conf-enabled/localized-error-pages.conf -> ../conf-available/localized-error-pages.conf
lrwxrwxrwx 1 root root 46 juil. 25 22:35 /etc/apache2/conf-enabled/other-vhosts-access-log.conf -> ../conf-available/other-vhosts-access-log.conf
lrwxrwxrwx 1 root root 43 juil. 27 12:53 /etc/apache2/conf-enabled/phppgadmin.conf -> /etc/apache2/conf-available/phppgadmin.conf
lrwxrwxrwx 1 root root 31 juil. 25 22:35 /etc/apache2/conf-enabled/security.conf -> ../conf-available/security.conf
lrwxrwxrwx 1 root root 36 juil. 25 22:35 /etc/apache2/conf-enabled/serve-cgi-bin.conf -> ../conf-available/serve-cgi-bin.conf

Dernière modification par devillers (Le 27/07/2014, à 14:13)

Hors ligne