How to reconfigure Oracle 10g xe on Linux

后端 未结 5 918
野性不改
野性不改 2021-02-01 18:32

I have installed Oracle 10g xe from a deb file on linux, and then started to configure it using this terminal command

sudo /etc/init.d/oracle-xe configure

5条回答
  •  借酒劲吻你
    2021-02-01 19:05

    Oracle creates a system account named oracle. To change password to that account just use

    passwd oracle
    

    if you forgot another password from DB then log in as oracle user and use

    sqlplus / as sysdba
    

    to change the password for various DB accounts.

    To reconfigure change in /etc/default/oracle-xe

    CONFIGURE_RUN=true 
    

    to

    CONFIGURE_RUN=false
    

    and rerun

    sudo /etc/init.d/oracle-xe configure 
    

提交回复
热议问题