Koozali.org: home of the SME Server

webmail and server-manager issues since update.

Mortale

webmail and server-manager issues since update.
« Reply #15 on: September 28, 2006, 08:04:31 AM »
it is a stock server/gateway no mods.

the only error that seems to be in my access logs is a sshcache error. I have my chache off (could this be the issue?

Offline william_syd

  • *****
  • 1,608
  • +0/-0
  • Nothing to see here.
    • http://www.magicwilly.info
webmail and server-manager issues since update.
« Reply #16 on: September 28, 2006, 08:09:45 AM »
Quote from: "Mortale"
it is a stock server/gateway no mods.

the only error that seems to be in my access logs is a sshcache error. I have my chache off (could this be the issue?


I'm not famililar with sshcache in anyway. If it was you that turned it off and you can reactivate with no problems then if it was me I would give it ago.

However, have these pages ever displayed after your cache was turned off?
Regards,
William

IF I give advise.. It's only if it was me....

Mortale

webmail and server-manager issues since update.
« Reply #17 on: September 28, 2006, 08:18:54 AM »
Quote
However, have these pages ever displayed after your cache was turned off?


Nope. On or off makes no matter. it jsut doens not work.

Offline william_syd

  • *****
  • 1,608
  • +0/-0
  • Nothing to see here.
    • http://www.magicwilly.info
webmail and server-manager issues since update.
« Reply #18 on: September 28, 2006, 09:15:50 AM »
Quote from: "Mortale"
Quote
I don't know.

If you are on the local network server-manager and webmail (when activated) should just work.


I know, but they don't.

is there a way I can backup some files without server-manager and do a fresh install?

This system serves about 100 people and they are getting upset at the delay.


You do have access to server manager.
Regards,
William

IF I give advise.. It's only if it was me....

Mortale

webmail and server-manager issues since update.
« Reply #19 on: September 28, 2006, 09:26:13 AM »
I only have access to the server  manager from the sme box itself. I cannot log in over the web from my local network. I get a 404 error.

Offline william_syd

  • *****
  • 1,608
  • +0/-0
  • Nothing to see here.
    • http://www.magicwilly.info
webmail and server-manager issues since update.
« Reply #20 on: September 28, 2006, 10:11:01 AM »
Quote from: "Mortale"
I only have access to the server  manager from the sme box itself. I cannot log in over the web from my local network. I get a 404 error.


Sorry, my mistake.

Can you tunnel in via SSH ?
Regards,
William

IF I give advise.. It's only if it was me....

WACOMalt

webmail and server-manager issues since update.
« Reply #21 on: September 28, 2006, 02:42:58 PM »
ack hijacked thread!

joking joking. I just havent checked replies for a long while...

anyways, which logs should I look at to find errors for the webmail and server-manager?

Offline william_syd

  • *****
  • 1,608
  • +0/-0
  • Nothing to see here.
    • http://www.magicwilly.info
webmail and server-manager issues since update.
« Reply #22 on: September 28, 2006, 02:51:16 PM »
SSH login as admin and see if you can get to server-manager that way.
Regards,
William

IF I give advise.. It's only if it was me....

WACOMalt

webmail and server-manager issues since update.
« Reply #23 on: September 29, 2006, 03:23:20 AM »
I can login that way.

WACOMalt

webmail and server-manager issues since update.
« Reply #24 on: September 29, 2006, 11:38:49 PM »
Webmail and server-manager over HTTP/S is still not working.

could anything with my problems here point to network issues? like an incorrect setup? (though nothing has changed, and it WAS working...)

Offline william_syd

  • *****
  • 1,608
  • +0/-0
  • Nothing to see here.
    • http://www.magicwilly.info
webmail and server-manager issues since update.
« Reply #25 on: September 30, 2006, 12:28:34 AM »
Quote from: "WACOMalt"
Webmail and server-manager over HTTP/S is still not working.

could anything with my problems here point to network issues? like an incorrect setup? (though nothing has changed, and it WAS working...)



http://forums.contribs.org/index.php?topic=33952.msg145499#msg145499
Regards,
William

IF I give advise.. It's only if it was me....

WACOMalt

webmail and server-manager issues since update.
« Reply #26 on: September 30, 2006, 11:32:24 PM »
well, that topic helps a little but thats the opposite ordeal as mine.

His, he couldnt access outside of his network, mine I cannot access INSIDE my network.. or outside for that matter.

from outside my network, I get a time out on the webmail and server-manager

Offline william_syd

  • *****
  • 1,608
  • +0/-0
  • Nothing to see here.
    • http://www.magicwilly.info
webmail and server-manager issues since update.
« Reply #27 on: October 01, 2006, 08:07:07 AM »
Regards,
William

IF I give advise.. It's only if it was me....

Mortale

webmail and server-manager issues since update.
« Reply #28 on: October 02, 2006, 04:31:24 AM »
This will fix your problem

Quote

OK, got the web and admin pages running again.

I deleted the private key and certificate:
Code:
rm  /home/e-smith/ssl.crt/darkstar.edenmonarolabour.org.crt
rm /home/e-smith/ssl.key/darkstar.edenmonarolabour.org.key


and then ran
Code:
signal-event domain-modify


If anyone needs to delete those pesky lock files (I needed to to this quite often), here is a script you can use:

Code:

#!/bin/sh

LOCK_FILE="./killthese.txt"

# First stop the webservers
/etc/init.d/httpd-admin stop
/etc/init.d/httpd-e-smith stop


# Now produce the lock file
ipcs -s | grep www | cut -d " " -f2 > $LOCK_FILE

# open file test.data for reading
exec 6<$LOCK_FILE
# read until end of file
while read -u 6 dta
do
  echo deleting resource "$dta"
  ipcrm sem $dta
done

# close file killthese.txt
exec 6<&-

# delete the data file
rm -f $LOCK_FILE

#now start the webservers again
/etc/init.d/httpd-admin start
/etc/init.d/httpd-e-smith start


From:
http://forums.contribs.org/index.php?topic=33171.0