Changes To QEMU monitor on unix domain socket
Not logged in

Changes to "QEMU monitor on unix domain socket" between 2015-07-18 19:26:21 and 2015-07-18 20:48:37

1
2
3
4
5

6
7

8
1
2
3
4

5
6

7
8




-
+

-
+

1.  QEMU handles "address already in use" error, and successifully rebinds to socket, which is left in the filesystem by previous invocation.

2.  Socket chardev should be created with nowait option, otherwise QEMU would wait until somebody connects to the socket before demonizing.

    Correct options:
    Correct options to create socket **monitor** in the current directory:

        -chardev socket,server,nowait,path=/home/vitus/asta.monitor,id=monitor \
        -chardev socket,server,nowait,path=monitor,id=monitor \
        -mon chardev=monitor,mode=readline \