Skip to Content.
Sympa Menu

grouper-users - [grouper-users] RE: Individual Component Upgrade

Subject: Grouper Users - Open Discussion List

List archive

[grouper-users] RE: Individual Component Upgrade


Chronological Thread 
  • From: "Hyzer, Chris" <>
  • To: Akki Kumar <>
  • Cc: "" <>
  • Subject: [grouper-users] RE: Individual Component Upgrade
  • Date: Thu, 4 May 2017 18:53:09 +0000
  • Accept-language: en-US
  • Authentication-results: spf=none (sender IP is ) ;
  • Ironport-phdr: 9a23:QBH06xMJ53f000FQxiMl6mtUPXoX/o7sNwtQ0KIMzox0I/39rarrMEGX3/hxlliBBdydsKMazbSM+PGxEUU7or+5+EgYd5JNUxJXwe43pCcHRPC/NEvgMfTxZDY7FskRHHVs/nW8LFQHUJ2mPw6arXK99yMdFQviPgRpOOv1BpTSj8Oq3Oyu5pHfeQtFiT68bL9oLRi6swrdu80SjIB/Nqs/1xzFr2dSde9L321oP1WTnxj95se04pFu9jlbtuwi+cBdT6j0Zrw0QrNEAjsoNWA1/9DrugLYTQST/HscU34ZnQRODgPY8Rz1RJbxsi/9tupgxCmXOND9QL4oVTi+6apgVRnlgzoFOTEk6mHaksx+grxGrhK9qRJxwIDUb4OUNPVicazQZskVSXZdUstLSyBNHoGxYo0SBOQBJ+ZYqIz9qkMAoRW8BQitBf3gyiVQinTrw6A60/4hEQDd3AAuAtkDt3HUo8n1NKYSUOG60rPIwC7Cb/NNxTjx8pXIcgg/rvGKW7J8a9TexlQyFw7ciFibtILrPzSQ1usXsmib6fJtVe2oi24gpAFxpiagyt0whYnOg4IYzE3P+yZhwIstO9G3UlJ3bcOhHZdNqi2WKo57Qs0tTm10pCo3z78LtoC0cSQXzZkqwgDTZ+CJfoSQ/x7uWvqdLS18iX54Yr6zmQu+/Ey6xuHhVMS50VBHpTdfnNbWrHACzRnT59CHSvRj+keh3i6C2RjP5+9DPUw4iLPXJoM5zLM+j5YTtl/METHslEXxka+Wal4r+u+16+Thf7rqvIecN5VzigHiLKshhtC/AeU/MggIRWSb/vm81KHn/U3+R7VKjec6nbXesJDfPcgbp6i5DBFJ0os79RqwFSuq3MkdkHUaMV5JZReKj4bmNl3SPPz1CPWyjEqjnTt2wv3LO6PtDonDI3TblbfuZ7d960pSyAopytBf4opZCrQdL/LzWk7wtcLXDgUiPgy12OboFM9x1p4GWW2RBK+ZNrnevkGV6eIyO+WMfpMauC7hK/g54P7jlXA5mUUafam0xZsYdmq4Eu17I0WCf3XsmMwBHHwOvgo/V+zqlEaCXSBJa3azWaI8+i80CJigDYjdWoChnqaN0zmmEZ1LNSh6DQWlEnTpP6aZXv4WIHabJ8ZzkzoLTKWsUJMg0he17Fel47ViJ+vQvCYfsMSw+sJy4riZtQAg+CYwR++dyWCWBSkgm2gIVi07xoh+ukc710+O164+jvBFQ48Ar8hVWxs3YMaPh9dxDMr/D1rM
  • Spamdiagnosticmetadata: NSPM
  • Spamdiagnosticoutput: 1:99

Ugh, I meant this:

 

/tmp/grouperInstaller_v2_2_3/grouper.pspng-2.3.0

 

Sorry…

 

Thanks

Chris

 

From: Akki Kumar [mailto:]
Sent: Thursday, May 04, 2017 1:41 PM
To: Hyzer, Chris <>
Cc:
Subject: Re: Individual Component Upgrade

 

Hi Chris,

 

The grouper installer threw the same error as before with below path. Also, I tried running the installer on my colleague's machine and it's throwing the same error. Are you able to replicate the issue?

 

