Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

No acces in S8300 to "configure server"

Status
Not open for further replies.

knoester

Technical User
Nov 20, 2005
72
0
0
NL
Hello all,

If i try to acces the "configure server" in the webpage of an S8300 it is denied by saying -->web_util : 13 : could not load file: /var/tmp/conf_queue
Anyone knows what to do.
I am logged in by remote acces as dadmin.
 
/var/tmp is a directory where temporary files go. So conf_queue should be a temporary file.
If you can get to "shell" (bash) commandline, try these:
cd /var/tmp # did this work?
date > junkfile # did this work?
rm junkfile # remove the test file
ls -ld /var/tmp # permissions should be drwxrwxrwx
ls -lt conf* # any files match this?

steve
 
Steve:
hello i have tried the things you asked me.

everything can be done.
I can add a file and delete it.

with ls -ld /var/tmp # permissions is drwxrwxrwt
so only the last letter is different.

with s -lt conf* it shows --> 1-rw-rw---- 1 admhfd users 2481 Mar 28 17:32 conf_queue


Sunnyphone:
I get the same error with firefox
 
Try this:
cd /var/tmp
chmod 777 conf_queue # make file usable by all
now retry the config

if it still fails, try this:
mv conf_queue conf_queue.old # rename the file

Now retry the configure
- if it works, be happy
- if it does not work, do this:
mv conf_queue.old conf_queue # move the file back

steve
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top