当前位置:网站首页>Startup, shutdown and restart of Oracle and MySQL on Linux

Startup, shutdown and restart of Oracle and MySQL on Linux

2022-06-25 07:53:00 Wangcai 2

oracle operation

start-up :

Get into oracle user :

su oracle

see oracle Listening state :

lsnrctl status

Execute start listening , Through the command :

lsnrctl start

Sign in oracle:

sqlplus / as sysdba

start-up oracle example :

startup open

close :

Sign in oracle, Close instance :

shutdown immediate;

exit

lsnrctl stop :

lsnrctl stop

restart :

SQL> shutdown immediate

SQL> startup open

mysql operation

start-up

service mysqld start

close

service mysqld stop

原网站

版权声明
本文为[Wangcai 2]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/176/202206250601024366.html