RAN-Sim setup
Steps to build the RAN-Sim Controller setup:
Clone and Checkout Ran-Sim Controller
git clone "https://gerrit.onap.org/r/integration/simulators/ran-simulator"
- Copy ‘settings.xml’ from ‘<YOURFOLDER>/ran-simulator/ransim/ransimctrlr/packages/base/src/files/m2/settings.xml’ to <HOME>/.m2/ folder as settings.xml file after updating environment specific configurations.
If the file already exists in <HOME>/.m2/ folder, then merge this file content into the existing file appropriately.
Note: settings.xml entries are mandatory to include dependencies.
3. Open the terminal and navigate to the '<YOURFOLDER>/ran-simulator/ransim'
4. Run the following command in the terminal
mvn clean install -P docker
5. After successful build navigate to '<YOURFOLDER>/ran-simulator/ransim/docker' directory
6. The SDNR details can be updated in the file '<YOURFOLDER>/ran-simulator/ransim/docker/docker-compose.yml'.
environment:
- SDNR_IP={SDNR IP address}
- SDNR_PORT={SDNR port number}
- SDNR_USER={SDNR user ID}
- SDNR_PASSWORD={SDNR user password}
7. Run the 'docker-compose up -d' command in the terminal( Note: Use docker compose version 1.6.0 or above)
8. Once the ransim and mariadb containers are started, you can see logs in the ransim container under the folder /opt/app/policy/servers/ransim/logs
Steps to check the RAN-Sim Controller logs
- Open the console and enter the following command:
'docker ps'
2. Once the container details is displayed enter the following command:
'docker exec -it ransim bash'
3. Navigate to '/opt/app/policy/servers/ransim/logs' using the cd command.
4. Execute the following command to check the logs:
'tail -f ransim-rest.log'
Steps to access the tables in mysql and check table contents
- Enter the following commands in console to accessmysql:
'mysql -uroot -psecret'
'use ransim_db'
2. Type 'show tables;' to check the and access the tables.
Steps to start/stop RAN network slice simulation
- Open the console and enter the following command:
'docker ps'
2. Once the container details is displayed enter the following command:
'docker exec -it ransim bash'
3. Run the following command tostart the RAN network slice simulation:
curl -k -X POST --header 'Content-Type: application/json' --header 'Accept: */*' 'http://localhost:8081/ransim/api/StartRanSliceSimulation'
4. Run the following command tostop the RAN network slice simulation:
curl -k -X DELETE --header 'Content-Type: application/json' --header 'Accept: */*' 'http://localhost:8081/ransim/api/StopRanSliceSimulation'
Steps to start/stop generating Intelligent slicing PM data
- Open the console and enter the following command:
'docker ps'
2. Once the container details is displayed enter the following command:
'docker exec -it ransim bash'
3. Run the following command to start generate Intelligent slicing PM data:
curl -X POST -H "Content-Type: text/plain" http://localhost:8081/ransim/api/GenerateIntelligentSlicingPmData -i
4. Run the following commandto Start generate Intelligent slicing PM data:
curl -X POST -H "Content-Type: text/plain" http://localhost:8081/ransim/api/stopIntelligentSlicingPmData -i
5. You can see the generated slicing pm data files in the ransim container under the folder /tmp/ransim-install.
Steps to build the RAN-Sim Controller setup:
Clone and Checkout Ran-Sim Controller
git clone "https://gerrit.onap.org/r/integration/simulators/ran-simulator"
You can download below patchset for refactored and enhanced RAN-simulator code for setup, the code is in review stage will be merged soon.
- Copy ‘settings.xml’ from ‘<YOURFOLDER>/ran-simulator/ransim/ransimctrlr/packages/base/src/files/m2/settings.xml’ to <HOME>/.m2/ folder as settings.xml file after updating environment specific configurations.
If the file already exists in <HOME>/.m2/ folder, then merge this file content into the existing file appropriately.
Note: settings.xml entries are mandatory to include dependencies.
3. Open the terminal and navigate to the '<YOURFOLDER>/ran-simulator/ransim'
4. Run the following command in the terminal
mvn clean install -P docker
5. After successful build navigate to '<YOURFOLDER>/ran-simulator/ransim/docker' directory
6. The SDNR details can be updated in the file '<YOURFOLDER>/ran-simulator/ransim/docker/docker-compose.yml'.
environment:
- SDNR_IP={SDNR IP address}
- SDNR_PORT={SDNR port number}
- SDNR_USER={SDNR user ID}
- SDNR_PASSWORD={SDNR user password}
7. Run the 'docker-compose up -d' command in the terminal( Note: Use docker compose version 1.6.0 or above)
8. Once the ransim and mariadb containers are started, you can see logs in the ransim container under the folder /opt/app/policy/servers/ransim/logs
Steps to check the RAN-Sim Controller logs
- Open the console and enter the following command:
'docker ps'
2. Once the container details is displayed enter the following command:
'docker exec -it ransim bash'
3. Navigate to '/opt/app/policy/servers/ransim/logs' using the cd command.
4. Execute the following command to check the logs:
'tail -f ransim-rest.log'
Steps to access the tables in mysql and check table contents
- Enter the following commands in console to accessmysql:
'mysql -uroot -psecret'
'use ransim_db'
2. Type 'show tables;' to check the and access the tables.
Steps to start/stop RAN network slice simulation
- Open the console and enter the following command:
'docker ps'
2. Once the container details is displayed enter the following command:
'docker exec -it ransim bash'
3. Run the following command tostart the RAN network slice simulation:
curl -k -X POST --header 'Content-Type: application/json' --header 'Accept: */*' 'http://localhost:8081/ransim/api/StartRanSliceSimulation'
4. Run the following command tostop the RAN network slice simulation:
curl -k -X POST --header 'Content-Type: application/json' --header 'Accept: */*' 'http://localhost:8081/ransim/api/StopRanSliceSimulation'
Steps to start/stop generating Intelligent slicing PM data
- Open the console and enter the following command:
'docker ps'
2. Once the container details is displayed enter the following command:
'docker exec -it ransim bash'
3. Run the following command to start generate Intelligent slicing PM data:
curl -X POST -H "Content-Type: text/plain" http://localhost:8081/ransim/api/GenerateIntelligentSlicingPmData -i
4. Run the following commandto Start generate Intelligent slicing PM data:
curl -X POST -H "Content-Type: text/plain" http://localhost:8081/ransim/api/stopIntelligentSlicingPmData -i
5. You can see the generated slicing pm data files in the ransim container under the folder /tmp/ransim-install.
Steps to build the RAN-Sim Controller setup:
Clone and Checkout Ran-Sim Controller
git clone "https://gerrit.onap.org/r/integration/simulators/ran-simulator"
- Copy ‘settings.xml’ from ‘<YOURFOLDER>/ran-simulator/ransim/ransimctrlr/packages/base/src/files/m2/settings.xml’ to <HOME>/.m2/ folder as settings.xml file after updating environment specific configurations.
If the file already exists in <HOME>/.m2/ folder, then merge this file content into the existing file appropriately.
Note: settings.xml entries are mandatory to include dependencies.
3. Open the terminal and navigate to the '<YOURFOLDER>/ran-simulator/ransim'
4. Run the following command in the terminal
mvn clean install -P docker
5. After successful build navigate to '<YOURFOLDER>/ran-simulator/ransim/docker' directory
6. The SDNR details can be updated in the file '<YOURFOLDER>/ran-simulator/ransim/docker/docker-compose.yml'.
environment:
- SDNR_IP={SDNR IP address}
- SDNR_PORT={SDNR port number}
- SDNR_USER={SDNR user ID}
- SDNR_PASSWORD={SDNR user password}
7. Run the 'docker-compose up -d' command in the terminal( Note: Use docker compose version 1.6.0 or above)
8. Once the ransim and mariadb containers are started, you can see logs in the ransim container under the folder /opt/app/policy/servers/ransim/logs
Steps to check the RAN-Sim Controller logs
- Open the console and enter the following command:
'docker ps'
2. Once the container details is displayed enter the following command:
'docker exec -it ransim bash'
3. Navigate to '/opt/app/policy/servers/ransim/logs' using the cd command.
4. Execute the following command to check the logs:
'tail -f ransim-rest.log'
Steps to access the tables in mysql and check table contents
- Enter the following commands in console to accessmysql:
'mysql -uroot -psecret'
'use ransim_db'
2. Type 'show tables;' to check the and access the tables.
Steps to start/stop RAN network slice simulation
- Open the console and enter the following command:
'docker ps'
2. Once the container details is displayed enter the following command:
'docker exec -it ransim bash'
3. Run the following command tostart the RAN network slice simulation:
curl -k -X POST --header 'Content-Type: application/json' --header 'Accept: */*' 'http://localhost:8081/ransim/api/StartRanSliceSimulation'
4. Run the following command tostop the RAN network slice simulation:
curl -k -X POST --header 'Content-Type: application/json' --header 'Accept: */*' 'http://localhost:8081/ransim/api/StopRanSliceSimulation'
Steps to start/stop generating Intelligent slicing PM data
- Open the console and enter the following command:
'docker ps'
2. Once the container details is displayed enter the following command:
'docker exec -it ransim bash'
3. Run the following command to start generate Intelligent slicing PM data:
curl -X POST -H "Content-Type: text/plain" http://localhost:8081/ransim/api/GenerateIntelligentSlicingPmData -i
4. Run the following commandto Start generate Intelligent slicing PM data:
curl -X POST -H "Content-Type: text/plain" http://localhost:8081/ransim/api/stopIntelligentSlicingPmData -i
5. You can see the generated slicing pm data files in the ransim container under the folder /tmp/ransim-install.
Steps to build the RAN-Sim Controller setup:
Clone and Checkout Ran-Sim Controller
git clone "https://gerrit.onap.org/r/integration/simulators/ran-simulator"
You can download below patchset for refactored and enhanced RAN-simulator code for setup, the code is in review stage will be merged soon.
- Copy ‘settings.xml’ from ‘<YOURFOLDER>/ran-simulator/ransim/ransimctrlr/packages/base/src/files/m2/settings.xml’ to <HOME>/.m2/ folder as settings.xml file after updating environment specific configurations.
If the file already exists in <HOME>/.m2/ folder, then merge this file content into the existing file appropriately.
Note: settings.xml entries are mandatory to include dependencies.
3. Open the terminal and navigate to the '<YOURFOLDER>/ran-simulator/ransim'
4. Run the following command in the terminal
mvn clean install -P docker
5. After successful build navigate to '<YOURFOLDER>/ran-simulator/ransim/docker' directory
6. The SDNR details can be updated in the file '<YOURFOLDER>/ran-simulator/ransim/docker/docker-compose.yml'.
environment:
- SDNR_IP={SDNR IP address}
- SDNR_PORT={SDNR port number}
- SDNR_USER={SDNR user ID}
- SDNR_PASSWORD={SDNR user password}
7. Run the 'docker-compose up -d' command in the terminal( Note: Use docker compose version 1.6.0 or above)
8. Once the ransim and mariadb containers are started, you can see logs in the ransim container under the folder /opt/app/policy/servers/ransim/logs
Steps to check the RAN-Sim Controller logs
- Open the console and enter the following command:
'docker ps'
2. Once the container details is displayed enter the following command:
'docker exec -it ransim bash'
3. Navigate to '/opt/app/policy/servers/ransim/logs' using the cd command.
4. Execute the following command to check the logs:
'tail -f ransim-rest.log'
Steps to access the tables in mysql and check table contents
- Enter the following commands in console to accessmysql:
'mysql -uroot -psecret'
'use ransim_db'
2. Type 'show tables;' to check the and access the tables.
Steps to start/stop RAN network slice simulation
- Open the console and enter the following command:
'docker ps'
2. Once the container details is displayed enter the following command:
'docker exec -it ransim bash'
3. Run the following command tostart the RAN network slice simulation:
curl -k -X POST --header 'Content-Type: application/json' --header 'Accept: */*' 'http://localhost:8081/ransim/api/StartRanSliceSimulation'
4. Run the following command tostop the RAN network slice simulation:
curl -k -X POST --header 'Content-Type: application/json' --header 'Accept: */*' 'http://localhost:8081/ransim/api/StopRanSliceSimulation'
Steps to start/stop generating Intelligent slicing PM data
- Open the console and enter the following command:
'docker ps'
2. Once the container details is displayed enter the following command:
'docker exec -it ransim bash'
3. Run the following command to start generate Intelligent slicing PM data:
curl -X POST -H "Content-Type: text/plain" http://localhost:8081/ransim/api/GenerateIntelligentSlicingPmData -i
4. Run the following commandto Start generate Intelligent slicing PM data:
curl -X POST -H "Content-Type: text/plain" http://localhost:8081/ransim/api/stopIntelligentSlicingPmData -i
5. You can see the generated slicing pm data files in the ransim container under the folder /tmp/ransim-install.