How are you trying to start ECCE? The message tells you that the ECCE server isn't running in the background yet.
Put something like this in your ~/.bashrc
export ECCE_HOME=/media/highio/ecce-v7.0b/apps
export PATH=${ECCE_HOME}/scripts:${ECCE_HOME}/scripts/parsers:${PATH}
alias stopecce='/media/highio/ecce-v7.0b/server/ecce-admin/stop_ecce_server'
alias startecce='/media/highio/ecce-v7.0b/server/ecce-admin/start_ecce_server'
(change the paths to match your system, obviously)
The you can launch the server (and server only) by running startecce
Once the server is up, you can then launch ecce (in this case /media/highio/ecce-v7.0b/apps/scripts/ecce)
Note that normally it should be enough to just run ecce without starting the server separately before, but for some reason it doesn't always work.
|