Search Criteria
Package Details: mod_tile-git 0.8.0.beta.r14.g5aadf31-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/mod_tile-git.git (read-only, click to copy) |
---|---|
Package Base: | mod_tile-git |
Description: | An Apache 2 module to deliver map tiles |
Upstream URL: | https://github.com/openstreetmap/mod_tile |
Licenses: | GPL-2.0-or-later |
Conflicts: | mod_tile |
Provides: | mod_tile |
Submitter: | Calimero |
Maintainer: | dhummel |
Last Packager: | dhummel |
Votes: | 3 |
Popularity: | 0.000061 |
First Submitted: | 2013-12-21 09:27 (UTC) |
Last Updated: | 2024-09-25 00:52 (UTC) |
Dependencies (14)
- apache (apache-gitAUR)
- apr
- glib2 (glib2-gitAUR, glib2-selinuxAUR, glib2-patched-thumbnailerAUR)
- iniparser (iniparser-gitAUR)
- apache (apache-gitAUR) (make)
- apr (make)
- cmake (cmake-gitAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
- glib2 (glib2-gitAUR, glib2-selinuxAUR, glib2-patched-thumbnailerAUR) (make)
- iniparser (iniparser-gitAUR) (make)
- mapnik (mapnik-gitAUR) (make)
- curl (curl-quiche-gitAUR, curl-http3-ngtcp2AUR, curl-gitAUR, curl-c-aresAUR) (check)
- jq (jq-gitAUR) (check)
- libmemcached (libmemcached-awesome) (optional) – Memcached tile storage support
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 runjournelctl -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)
deepsoul commented on 2014-05-25 17:44 (UTC)
« First ‹ Previous 1 2