| 19 | == I get an error message “Promot Session not found, please start server” when starting promot.bat (on Windows) or the promot script (on Linux). What can I do? == |
| 20 | |
| 21 | In the majority of cases the problem is that the GUI of ProMoT tries to connect the server which is not completely launched. Have a look into the console where the server is started, wait until the Lisp interpreter prompt occurs: [[BR]] |
| 22 | |
| 23 | {{{ |
| 24 | ; Publishing this server as Promot000 |
| 25 | ..... |
| 26 | [changing package from "COMMON-LISP-USER" to "PROMOT-KERNEL"] |
| 27 | PK(1): |
| 28 | }}} |
| 29 | |
| 30 | Now click to “retry” in the error dialog. The GUI should start. [[BR]] |
| 31 | For later starts there are several possibilities: Either you start the server and the GUI from separate scripts (promot-server.bat and promot-ui.bat on Windows / promot-server and promot-ui on Linux) or you edit promot(.bat) and increase the time to wait between server and GUI start in the following line: [[BR]] |
| 32 | |
| 33 | {{{ |
| 34 | (sleep 3;${dir}/promot-ui "$@") & |
| 35 | }}} |
| 36 | |
| 37 | If this all does not work, |
| 38 | * make sure that you use java version 6.0, |
| 39 | * the directory for the binding handle of the server is the same like the one for the GUI: |
| 40 | {{{ |
| 41 | ... |
| 42 | Published server in directory: /home/.../.corba-binding/org/mpg/dcts/promot/.../ |
| 43 | ... |
| 44 | Looking for Server Filebinder uses /home/.../.corba-binding |
| 45 | ... |
| 46 | }}} |
| 47 | * and the hostname on linux does not start with a number (Then you should change the hostname in /etc/hosts). |
| 48 | |