# How to Launch yc-360 Script in the background?

If you launch yc-360 script as a foreground process, when you close the putty session, automatically yc-360 script will be terminated. If yc-360 script needs to be run in m3 mode or in API mode it has be running always in the background.

Below command will launch yc-360 script as background process and all yc-360 script logs will be written in to '/tmp/yc-360-script.log' location.

$ nohup ./yc -c yc-config.yaml > /tmp/yc-360-script.log 2>&1 &
1