Monday, February 21, 2011

Im trying to uninstall directory server 5.2 because it failed with a
configuration error, and when I try to reinstall it shows all
components to be installed greyed out as 0 bytes so I cannot continue
the install as mentioned in:
http://swforum.sun.com/jive/thread.jspa?messageID=210740

They suggest using prodreg to uninstall or edit /etc/ds/versions but
prodreg fails with:

Exception in thread "main" java.lang.NoClassDefFoundError:
uninstall_dirserver

and I do not have a /etc/ds/versions file. Please help

taking out DS entries from /var/sadm/install/productregistry fixed it.



http://compgroups.net/comp.unix.solaris/Directory-server-5.2-uninstall-problem

Monday, February 14, 2011

Policy Server on Solaris with Apache Web Server


Policy Server on Solaris with Apache Web ServerJoyce Hampson 5/19/00; Elyse Salberg updated 3/16/01
Problem Description:Certain changes need to be made to the httpd.conf file in order to run the SiteMinder Admin UI on an Apache Web Server. Also, some modules such as mod_alias, mod_cgi, and mod_env must be compiled into Apache or called in the httpd.conf.
Other modules may be necessary for certain instructions; for example, mod_access is needed to use the "Order allow,deny" and "Allow from all" lines (comment them out otherwise).
Additions needed in httpd.conf:NOTE: Make sure to edit the paths to reflect the configuration of the specific system.
Alias /siteminder/ "/opt/siteminder/admin/"
Alias /sitemindercgi/ "/opt/siteminder/admin/"
Alias /SMReports/ "/opt/siteminder/reports/"

<Directory "/opt/siteminder/admin">
Options Indexes MultiViews ExecCGI
AllowOverride None
Order allow,deny
Allow from all
</Directory>

<Directory "/opt/siteminder/reports">
Options Indexes MultiViews ExecCGI
AllowOverride None
Order allow,deny
Allow from all
</Directory>
ScriptAlias /sitemindercgi/ "/opt/siteminder/admin/"

<Directory "/opt/siteminder/admin">
AllowOverride None
Options ExecCGI
Order allow,deny
Allow from all
</Directory>

SetEnv SM_ADM_UDP_PORT "44444"
SetEnv SM_ADM_TCP_PORT "44444"
SetEnv LD_LIBRARY_PATH /lib:/usr/lib:/opt/siteminder/bin:
If not already added:
AddHandler cgi-script .exe