How to stop CarlaUE4 window to stop lauching itself? #132
-
Hello All, I performed the below steps so far to troubleshoot the issue:
smit@smit-BUSINESSline:~/CARLA_0.9.13/PythonAPI/examples$ pgrep CarlaUE4 smit@smit-BUSINESSline:~/CARLA_0.9.13/PythonAPI/examples$ kill 52540 52577 Application auto launched as usual.
Some additional information that might help: smit@smit-BUSINESSline:~$ ps aux | grep Carla smit@smit-BUSINESSline:~$ docker ps docker stop 0c05275b9284 is stopping the simulator from launching again but when I restart the system the carla simulator docker is active back again. Is this the way it works? I am ready to provide additional information if needed. Any help would be really appreciated. Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
As I mentioned earlier:
Just doing this is not enough because the Docker container has already been created, and the current container will still automatically restart. ./docker_run_carla.sh |
Beta Was this translation helpful? Give feedback.
As I mentioned earlier:
Just doing this is not enough because the Docker container has already been created, and the current container will still automatically restart.
So you should first delete the carla container and then rerun 'docker_run_carla. sh'
`
docker rm -f carla-simulator-1
./docker_run_carla.sh
`