Athena - 2015-12-24

Hello,

I installed webmin on my Raspberry Pi. It worked fine for awhile. Yesterday I started it up on Firefox by using https:/mydomain/webmin:10000/ but it comes back with an error "Not Found. The requested URL /webmin:10000/ was not found on this server." message. If I start it without ":10000/", I get the script below. What is wrong? The webmin service is running.

#!/usr/bin/perl
# Display all Webmin modules visible to the current user

BEGIN { push(@INC, ".."); };
use WebminCore;

&init_config();
&ReadParse();
$hostname = &get_display_hostname();
$ver = &get_webmin_version();
&get_miniserv_config(\%miniserv);
if ($gconfig{'real_os_type'}) {
if ($gconfig{'os_version'} eq "*") {
$ostr = $gconfig{'real_os_type'};
}
else {
$ostr = "$gconfig{'real_os_type'} $gconfig{'real_os_version'}";
}
}
else {
$ostr = "$gconfig{'os_type'} $gconfig{'os_version'}";
}
%access = &get_module_acl();

# Build a list of all modules
@modules = &get_visible_module_infos();

if (!defined($in{'cat'})) {
# Maybe redirect to some module after login
local $goto = &get_goto_module(\@modules);
if ($goto) {
&redirect($goto->{'dir'}.'/');
exit;
}
}

$gconfig{'sysinfo'} = 0 if ($gconfig{'sysinfo'} == 1);

.....

 

Last edit: Athena 2015-12-24