Create an account for Oracle as a domain user.
Configuring a bastion server
- Start PowerShell for administrators.
- 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"
- Create a new user
Configuring active and standby nodes
- Start PowerShell for administrators.
- 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
- Create a new user
Post your comment on this topic.