SMA and LLA Guide : Creating and running LLA applications with Java : Starting and stopping LLA server with SSC API for Java
  
Starting and stopping LLA server with SSC API for Java
To start the solidDB® server from a Java application, you must instantiate the class SolidServerControl in the beginning of your application and call the ssc.startServer method with correct parameters. After starting the server, you are ready to make a JDBC connection to the server. Similarly, the server is stopped with the call ssc.stopServer.
Procedure
1 Starting the server
LLA server: ssc.startServer
When starting the server, you must pass the solidDB® server at least the following parameters:
-c<solidDB® working directory containing license file>
-U<username>
-P<password>
-C<catalog>
Tip: Uppercase C and lowercase c are not interchangeable; they provide different functionality.
2 Stopping the server
LLA server: ssc.stopServer
See also
Creating and running LLA applications with Java