To install a deployable unit, use the following rhino-console command or related MBean operation.
Console commands: install, installlocaldu
Commands  | 
Installing from a URL 
install <url> Install a deployable unit jar The URL argument must be resolvable from the Rhino node. Installing from a local file 
installlocaldu <file url> Install a deployable unit jar. This command will attempt to forward the deployable unit jar to Rhino if the management client is on a different host.  | 
|---|---|
Examples  | 
To install a deployable unit from a given URL: $ ./rhino-console install file:/home/rhino/rhino/examples/sip-examples-2.0/lib/jsip-library-du-1.2.jar installed: DeployableUnitID[url=file:/home/rhino/rhino/examples/sip-examples-2.0/lib/jsip-library-du-1.2.jar] To install a deployable unit from the local file system of the management client: $ ./rhino-console installlocaldu file:/home/rhino/rhino/examples/sip-examples-2.0/lib/jsip-library-du-1.2.jar installed: DeployableUnitID[url=file:/home/rhino/rhino/examples/sip-examples-2.0/lib/jsip-library-du-1.2.jar]  | 
MBean operation:  install
MBean  | 
|
|---|---|
SLEE-defined  | 
Install a deployable unit from a given URL 
public DeployableUnitID install(String url)
  throws NullPointerException, MalformedURLException,
    AlreadyDeployedException, DeploymentException,
      ManagementException;
Installs the given deployable unit jar file into the SLEE. The given URL must be resolvable from the Rhino node.  | 
Rhino extension  | 
Install a deployable unit from a given byte array 
public DeployableUnitID install(String url, byte[] content)
  throws NullPointerException, MalformedURLException,
      AlreadyDeployedException, DeploymentException,
          ManagementException;
Installs the given deployable unit jar file into the SLEE. The caller passes the actual file contents of the deployable unit in a byte array as a parameter to this method. The SLEE then installs the deployable unit as if it were from the URL.  | 
