Sun Java Enterprise System 5 Update 1 Release Notes

After upgrading Portal Server 7.1 in non-English locales, some portal applications do not function correctly (6569515)

When upgrading Portal Server 7.1 to Portal Server 7.1 Update 2 using patches, various portal-related web applications might not function correctly after running psupdate in a non-English locale.

Solution Rerun the psupdate script in the English locale:

  1. Display and note down the current values of the $LC_ALL and $LANG shell variables:


    echo $LC_ALL
    echo $LANG
  2. Set these variables to values for the English locale:


    export LC_ALL=en_US.UTF-8
    export LANG=en_US.UTF-8
  3. Rerun the psupdate script:


    psupdate -a -i
  4. Restore the values of $LC_ALL and $LANG:


    export LC_ALL=value-noted-in-step-1
    export LANG=value-noted-in-step-1