To keep a process running after logout, run it with nohup.
$ nohup some_command &
If you have already launched the process, and are using bash, you can run:
$ disown -h <jobspec>
When in a terminal with a running process type ^z to put in the background. Then type
$ bg $ disown -h