grasp icon indicating copy to clipboard operation
grasp copied to clipboard

Running server/setup fails on macOS

Open LOG67 opened this issue 5 years ago • 6 comments

Running Server/Setup fails on macOS with error "FileNotFoundError: [Errno 2] No such file or directory: 'systemctl': 'systemctl'".

This is understandable since macOS does not have systemctl, instead it has launchctl.

LOG67 avatar May 17 '20 04:05 LOG67

Yeah, and I don't have an OSX around to figure it out. Perhaps you could help? Judging by this, the minimal script to run it would be:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
	<dict>
		<key>Label</key>
		<string>com.github.karlicoss.grasp</string>

                <key>ProgramArguments</key>
                <array>
                	<string>/PATH/TO/GRASP_REPOSITORY/grasp/server.py</string>
                	<string>--port=PORT</string>
                	<string>--path=PATH</string>
                	<string>--template=TEMPLATE</string>
                </array>

		<key>RunAtLoad</key>
		<true/>
                <key>KeepAlive</key>
                <true/>
	</dict>
</plist>

You should put it in ~/Library/LaunchAgents/com.github.karlicoss.grasp.plist. And I believe then you can load it with launchctl load -w ~/Library/LaunchAgents/com.github.karlicoss.grasp.plist.

Let me know if it works/fails?

Feel free to remove the arguments you don't need to pass from the file, the only important thing is to specify the first one, which is full path to the server executable.

karlicoss avatar May 17 '20 07:05 karlicoss

Thanks! The plist worked. One caveat of the plist is that it does not expand ~ for paths.

If you want I can work on the Setup script so that on mac it installs the daemon by adding the required plist file and runs the launchctl command.

LOG67 avatar May 17 '20 23:05 LOG67

Thanks, would be great & welcome!

karlicoss avatar May 18 '20 05:05 karlicoss

@LOG67 by the look of this you may not be able to refer to ~ or $HOME but you can add a level of indirection by starting a shell that starts the server by referencing its path. I actually tried it and it does the trick.

behaghel avatar May 28 '20 08:05 behaghel

Some additional notes for people who might run into the same problems I did:

When you want to reload the file after you've changed the template (or, uh, gotten the path wrong, ahem) the invocation is

❯ launchctl stop com.github.karlicoss.grasp                                                                                                                                                                                                
❯ launchctl unload ~/Library/LaunchAgents/com.github.karlicoss.grasp.plist                                                                                                                                                                 
❯ launchctl load -w ~/Library/LaunchAgents/com.github.karlicoss.grasp.plist        

Also of note: xml is weird with the templating. Don't quote it,\n does not work as you might expect, everything in that string is taken literally, so you have to actually put in newlines, and, yes, if you follow the indentation of your xml file as looks correct you will wind up with indentations in your output. And make sure to put a newline before the final </string> for the same reasons.

mediapathic avatar Feb 20 '21 00:02 mediapathic

Hey, I already wrote here:

I think such a thing (installing some user service) is generally useful. I also have some script (this) where I would want to have such a systemd install script (or launchctl on MacOSX, and no idea what Windows has, or other Unixes).

Maybe it makes sense if we package sth like this as a separate PIP package, so that we can easily make use of it? (Or maybe there is already some project/package like this?)

I have such an install script for MacOSX here.

albertz avatar Feb 26 '21 11:02 albertz