You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Within the /optseafile/seafile-server-latest/seaf-fuse.sh script the function validate_already_running checks for seaf-fuse. This is too broad, it captures the script name before the binary seaf_fuse is run. I suggest the following:
function validate_already_running () {
# if pid=$(pgrep -f "seaf-fuse" 2>/dev/null); then
if pid=$(pgrep -f "fuse.log" 2>/dev/null); then
echo "seaf-fuse is already running, pid $pid"
echo
exit 1;
fi
}
Raspberry Pi 5, Debian 12 (bookworm). arm64. Using seafileltd/seafile-mc:12.0-latest, mariadb:10.11, memcached:1.6.29
The text was updated successfully, but these errors were encountered:
Following FUSE in Docker deployment. Receive
seaf-fuse is already running
as shown below.Within the
/optseafile/seafile-server-latest/seaf-fuse.sh
script the functionvalidate_already_running
checks forseaf-fuse
. This is too broad, it captures the script name before the binary seaf_fuse is run. I suggest the following:Raspberry Pi 5, Debian 12 (bookworm). arm64. Using seafileltd/seafile-mc:12.0-latest, mariadb:10.11, memcached:1.6.29
The text was updated successfully, but these errors were encountered: