0

An employee accidental recursively changed permissions from the root directory to apache. I reran it to root, we fixed MySQL, but SSH still doesn't work. What is the correct way to restore the ownership for sshd?

Dave M
  • 4,494
  • 21
  • 30
  • 30
nicoX
  • 611
  • 9
  • 18
  • You're probably best off restoring from backup. SSH isn't the only thing likely to be affected by this, and getting it back to normal is probably nearly impossible. – ceejayoz Sep 26 '14 at 14:58

1 Answers1

1

If you just want to restore the permissions for sshd the command would be:

rpm --setugids openssh-server 

From the manual:

rpm --setugids PACKAGE_NAME sets user/group ownership of files in the given package..

HBruijn
  • 72,524
  • 21
  • 127
  • 192