How do I start/restart RealVNC Enterprise Server for Mac via the command line?

Perhaps also how do I tell (via command line, whether RealVNC Enterprise Server is running or not)

link|improve this question

feedback

3 Answers

The article Start VNC from command line and connect to Mac from Windows VNC client recommends:

Step 1: -- set privs

sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -allowAccessFor -allUsers -privs -all

Step 2: -- Allow VNC clients

sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -clientopts -setvnclegacy -vnclegacy yes

Step 3: -- Set VNC password (change it at the end of the line (i.e. don't use supersecret))

sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -clientopts -setvncpw -vncpw supersecret

Step 4: -- Restart service

sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -restart -agent -console
link|improve this answer
Isn't this about the built-in VNC server? – janmoesen Oct 19 '11 at 7:39
feedback

Try the following commands:

which vncserver
which x0vncserver
man vncserver
man x0vncserver

This works on Ubuntu; OS X should be similar.

link|improve this answer
don't get a response on Mac Lion for this - I did note after posting a fall back may be to reboot remotely, but doesn't specifically address the question I posed I guess – Greg Oct 3 '11 at 11:08
feedback
up vote 0 down vote accepted

got this feedback from RealVNC

A) Start Service-Mode VNC Server

sudo touch /etc/vnc/service/on

This will trigger the launch of the VNC Server launch daemon and user helper launch agent

B) Stop Service-Mode VNC Server

sudo rm /etc/vnc/service/on
sudo launchctl stop com.realvnc.vncserver
launchctl stop com.realvnc.vncserver_agent

C) Restart Service-Mode VNC Server

Same as A)

Reference:

http://developer.apple.com/library/mac/#documentation/Darwin/Reference/Manpages/man1/launchctl.1.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.