SQL> startup mount;
ORACLE instance started.
...
Database mounted.
Recover the database until cancel
SQL> recover database until cancel;
...
CANCEL
Open the database with resetlogs which implies that we discard all of the missing redo logs and try to start it over.
SQL> alter database open resetlogs;
Database altered.
Check the redo logs again
[oracle@test ~]$ ll /u01/app/oracle/oradata/compdb
...
-rw-r-----. 1 oracle oinstall 52429312 Apr 13 19:05 redo01.log
-rw-r-----. 1 oracle oinstall 52429312 Apr 13 19:04 redo02.log
-rw-r-----. 1 oracle oinstall 52429312 Apr 13 19:04 redo03.log
The database recreates all required redo log files when opens with resetlogs.