The following is a workaround to disable SSH login for the oracle user account on the MSE:
1. Log in to the MSE as user root.
2. Edit the file /etc/ssh/sshd_config via a text editor.
3. Navigate to the bottom of the file and add the following line:
DenyUsers oracle
This instructs the SSH service to not allow SSH logins for the oracle user.
Note: This change only takes effect after the SSH service is restarted.
4. Save the updated /etc/ssh/sshd_config file.
5. Restart the SSH service with the service sshd restart command.
6. To verify that the workaround is properly configured, attempt an SSH login to the MSE as the oracle user.
This login attempt should fail with the error .
ssh –l oracle
Try an SSH login to the MSE as the root user. This login attempt should succeed.
ssh -l root
Note: This workaround configuration is persistent and only needs to be applied once.