mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-28 14:51:37 +01:00
8 lines
197 B
Bash
Executable File
8 lines
197 B
Bash
Executable File
#!/bin/bash
|
|
|
|
kpid=$(ps -ef | grep karaf.main.Main | grep -v grep | cut -c10-15 | tr -d ' ')
|
|
|
|
[ -z "$kpid" ] && echo "No ONOS!" && exit 1
|
|
|
|
/opt/jprofiler8/bin/jpenable --gui --port=8849 --pid=$kpid
|