1.安裝教程參看:https://jingyan.baidu.com/article/3c48dd34be2a32e10be35881.html
2.用戶解鎖
--> 運行cmd
--> 輸入sqlplus / as sysdba 后回車,以超級管理員身份登錄
--> 輸入alter user 賬戶 account unlock;進行解鎖,注意語句以 ; 結束。 例如:alter user scott account unlock; scott賬戶為oracle 賬戶
oracle默認賬號與密碼
--- oracle默認的賬號是被鎖定的,想要實現該賬戶的登錄,必須解鎖賬戶
3.用戶密碼的修改
-- 在2.中的步驟操作之后 輸入:alter user scott identified by 密碼。例如 alter user scott identified by 123; 即將scott賬戶的密碼修改為123