Jump to content

Help with error in log


Go to solution Solved by JorgeB,

Recommended Posts

Hello, very new to unraid here.  I just recently setup rclone to sync dropbox.  I had a really fun time allowing dockers to see my dropbox folder.  Rclone is setup as a plugin and is running on the host.  I use a mount scrip that runs every time the array starts;

 

mkdir -p /mnt/user/dropbox

rclone mount dropbox: /mnt/user/dropbox --allow-other &

 

When I added --allow-other it did allow my docker apps to see my dropbox folder.  I also created an unmount script that runs when I stop the array;

 

fusermount -u /mnt/user/dropbox

 

All seemed to be working great for the past week.  Then, I noticed today that my log is spitting out an error every 2 seconds or so and I don't have any idea what its all about;

 

Aug 10 19:44:43 Tower emhttpd: error: malloc_share_locations, 7199: Operation not supported (95): getxattr: /mnt/user/dropbox
Aug 10 19:44:44 Tower emhttpd: error: malloc_share_locations, 7199: Operation not supported (95): getxattr: /mnt/user/dropbox
Aug 10 19:44:45 Tower emhttpd: error: malloc_share_locations, 7199: Operation not supported (95): getxattr: /mnt/user/dropbox
Aug 10 19:44:46 Tower emhttpd: error: malloc_share_locations, 7199: Operation not supported (95): getxattr: /mnt/user/dropbox

 

Everything seems to still be working but this is still driving me crazy.  If anyone has any advice on what this log is telling me and/or how to fix it, please share.   

 

thanks

-Andrew

Link to comment

User scrips just allows a script to run during any defined event.  I changed my startup script to;

 

mkdir -p /mnt/disks/dropbox

rclone mount dropbox: /mnt/disks/dropbox --allow-other &

 

User scrips runs the above script when the array is started, and also runs the below script when the array is stopped;

 

fusermount -u /mnt/disks/dropbox

 

Changing the directory from "/mnt/users/dropbox" to "/mnt/disks/dropbox appears to have fixed the problem.  thanks for the help!

 

Screenshot2024-08-11175416.thumb.png.497b8b4a47a67cd82c486266d7dccd74.png

 

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...