Running littleIMS

Start each element individually

  • Start HSS
    cd HSS
    java -jar start.jar etc/cipango-hss.xml
    
  • Start P-CSCF
    cd P-CSCF
    java -jar start.jar etc/cipango-pcscf.xml
    
  • Start I-CSCF
    cd I-CSCF
    java -jar start.jar etc/cipango-scscf.xml
    
  • Start S-CSCF
    cd S-CSCF
    java -jar start.jar etc/cipango-scscf.xml
    

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 littleIMS.bat
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