I installed Oracle 23AI free database and I'm attempting to create a new user and connect to the database as that user. I'm using Sql Developer to connect to the database. After connecting to the database as Sys, I run the following commands:
alter session set container = FREEPDB1;
Create User newuser identified by password1;
grant connect to newuser;
Grant create session to newuser;
All grants respond with grant succeeded.
When I attempt to connect as newuser I get the error: Status : Failure -Test failed: ORA-01017: invalid credential or not authorized; logon denied
I've tried granting DB_DEVELOPER_ROLE after viewing a video I found on UTube, but still cannot connect as newuser. What am I doing wrong?