|
|
Question : Determine what Sybase Database ports are available to use
|
|
How to determine what Sybase Database ports are available. Is there a command to do this ?
|
Answer : Determine what Sybase Database ports are available to use
|
|
Here's the source code for a little java app that will tell you what tcp ports are in use on a machine.
To compile: javac portscan
To run: java portscan
Source Code:
/* BEGIN CODE EXAMPLE (/
import java.net.*;
public class portscan { public static void main( String[] args ) { int port; String host = "localhost"; for( port = 1; port < 32767; port++ ) { try { Socket s = new Socket( host, port ); System.out.println( "Port " + port + " IN USE." ); s.close(); } catch (Exception e ) { // System.out.println( "Port " + port + " AVAILABLE." ); } } System.out.println( "END RUN." ); } }
/* END CODE EXAMPLE */
|
|
|
|