|
Home > Archive > Netware Webserver > May 2005 > Netstorage on server with GW Webaccess?
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Netstorage on server with GW Webaccess?
|
|
| jtucker@rrmm.net 2005-05-16, 5:45 pm |
| i am not sure exactly but i can put you on the right track. it sounds to me
that your alias for netstorage was reconfigured in one of the conf files
for apache.
my system is as follows
in httpd.conf in apache folder
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxx
# Include XTier configuration file
Include sys:/netstorage/xsrv.conf
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxx
contents of xsrv.conf
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxx
LoadModule xsrv_module modules/mod_xsrv.nlm
#
<Location /oneNet>
AllowOverride AuthConfig
AuthType Novell
AuthName "AuthXTier"
require valid-user
SetHandler XSrv
Order deny,allow
Allow from all
</Location>
# The following lines makes apache aware of the location of the /NetStorage
context
Alias /NetStorage "SYS:/tomcat/4/webapps/NetStorage"
<Directory "SYS:/tomcat/4/webapps/NetStorage">
Options +MultiViews
AllowOverride None
Order deny,allow
Allow from all
</Directory>
# The following line mounts all JSP files and the /servlet/ uri to tomcat
JkMount /NetStorage/servlet/* ajp13
JkMount /NetStorage/*.jsp ajp13
# The following section makes /NetStorage/servlet a protected resource.
<Location /NetStorage/servlet>
AllowOverride AuthConfig
AuthType Novell
AuthName "AuthXTier"
require valid-user
Order deny,allow
Allow from all
</Location>
# The following line prohibits users from directly accessing WEB-INF
<Location "/NetStorage/WEB-INF/">
AllowOverride None
deny from all
</Location>
# Use Directory too. On Windows, Location doesn't work unless case matches
<Directory "SYS:/tomcat/4/webapps/NetStorage/WEB-INF/">
AllowOverride None
deny from all
</Directory>
# The following line prohibits users from directly accessing META-INF
<Location "/NetStorage/META-INF/">
AllowOverride None
deny from all
</Location>
# Use Directory too. On Windows, Location doesn't work unless case matches
<Directory "SYS:/tomcat/4/webapps/NetStorage/META-INF/">
AllowOverride None
deny from all
</Directory>
AddLanguage zh-tw .zh-tw
AddLanguage zh-cn .zh-cn
# The following section makes /nps/servlet a protected resource.
<Location /nps/servlet>
AllowOverride AuthConfig
AuthType Novell
AuthName "AuthXTier"
require valid-user
Order deny,allow
Allow from all
</Location>
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxx
so my guess is something in here is hosed.
i would try to look on backup copies of all the conf files made just before
you installed the GW webaccess. also you can test the NetStorage config on
another netware server in the tree to see if its working. wont work from
the outside of course.
good luck.
| |
| Alan Thompson 2005-05-16, 5:45 pm |
| Thank You (didnt catch the name...)
The...
# Include XTier configuration file
Include sys:/netstorage/xsrv.conf
was missing, I added this line to the httpd.conf and reloaded, as if by
magic, it could find the NetStorage webapp :-)
Thanks
Alan
| |
| jtucker@rrmm.net 2005-05-16, 5:45 pm |
| groovie. glad i was able to help. sometimes really simple questions go
unanswered. and since i was here looking for an answer to my unanswered
simple question i thought i would try to help. ;)
jeff
|
|
|
|
|