/tmp/grouperInstaller_v2_2_3/grouper.pspng-2.3.0/lib/custom/

 

Thank you,

Akki 

 

On Thu, May 4, 2017 at 1:30 PM, Hyzer, Chris <> wrote:

The jar is in the right place, now use this path:

 

/tmp/grouperInstaller_v2_2_3/grouper.pspng-2.3.0/lib/custom/

 

Thanks

Chris

 

 

From: Akki Kumar [mailto:]
Sent: Thursday, May 04, 2017 1:11 PM


To: Hyzer, Chris <>
Cc:
Subject: Re: Individual Component Upgrade

 

Hi Chris,

 

I copied grouper-pspng-2.3.0.jar to /tmp/grouperInstaller_v2_2_3/grouper.pspng-2.3.0/lib/custom/ and ran the grouper installer to add patch, but it failed. As per code, path & file name is correct though

 

I have attached the screenshots to below link:

 

Thank you,

Akki 

 

On Thu, May 4, 2017 at 12:03 PM, Hyzer, Chris <> wrote:

The installer will copy the pspng jars to the lib/custom dir… is that were you have it?  Maybe move the files there and try again.  J

 

//code that checks to see if valid pspng install:

 

//look for custom dir

        File customLibDir = new File(grouperInstaller.upgradeExistingApplicationDirectoryString + "lib" + File.separator + "custom");

        if (!customLibDir.exists()) {

          return false;

        }

   

        //see if psp jar is there

        String grouperVersion = grouperInstaller.grouperVersionOfJar().toString();

 

//look for pspng jar with certain name in custom dir…

        List<File> files = GrouperInstallerUtils.jarFindJar(customLibDir, "grouper-pspng-" + grouperVersion + ".jar");

 

        if (GrouperInstallerUtils.length(files) == 0) {

          return false;

        }

 

From: Akki Kumar [mailto:]
Sent: Thursday, May 04, 2017 11:30 AM
To: Hyzer, Chris <>
Cc:
Subject: Re: Individual Component Upgrade

 

Hi Chris,

 

I copied expanded grouper.pspng-2.3.0 folder from grouper API tarball to the Grouper project. I am trying to apply PSPNG patch, but it's failing with below error after I add PSPNG Installation Path. I tried UI path and it threw the same error. What path should I enter to apply PSPNG patch?

 

Where is the grouper PSPNG installed? /tmp/grouperInstaller_v2_2_3/grouper.pspng-2.3.0/lib/

 

Cant find Grouper PSPNG properties files or libs, looked in the directory, /classes/ , /conf/ , /WEB-INF/classes/ , /lib/ , /WEB-INF/lib/ , /lib/grouper/ , /dist/lib/

 

 

Where is the grouper PSPNG installed? /tmp/grouperInstaller_v2_2_3/grouper.ui-2.3.0/dist/grouper/

 

Cant find Grouper PSPNG properties files or libs, looked in the directory, /classes/ , /conf/ , /WEB-INF/classes/ , /lib/ , /WEB-INF/lib/ , /lib/grouper/ , /dist/lib/

 

Thank you,

Akki

 

 

On Fri, Apr 28, 2017 at 4:07 PM, Hyzer, Chris <> wrote:

Sure, that will work.  Though you might not need API if you just have UI/WS/PSP, iei you don’t have just an API tarball expanded.

 

For UI/WS use a webapp dir.

 

For PSP use the expanded grouper API tarball

 

For API, use the expanded grouper API tarball

 

Ok?

 

Thanks,

Chris

 

From: Akki Kumar [mailto:]
Sent: Friday, April 28, 2017 10:16 AM
To: Hyzer, Chris <>;
Subject: Individual Component Upgrade

 

Hi Chris,

 

I am upgrading Grouper from version 2.2.2 to 2.3.0 in following order (individually):

  1. API
  2. UI
  3. PSP
  4. WS

 

Questions:

  • Is above upgrade order correct? (I have to update individually because UI & Loader are installed on different servers)
  • Does below questions path point to the dist folder? Please let me know what path should I use for the API, PSP, & WS. 
    • Where is the grouper API installed?
    • Where is the grouper PSP installed?
    • Where is the grouper WS installed? 

 

Thank you,

Akki

 

 

 




Archive powered by MHonArc 2.6.19.

Top of Page