How to install Oracle 11g on linux without X?

前端 未结 2 1129
[愿得一人]
[愿得一人] 2020-12-17 23:46

I tried to install Oracle client from http://www.oracle.com/technetwork/database/enterprise-edition/downloads/112010-linx8664soft-100572.html but some genius makes installer

2条回答
  •  一个人的身影
    2020-12-18 00:33

    Here's an example of how you might run 12c+ dbca from the command line. The parameters are all pretty much self-explanatory

    dbca -silent -createDatabase  -templateName General_Purpose.dbc  -gdbname MY_CDB -sid MY_CDB -responseFile NO_VALUE \
     -characterSet AL32UTF8  -sysPassword MyPassword123  -systemPassword MyPassword123  -createAsContainerDatabase true \
     -numberOfPDBs 1 -pdbName MY_PDB -pdbAdminPassword MyPassword123 -databaseType MULTIPURPOSE \
     -automaticMemoryManagement false -totalMemory 2000 -storageType FS  -datafileDestination "//oradata/" \
     -redoLogFileSize 200 -emConfiguration NONE -ignorePreReqs
    

提交回复
热议问题