JANUS START: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
 
 
Line 10: Line 10:




Where 'portname' is the name of the port(s) to start.
Where <var class="term">portname</var> is the name of the port(s) to start.


The [[JANUS DEFINE]] command must be used to define the port before it is started with JANUS START. Also, if the port is defined to use Secure Sockets Layer (SSL) or Transport Layer Security (TLS) for secured communications, you are prompted for the password that decrypts the private key for the certificate specified on the SSL parameter of this port's DEFINE command.
==Usage notes==
The <var>[[JANUS DEFINE]]</var> command must be used to define the port before it is started with JANUS START. Also, if the port is defined to use Secure Sockets Layer (SSL) or Transport Layer Security (TLS) for secured communications, you are prompted for the password that decrypts the private key for the certificate specified on the SSL parameter of this port's DEFINE command.


==Example==
In the following example, all ports whose names begin with ACCTS are made available for incoming connections, and any remote servers associated with those ports are made available for outgoing connections. For any of these ports whose DEFINE commands did not include an ALLOCC, the control blocks are built in SPCORE.
In the following example, all ports whose names begin with ACCTS are made available for incoming connections, and any remote servers associated with those ports are made available for outgoing connections. For any of these ports whose DEFINE commands did not include an ALLOCC, the control blocks are built in SPCORE.


<p class="code"> JANUS START ACCTS*
<p class="code">JANUS START ACCTS*
</p>
</p>


[[List of Janus commands]]
==See also==
<ul>
<li>[[List of Janus commands]]
</ul>
 
[[Category:Janus commands|JANUS START]]
[[Category:Janus commands|JANUS START]]

Latest revision as of 19:43, 16 April 2013

Start a Janus port

This makes a port available for connections; it is put into the START state.

Syntax

JANUS START portname


Where portname is the name of the port(s) to start.

Usage notes

The JANUS DEFINE command must be used to define the port before it is started with JANUS START. Also, if the port is defined to use Secure Sockets Layer (SSL) or Transport Layer Security (TLS) for secured communications, you are prompted for the password that decrypts the private key for the certificate specified on the SSL parameter of this port's DEFINE command.

Example

In the following example, all ports whose names begin with ACCTS are made available for incoming connections, and any remote servers associated with those ports are made available for outgoing connections. For any of these ports whose DEFINE commands did not include an ALLOCC, the control blocks are built in SPCORE.

JANUS START ACCTS*

See also