Start each element individually

Start all elements

On Microsoft windows

  1. Go to your installation directory
  2. Execute the file: startLittleIMS.bat

On Linux

  1. Go to your installation directory
  2. Execute ./startLittleIMS.sh

Running from source

littleIMS can be running from source folders using the maven-cipango-plugin

To start a component, go to the corresponding module and execute mvn cipango:run.
For instance to start the HSS, execute:

cd modules/hss
mvn cipango:run

To start the HSS, P-CSCF, I-CSCF and S-CSCF in one click, create a .bat file with the following content in littleIMS source home.

start "HSS" /D modules\hss mvn cipango:run
start "I-CSCF" /D modules\icscf mvn cipango:run
start "P-CSCF" /D modules\pcscf mvn cipango:run
start "S-CSCF" /D modules\scscf mvn cipango:run