• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Group change from psacln to apache ?

C

chaloupe

Guest
I have big trouble in my Files Manager for my clients.

Group change from psacln to apache and by doin' that, we cannot go modify anything in the folder, not even show what's inside the folder.

permission also change to rwx --- ---

What could we do to change those group back so we can edit and what is causing this situation.

tx
 
User change to apache too!

the user and group change to apache. not only the group.
 
SSH into the server, change directory to the proper place, then use 'chown' command:
Code:
chown -R :psacln name-of-directory
Notice the colon before the word psacln. This will leave the UID the same. If you want to change that as well, then do:
Code:
chown -R ftpusername:psacln name-of-directory
Where 'ftpusername' is the name of the domain's ftp user you defined.

To change the permissions, use the chmod command:
Code:
chmod -R value name-of-directory
Where value can be whatever (like 664, 700, 750, 755, etc) or if you prefer to use the symbolic, use something like:
Code:
chmod -R ugo +rw name-of-directory
 
Back
Top