Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Step 1

Create a directory (or select an existing directory) in which to save the package file.

Step 2

Save the package file into that directory.

Step 3

Uncompress and extract the installation file in the current working directory. The command to extract the files is:
 
Debian Package

<pre>
zcat sb-soa-6.7.x.x-linux-3-x86_64-deb.tar.Z | tar xvf -
</pre>
Panel
Html bobswift

RPM Package

html-bobswift
Panel
<pre>
zcat sb-soa-6.7.x.x-linux-2.6-x86_64.tar.Z | tar xvf -
</pre>

 
You also can use the gzip command to uncompress and extract the files:
 
Debian Package

html-bobswift
Panel
<pre>
gzip -cd sb-soa-6.7.x.x-linux-3-x86_64-deb.tar.Z | tar xvf -
</pre>

RPM Package

html-bobswift
Panel
<pre>
gzip -cd sb-soa-6.7.x.x-linux-2.6-x86_64.tar.Z | tar xvf -
</pre>


Step 4

After the extraction is complete, run the installation script, upsinst, which executes the debian packaging commands:
 

html-bobswift
Panel
<pre>
./upsinst
</pre>

 
An installation log is written to file install.log in the current directory. upsinst automatically restarts the Universal Broker daemon, ubrokerd, at the end of the install.

Step 5

From the license file that was sent to you by Stonebranch, Inc., add the license information to the /etc/universal/uacs.conf file.

Step 6

Recycle Universal Broker using the following commands (cd to /opt/universal/ubroker):
 
First:
 

html-bobswift
Panel
<pre>
./ubrokerd stop
</pre>

 
Then:
 

html-bobswift
Panel
<pre>
./ubrokerd start
</pre>


Step 7

Use Universal Query (cd to /opt/universal/bin) to validate that the Universal Application Container Server component of Universal Agent for SOA 6.7.x is running:
 
uquery -i localhost (or the name of your server)
 
The output for Universal Application Container Server should have the following format:
 

html-bobswift
Panel
<pre>
 
Component ID..............: 1360109684
 Component Name............: uac (Server)
 Component Description.....: Universal Application Container Server
 Component Version.........: 6.7.0 Level 0 Release Build 100
 Component Type............: uac
 Component Process ID......: 23331000
 Component Start Time......: 18:14:42
 Component Start Date......: 01/05/19
 Component Command ID......: uac
 Component State...........: REGISTERED
 Component MGR UID.........:
 Component MGR Work ID.....:
 Component MGR Host Name...:
 Component MGR IP Address..:
 Component MGR Port........:
 Component Comm State......: ESTABLISHED
 Component Comm State Time.: 18:14:44
 Component Comm State Date.: 01/05/19
 Component MGR Restartable.: NO
 Component Comment.........:
</pre>


Removing Universal Agent for SOA for Linux

...

Debian Package
Universal Agent for SOA for Linux is removed with the dpkg command. The command must be executed with the superuser authority.

<pre>
sudo dpkg -r ups
</pre>
Panel
Html bobswift

RPM Package
Universal Agent for SOA for Linux is removed with the rpm command. The command must be executed with the superuser authority.

html-bobswift
Panel
<pre>
sudo rpm -e ups
</pre>

Listing Universal Agent for SOA for Linux Information

Debian Package
To list information for Universal Agent for SOA for Linux, issue the following command:

html-bobswift
Panel
<pre>
dpkg -l ups
</pre>

RPM Package
To list information for Universal Agent for SOA for Linux, issue the following command:

<pre>
rpm -qi ups
</pre>
Panel
Html bobswift