This repository has been archived by the owner on Nov 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch from `pm2` process management to `systemd` fixes #3876
- Loading branch information
Showing
1 changed file
with
21 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,6 @@ echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.co | |
$STD apt-get update | ||
$STD apt-get install -y nodejs | ||
$STD npm install -g [email protected] | ||
$STD npm install -g pm2 | ||
export NODE_OPTIONS="--max_old_space_size=4096" | ||
msg_ok "Installed Node.js, pnpm & pm2" | ||
|
||
|
@@ -77,15 +76,30 @@ cat <<EOF >/opt/tianji/src/server/.env | |
DATABASE_URL="postgresql://$DB_USER:$DB_PASS@localhost:5432/$DB_NAME?schema=public" | ||
JWT_SECRET="$TIANJI_SECRET" | ||
EOF | ||
cd /opt/tianji | ||
$STD npm install pm2 -g | ||
$STD pm2 install pm2-logrotate | ||
cd src/server | ||
cd /opt/tianji/src/server | ||
$STD pnpm db:migrate:apply | ||
$STD pm2 start /opt/tianji/src/server/dist/src/server/main.js --name tianji | ||
$STD pm2 save | ||
msg_ok "Installed Tianji" | ||
|
||
msg_info "Creating Service" | ||
cat <<EOF >/etc/systemd/system/tianji.service | ||
[Unit] | ||
Description=Tianji Server | ||
After=network.target | ||
[Service] | ||
ExecStart=/usr/bin/node /opt/tianji/src/server/dist/src/server/main.js | ||
WorkingDirectory=/opt/tianji/src/server | ||
Restart=always | ||
RestartSec=10 | ||
Environment=NODE_ENV=production | ||
[Install] | ||
WantedBy=multi-user.target | ||
EOF | ||
systemctl enable -q --now tianji.service | ||
msg_ok "Created Service" | ||
|
||
motd_ssh | ||
customize | ||
|
||
|