ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

Interpreting ros error code

asked 2018-02-08 15:48:44 -0500

pnambiar gravatar image

Here is the error code that I am getting [darknet_ros-2] process has died [pid 1733, exit code -11, cmd /home/nvidia/catkin_ws/devel/lib/darknet_ros/darknet_ros __name:=darknet_ros __log:=/home/nvidia/.ros/log/b9b03498-0cdc-11e8-9325-2816adcdeb8c/darknet_ros-2.log]. log file: /home/nvidia/.ros/log/b9b03498-0cdc-11e8-9325-2816adcdeb8c/darknet_ros-2*.log

The log file reports the following:

[rospy.client][INFO] 2018-01-29 20:27:28,806: init_node, name[/mipi_cap_node], pid[1732]
[xmlrpc][INFO] 2018-01-29 20:27:28,808: XML-RPC server binding to 0.0.0.0:0
[xmlrpc][INFO] 2018-01-29 20:27:28,810: Started XML-RPC server [http://192.168.1.32:44140/]
[rospy.impl.masterslave][INFO] 2018-01-29 20:27:28,810: _ready: http://192.168.1.32:44140/
[rospy.init][INFO] 2018-01-29 20:27:28,811: ROS Slave URI: [http://192.168.1.32:44140/]
[rospy.registration][INFO] 2018-01-29 20:27:28,813: Registering with master node http://192.168.1.29:11311
[xmlrpc][INFO] 2018-01-29 20:27:28,813: xml rpc node: starting XML-RPC server
[rospy.registration][INFO] 2018-01-29 20:27:28,814: Registering publisher topic [/camera/rgb/image_raw] type             [sensor_msgs/Image] with master
[rospy.init][INFO] 2018-01-29 20:27:28,911: registered with master
[rospy.rosout][INFO] 2018-01-29 20:27:28,912: initializing /rosout core topic
[rospy.rosout][INFO] 2018-01-29 20:27:28,917: connected to core topic /rosout
[rospy.simtime][INFO] 2018-01-29 20:27:28,921: /use_sim_time is not set, will not subscribe to simulated time [/clock] topic
[rospy.internal][INFO] 2018-01-29 20:27:29,139: topic[/rosout] adding connection to [/rosout], count 0
[rospy.internal][INFO] 2018-01-29 20:27:33,557: topic[/camera/rgb/image_raw] adding connection to [/darknet_ros], count 0
[rospy.internal][INFO] 2018-01-29 20:27:36,530: topic[/camera/rgb/image_raw] removing connection to /darknet_ros
[rospy.internal][INFO] 2018-01-29 20:27:44,671: topic[/camera/rgb/image_raw] adding connection to        [/rostopic_8635_1518100309363], count 0
[rospy.internal][INFO] 2018-01-29 20:27:46,893: topic[/camera/rgb/image_raw] removing connection to /rostopic_8635_1518100309363

[rospy.internal][INFO] 2018-01-29 20:27:49,532: topic[/camera/rgb/image_raw] adding connection to [/rostopic_8656_1518100314233], count 0 [rospy.internal][INFO] 2018-01-29 20:28:10,690: topic[/camera/rgb/image_raw] removing connection to /rostopic_8656_1518100314233 [rosout][WARNING] 2018-01-29 20:28:10,783: Inbound TCP/IP connection failed: connection from sender terminated before handshake header received. 0 bytes were received. Please check sender for additional details. [rospy.internal][ERROR] 2018-01-29 20:28:10,788: Inbound TCP/IP connection failed: Traceback (most recent call last): File "/opt/ros/kinetic/lib/python2.7/dist-packages/rospy/impl/tcpros_base.py", line 321, in _tcp_server_callback header = read_ros_handshake_header(sock, StringIO(), buff_size) File "/opt/ros/kinetic/lib/python2.7/dist-packages/rosgraph/network.py", line 364, in read_ros_handshake_header raise ROSHandshakeException("connection from sender terminated before handshake header received. %s bytes were received. Please check sender for additional details."%b.tell()) ROSHandshakeException: connection from sender terminated before handshake header received. 0 bytes were received. Please check sender for additional details.

[rospy.internal][INFO] 2018-01-29 20:28:22,484: topic[/camera/rgb/image_raw] adding connection to [/image_view_1518100347117379321], count 0 [rospy.internal][INFO] 2018-01-29 ... (more)

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2018-02-08 23:05:52 -0500

ahendrix gravatar image

It seems like the darknet_ros node is the one that is crashing. Exit code -11 is a segfault, which indicates some kind of memory error in that node. You might want to run it in gdb or valgrind to debug it: http://wiki.ros.org/roslaunch/Tutoria...

The log file you posted doesn't seem to be from the node that crashed, and despite the formatting errors I don't see anything obviously wrong; it just looks like that node shut down normally.

edit flag offensive delete link more

Question Tools

Stats

Asked: 2018-02-08 15:48:44 -0500

Seen: 1,559 times

Last updated: Feb 08 '18