Known Issues
See what others have reported and what we have in the queue to get fixed.
This list is maintained in a best effort fashion and may not reflect all known issues.
Want to report a bug? Please let us know by giving us a shout in the #poweron-pro channel on our Discord or an email at [email protected].
Files disappear during Remote Sym synchronization
If you've set up your Remote Syms and are attempting to synchronize but the files and directories appear and disappear or just don't seem to appear at all, this may have to do with the fact that your WSL environment doesn't have write access to the mounted path you're using for the Local Symitar Path setting.
Updating the wsl.conf
Some users have shown resolved this by updating the wsl.conf in their WSL environment to include the following:
[automount]
enabled = true
options = "metadata,umask=22,fmask=11,uid=<your_uid>,gid=<your_gid>uid- comes from runningid -uin the WSL environmentgid- comes from runningid -gin the WSL environment
After making the change, you will need to restart the WSL environment which can be done by running wsl --shutdown and wsl to start it back up again.
Permission Denied
If you're seeing any sort of Permission Denied issue in logs or bubbled up through the notifications, this most likely has to do with you missing the SYM### group for the Sym you're pointed to for your AIX user.
Checking your groups
First determine whether or not you have the right Symitar group for the Sym you're trying to use.
SSH into the Symitar host
# the '-t' flag assigns you a pseudo terminal
ssh <aix_user>@<aix_host> -t '/usr/bin/ksh'Run the
groupscommand from the$prompt
$ groups
staff SYM627From here, you may be missing the SYM### which is what's causing the permission https://www.jackhenry.com/denied failure when we try to write to a subdirectory within the Sym. To update your groups, check out the next section.
Updating your groups
If you are indeed missing the target Sym group, you'll need to update it which will require elevated permissions. If you're on-premise, su or root should do but if you're with a data provider like EASE, Synergent, or MDT, you will likely need to reach out to them to perform the change.
Update using
usermod
# Note: <target_sym> will be the SYM### you're trying to connect to
usermod -a -G <target_sym> <aix_user>Be sure to check to make sure it was sucessful before retrying anything in PowerOn Pro.
Last updated
Was this helpful?