Sun Control Station CC Edition installation failed with strange error
When running the ./install.sh script to perform the product installation, it ends up showing this error:
Installation failed for the following reasons:
- .x (Unix) is not installed.
ERROR: Preinstall failed
Errors detected...exiting.(1)
Does anybody know what ".x (Unix)" means ? Does it need a X-Window server installed ? At this point, in previous installation tries, there were other errors related to dependency packages not installed; I've installed all of them and those errors dissapeared, but this one remains.
# 1
it seems there is a bug in the preinstall testscript for scs located in ./scs/install/preinstall that does not returen a value for the error.
I am guessing you dont have apache installed SUNWapchr & SUNWapchu
Try installing those and give it another shot.
366 checkApache() {
367printInfo "Validating version of Apache installed"
368
369APACHE_LIB="/usr/apache/libexec"
370APACHE_BIN="/usr/apache/bin/httpd"
371APACHE_VER="Apache/1.3"
372APCHE_PORT="80"
373
374# Check for a matching apache SVR4 pkg
375$PKGINFO -q SUNWapchr && $PKGINFO -q SUNWapchu
376
377if [ $? -eq 0 ]; then
378RETURN="$TRUE"
379else
380RETURN="$FALSE"
381fi
382
383if [ "$RETURN" = "$FALSE" ]; then
384logError " - $APACHE_RPM.x (Unix) is not installed."
385return
386fi