Skip to content
Snippets Groups Projects
Commit e7d4eab9 authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Add troubleshooting section to README

parent 71a57dd6
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,7 @@ CORBA server/client for the Graphical Interface of Pinocchio and HPP ...@@ -15,6 +15,7 @@ CORBA server/client for the Graphical Interface of Pinocchio and HPP
* [Installation procedure](#installation-procedure) * [Installation procedure](#installation-procedure)
* [Dependencies](#dependencies) * [Dependencies](#dependencies)
* [PythonQt](#pythonqt) * [PythonQt](#pythonqt)
* [Troubleshooting](#troubleshooting)
## gepetto-viewer-corba ## gepetto-viewer-corba
###Setup ###Setup
...@@ -194,6 +195,27 @@ To install `gepetto-gui` you just have to follow the installation step at the to ...@@ -194,6 +195,27 @@ To install `gepetto-gui` you just have to follow the installation step at the to
### PythonQt ### PythonQt
gepetto-gui offers the possibility to develop plugins in python. To do so, you must install PythonQt by following the instructions here: https://github.com/jmirabel/PythonQt#readme gepetto-gui offers the possibility to develop plugins in python. To do so, you must install PythonQt by following the instructions here: https://github.com/jmirabel/PythonQt#readme
# Troubleshooting
## `CORBA::TRANSIENT` when launching a server
It very often happens that the OmniNames server failed to start properly at boot.
To check is the server is running, run:
```bash
ps -C omniNames -o pid,args
```
If the process is not running, delete omniNames related log and backup files in `/var/log`. They may have different names on your computer, but most likely, something like:
```bash
rm /var/log/omniORB/omninames-<computer_name>.log
rm /var/log/omniORB/omninames-<computer_name>.bak
```
then restart the server:
```bash
sudo service omniorb4-nameserver restart
```
[HPP]:http://projects.laas.fr/gepetto/index.php/Software/Hpp [HPP]:http://projects.laas.fr/gepetto/index.php/Software/Hpp
[remoteimu]:https://github.com/jmirabel/remoteimu [remoteimu]:https://github.com/jmirabel/remoteimu
[hpp-gui]:https://github.com/jmirabel/hpp-gui [hpp-gui]:https://github.com/jmirabel/hpp-gui
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment