Package Base Details: mod_tile-git

Git Clone URL: https://aur.archlinux.org/mod_tile-git.git (read-only, click to copy)
Submitter: Calimero
Maintainer: dhummel
Last Packager: dhummel
Votes: 3
Popularity: 0.004279
First Submitted: 2013-12-21 09:27 (UTC)
Last Updated: 2024-04-22 15:34 (UTC)

Latest Comments

« First ‹ Previous 1 2

jerry73204 commented on 2018-02-04 15:40 (UTC)

This is an example unit file placed at /usr/lib/systemd/system/renderd.service. The renderd daemon can be started by systemctl start renderd.service, and run journelctl -u renderd.service to check out the logs.

[Unit] Description=renderd Documentation=man:renderd(1)

[Service] Type=forking ExecStart=/usr/bin/renderd

[Install] WantedBy=multi-user.target

<hr>
This unit file does not bother with postgresql service since PostGIS data source is not necessary. (I provide GeoJSON files in my case.) If the feature is needed, put the snippet under [Unit] section to make renderd restart when postgressql restarts.

After=postgresql.service Requires=postgresql.service PartOf=postgresql.service

<hr>

Calimero commented on 2018-01-30 09:41 (UTC)

I'm not using systemd, but you're welcome to offer one that works for you. Here are the challenges: You'll need to assume the postgresql cluster to start after; renderd can't properly reestablish connections to the postgresql instance if it restarts. That needs fixing upstream. As a result, renderd also needs to restart whenever postgresql does, otherwise reliability will be bork-tier. But again, that really needs fixing upstream, because it breaks any rendering scripts, that will end immediately having failed all of their rendering commands.

jerry73204 commented on 2018-01-29 04:35 (UTC)

Can you create a systemd service file for renderd?

Calimero commented on 2014-05-25 18:11 (UTC)

No specific reason I can remember; except I hadn't tested it on 32bit.

deepsoul commented on 2014-05-25 17:44 (UTC)

Is there a reason the architecture is restricted to x86_64? I successfully built the package and ran the Apache module mod_tile on an i686 (with prerendered tiles; using a 32 bit system for rendering is probably not recommendable).