1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| [root@iz2zej4i2jdf3i8bhr61xsz ~]# docker exec -it 6fea41c62a88 /bin/bash [root@6fea41c62a88 /]# su oracle [oracle@6fea41c62a88 /]$ $ORACLE_HOME/bin/sqlplus / as sysdba SQL*Plus: Release 12.1.0.2.0 Production on Sun Jan 19 05:20:04 2020 Copyright (c) 1982, 2014, Oracle. All rights reserved. Connected to: Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options SQL> conn system/oracle as sysdba; Connected. SQL> alter user system identified by oracle; User altered. SQL> alter user sys identified by sys; User altered. SQL> ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED; Profile altered. SQL> create user test identified by test; User created. SQL> grant connect,resource,dba to test; Grant succeeded.
|