-
Hi, We have created the ACAP application for artpec-8 using the Docker provided by Axis. We have compiled our custom video analytics application which was already running in Q1615 using artpec-7. However we are facing an issue in artpec8 where the eap is installed in P3267. Our services are not getting launched due to Permission issue. We didnt have this permission issue with previous acap build running with artpec-7 mode in q1615. Docker Used to build artpec8 acap: Could you let us know how to resolve this Permission issue in acap while running in P3267 with artpec-8 . Rafi |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @rafiomeon ! I ran into something similar when putting a script on the SD card, due to the fact that the "noexec" flag is set on the drive. My hunch is that you are experiencing this, too. To check, try running the mount command -
Note the noexec stuff in parenthesis behind the mount point that you are running the script from. To get around this temporarily to see if everything else in your solution is running happily, you can re-mount the filesystem with the noexec flag removed, like so -
When you run the mount command again, you'll see that the flag is no longer set and you should be able to execute your script. Note that
I am still looking for a long-term solution to this noexec thing, and will add to this discussion if something good pops up. If anything, I hope this info will help you diagnose what is going on on your end! |
Beta Was this translation helpful? Give feedback.
Hey @rafiomeon !
I ran into something similar when putting a script on the SD card, due to the fact that the "noexec" flag is set on the drive. My hunch is that you are experiencing this, too.
To check, try running the mount command -
Note the noexec stuff in parenthesis behind the mount point that you are running the …