Patchfinder for Linux

3879
4
Jump to solution
07-01-2015 03:15 AM
HildegardGerlach1
New Contributor III

Hi,

I upgraded ArcGIS for Server and WebAdaptor on a Linux machine to 10.3.1. I downloaded the latest Patchfinder I can find, e.g. here

ArcGIS 10.3.1 for Server (Linux) WMS GetCapabilities Patch | Samples and Utilities

at the bottom of the page.

Running PatchFinder does not show the releases installed. It seems that it is still an old version.

Is there a newer version around ?

Hilde

Tags (1)
0 Kudos
1 Solution

Accepted Solutions
DanielUrbach
Occasional Contributor II

Are you running the script as the same user who installed ArcGIS Server?  The script seems to be checking the $HOME/ESRI.properties.... file, so it will not find any products installed by any other user.

Also, the script does not seem to have been updated for version 10.3.1, so it may just list the installed products as 10.3, or it may not list them at all.

View solution in original post

4 Replies
AsrujitSengupta
Regular Contributor III
0 Kudos
HildegardGerlach1
New Contributor III

Thanks for your help, but it seems to be the same file as from the link I got it (same size).

The result of running PatchFinder is:

./PatchFinder

  ###################################################################

  ===================================================================

              Welcome to the ESRI Patch Finder utility

  ===================================================================

  ###################################################################

  This utility automatically detects which ESRI product is currently

  installed on your system. It also detects all currently installed

  Service Packs, Hot Fixes and Patches.

  At any prompt, press the Return key to accept the default option

  shown in parenthesis or press 'q' to quit and exit this utility.

  The following products were found on your system.

  Select a Product to Search

  ===================================================================

(1) ArcGIS Web Adaptor for the Java Platform

Please make a selection from the list above or to quit (1): 1

  Searching ArcGIS Web Adaptor for the Java Platform ...

  *********ArcGIS Web Adaptor (Java Platform) install summary:********

  ArcGIS Web Adaptor (Java Platform) 10.3 Install Location:

  /opt/arcgis/webadaptor10.3/java

  *******************************************************************

Actually I have ArcGIS for Server and WebAdaptor 10.3.1 installed and removed WebAdaptor 10.3.

0 Kudos
DanielUrbach
Occasional Contributor II

Are you running the script as the same user who installed ArcGIS Server?  The script seems to be checking the $HOME/ESRI.properties.... file, so it will not find any products installed by any other user.

Also, the script does not seem to have been updated for version 10.3.1, so it may just list the installed products as 10.3, or it may not list them at all.

HildegardGerlach1
New Contributor III

Yes, I am running the PatchFinder as the same user who installed ArcGIS Server. Indeed, I had a look at the script now, you are right, it is not updated for 10.3.1.

So adding

if [ -f "$HOME/.ESRI.properties.`uname -n`.10.3.1" ]

then

  ProductSetupFile="$HOME/.ESRI.properties.`uname -n`.10.3.1"

elif [ -f "$HOME/.ESRI.properties.`uname -n`.10.3" ]

.......

resolves the problem. Didn't know it was so easy to update it myself.

Thanks