mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-15 01:12:56 +00:00
Deploy storage into new account Migrate safekeeper and pageserver initialisation to management api v2
19 lines
584 B
Desktop File
19 lines
584 B
Desktop File
[Unit]
|
|
Description=Neon pageserver
|
|
After=network.target auditd.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=pageserver
|
|
Environment=RUST_BACKTRACE=1 NEON_REPO_DIR=/storage/pageserver LD_LIBRARY_PATH=/usr/local/v14/lib
|
|
ExecStart=/usr/local/bin/pageserver -c "pg_distrib_dir='/usr/local'" -c "listen_pg_addr='0.0.0.0:6400'" -c "listen_http_addr='0.0.0.0:9898'" -c "broker_endpoints=['{{ etcd_endpoints }}']" -D /storage/pageserver/data
|
|
ExecReload=/bin/kill -HUP $MAINPID
|
|
KillMode=mixed
|
|
KillSignal=SIGINT
|
|
Restart=on-failure
|
|
TimeoutSec=10
|
|
LimitNOFILE=30000000
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|