je reviens vous voir car j'ai un gros problème. J'ai sur mon SME 7 un raid 1 logiciel ainsi qu'un raid 5 materiel pour mes données.
un jour j'ai cramé un des disques dun raid 5, j'ai donc attendu que mon disque parte en SAV et qu'il revienne pour redémarrer le serveur.
Donc la reconstruction a marcher parfaitement, mais par contre mon SME ne marche pas tip-top !
il demarre bien et fonctionne bien, mais plus moyen d'aller sur la console d'administration Web (ni même en direct avec putty).
j'ai droit à ce type de message si j'essaye de me connecter sur l'interface :
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, admin and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
j'ai donc essayé d'aller voir dans var/log/admin_error_log.1 et je retrouve cette ligne :
[Thu Jul 19 23:04:56 2007] [error] [client 127.0.0.1] Premature end of script headers: login, referer: https://localhost/server-manager/noframes
[Fri Jul 20 13:39:20 2007] [error] [client 127.0.0.1] [Apache::AuthTkt] open of config file '/etc/e-smith/web/common/cgi-bin/AuthTKT.cfg' failed: No such file or directory at /usr/lib/perl5/vendor_perl/5.8.5/i386-linux-thread-multi/Apache/AuthTkt.pm line 74.
[Fri Jul 20 13:39:20 2007] [error] [client 127.0.0.1] Premature end of script headers: login
j'ai bien regardé la ligne 74 comme indiqué dans le fichier AuthTkt.pm, mais je ne vois pas quoi modifier !
voici un extrait du fichier :
- Code: Tout sélectionner
# Parse (simplistically) the given apache config file for TKTAuth directives
sub parse_conf
{
my $self = shift;
my ($conf) = @_;
my %seen = ();
open CF, "<$conf" or
die "[$me] open of config file '$conf' failed: $!"; <= ligne 74
# Take settings from first instance of each TKTAuth directive found
local $/ = "\n";
while (<CF>) {
if (m/^\s*(${PREFIX}\w+)\s+(.*)/) {
$seen{$1} = $2 unless exists $seen{$1};
}
}
close CF;
quelqu'un serait il quoi faire pour me dépanner ?
Merci d'avance