Create an account for Oracle as a domain user.

Configuring a bastion server

  1. Start PowerShell for administrators.
  1. Execute the following command to add oracle as a domain user.
    • Create a new user
      PS > New-ADUser -Name "oracle" -AccountPassword (ConvertTo-SecureString -AsPlainText <password> -Force) -Enabled $true
      
    • Verify
      PS > Get-ADUser "oracle"
      

Configuring active and standby nodes

  1. Start PowerShell for administrators.
  1. Execute the following command to add oracle as a domain user.
    • Create a new user
      PS > Add-LocalGroupMember -Group "Users" -Member sios20-ad.lk\oracle
      
    • Verify
      PS > Get-LocalGroupMember -Group "Users" sios20-ad\oracle
      

Feedback

Was this helpful?

Yes No
You indicated this topic was not helpful to you ...
Could you please leave a comment telling us why? Thank you!
Thanks for your feedback.

Post your comment on this topic.

Post Comment