mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
Update Snap Candidate to MongoDB 6.0.19. Updated WeKan Windows version numbers. Added Cron docs.
Thanks to xet7 !
This commit is contained in:
parent
bfb1658abe
commit
fb4d95672e
3 changed files with 62 additions and 5 deletions
|
@ -8,19 +8,19 @@ This is without container (without Docker or Snap).
|
||||||
|
|
||||||
Right click and download files 1-4:
|
Right click and download files 1-4:
|
||||||
|
|
||||||
1. [wekan-7.61-amd64-windows.zip](https://github.com/wekan/wekan/releases/download/v7.61/wekan-7.61-amd64-windows.zip)
|
1. [wekan-7.62-amd64-windows.zip](https://github.com/wekan/wekan/releases/download/v7.62/wekan-7.62-amd64-windows.zip)
|
||||||
|
|
||||||
2. [node.exe](https://nodejs.org/dist/latest-v14.x/win-x64/node.exe)
|
2. [node.exe](https://nodejs.org/dist/latest-v14.x/win-x64/node.exe)
|
||||||
|
|
||||||
3. [mongodb-windows-x86_64-6.0.18-signed.msi](https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-6.0.18-signed.msi)
|
3. [mongodb-windows-x86_64-6.0.19-signed.msi](https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-6.0.19-signed.msi)
|
||||||
|
|
||||||
4. [start-wekan.bat](https://raw.githubusercontent.com/wekan/wekan/main/start-wekan.bat)
|
4. [start-wekan.bat](https://raw.githubusercontent.com/wekan/wekan/main/start-wekan.bat)
|
||||||
|
|
||||||
5. Copy files from steps 1-4 with USB stick or DVD to offline Windows computer
|
5. Copy files from steps 1-4 with USB stick or DVD to offline Windows computer
|
||||||
|
|
||||||
6. Double click `mongodb-windows-x86_64-6.0.18-signed.msi` . In installer, uncheck downloading MongoDB compass.
|
6. Double click `mongodb-windows-x86_64-6.0.19-signed.msi` . In installer, uncheck downloading MongoDB compass.
|
||||||
|
|
||||||
7. Unzip `wekan-7.61-amd64-windows.zip` , inside it is directory `bundle`, to it copy other files:
|
7. Unzip `wekan-7.62-amd64-windows.zip` , inside it is directory `bundle`, to it copy other files:
|
||||||
|
|
||||||
```
|
```
|
||||||
bundle (directory)
|
bundle (directory)
|
||||||
|
|
57
docs/Webserver/Cron.md
Normal file
57
docs/Webserver/Cron.md
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
(TODO: Try to integrate this inside WeKan Snap Candidate, or change code so that these would not be needed.)
|
||||||
|
|
||||||
|
WeKan has some memory leaks. To prevent WeKan becoming slow, this Cron script restarts WeKan Snap once every hour.
|
||||||
|
|
||||||
|
1) Edit /root/hourly.sh
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo su
|
||||||
|
|
||||||
|
apt -y install nano cron
|
||||||
|
|
||||||
|
nano /root/hourly.sh
|
||||||
|
```
|
||||||
|
2) There add this text:
|
||||||
|
```
|
||||||
|
snap stop wekan.wekan
|
||||||
|
|
||||||
|
snap start wekan.wekan
|
||||||
|
|
||||||
|
# Wait 10 seconds
|
||||||
|
sleep 10
|
||||||
|
|
||||||
|
# Disable telemetry
|
||||||
|
/snap/wekan/current/usr/bin/mongosh wekan --eval 'disableTelemetry();' --port 27019
|
||||||
|
|
||||||
|
# Snap: Disable apparmor="DENIED" at syslog
|
||||||
|
# https://github.com/wekan/wekan/issues/4855
|
||||||
|
/snap/wekan/current/usr/bin/mongosh wekan \
|
||||||
|
--eval 'db.adminCommand({ setParameter: 1, diagnosticDataCollectionEnabled: false});' \
|
||||||
|
--port 27019
|
||||||
|
|
||||||
|
# Delete incomplete uploads so that they would not prevent starting WeKan
|
||||||
|
/snap/wekan/current/usr/bin/mongosh wekan \
|
||||||
|
--eval 'db.getCollection("cfs.attachments.filerecord").find( { "uploadedAt": { "$exists": true }, "copies.attachments" : null,"failures.copies.attachments.doneTrying" : {"$ne" : true}});' \
|
||||||
|
--port 27019
|
||||||
|
```
|
||||||
|
3) Save and exit nano: Ctrl-o Enter Ctrl-x Enter
|
||||||
|
|
||||||
|
4) Make hourly.sh script executeable, and edit cron:
|
||||||
|
```
|
||||||
|
chmod +x /root/hourly.sh
|
||||||
|
|
||||||
|
export EDITOR=nano
|
||||||
|
|
||||||
|
crontab -e
|
||||||
|
```
|
||||||
|
There at bottom, add this line, that will restart WeKan hourly, and log to textfile:
|
||||||
|
```
|
||||||
|
0 * * * * /root/hourly.sh >> /root/hourly-log.txt 2>&1
|
||||||
|
```
|
||||||
|
5) Save and exit nano: Ctrl-o Enter Ctrl-x Enter
|
||||||
|
|
||||||
|
6) You can also list content of cron:
|
||||||
|
|
||||||
|
```
|
||||||
|
crontab -l
|
||||||
|
```
|
|
@ -65,7 +65,7 @@ apps:
|
||||||
|
|
||||||
parts:
|
parts:
|
||||||
mongodb:
|
mongodb:
|
||||||
source: https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2004-6.0.18.tgz
|
source: https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2004-6.0.19.tgz
|
||||||
plugin: dump
|
plugin: dump
|
||||||
stage-packages:
|
stage-packages:
|
||||||
- libssl1.1
|
- libssl1.1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue