真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么把開機oracle,怎么把開機pin密碼去掉

如何在Linux中設(shè)置開機自動啟動oracle

對于LINUX 操作系統(tǒng) 有很多技術(shù)知識是我們需要學習的。這里我就給大家介紹Linux中設(shè)置oracle開機自動啟動的 方法 。一起來看看吧。

洛扎網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應式網(wǎng)站建設(shè)等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)于2013年成立到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)。

Linux中設(shè)置oracle開機自動啟動的方法

在terminal中切換到root用戶

查看/etc/oratab文件的內(nèi)容,其內(nèi)容如下

[root@golonglee ~]# cat /etc/oratab | grep -v ^$

#

# This file is used by ORACLE utilities. It is created by root.sh

# and updated by the Database Configuration Assistant when creating

# a database.

# A colon, ':', is used as the field terminator. A new line terminates

# the entry. Lines beginning with a pound sign, '#', are comments.

#

# Entries are of the form:

# $ORACLE_SID:$ORACLE_HOME::

#

# The first and second fields are the system identifier and home

# directory of the database respectively. The third filed indicates

# to the dbstart utility that the database should , "Y", or should not,

# "N", be brought up at system boot time.

#

# Multiple entries with the same $ORACLE_SID are not allowed.

#

#

oel63:/home/oracle/app/oracle/product/11.2.0/dbhome_1:N

使用命令vi /etc/oratab編輯文件/etc/oratab,在最后添加如下內(nèi)容

##### what I have written is as following

oel63:/home/oracle/app/oracle/product/11.2.0/dbhome_1:Y

#####Finished wrote in 2015-12-24

說明:/home/oracle/app/oracle/product/11.2.0/dbhome_1為oracle的安裝目錄,要根據(jù)實際情況進行修改。

(注意:圖中我用紅色標記的N要改成Y)

找到最后的內(nèi)容

oel63:/home/oracle/app/oracle/product/11.2.0/dbhome_1:N

復制該行oel63:/home/oracle/app/oracle/product/11.2.0/dbhome_1:N并注釋掉

粘貼該行,并將該行

oel63:/home/oracle/app/oracle/product/11.2.0/dbhome_1:N最后的N

改為Y

最后按2次ESC鍵,并輸入:wq并按下enter保存,退出

使用命令vi /etc/rc.d/rc.local編輯rc.local文件,添加如下內(nèi)容

##### what I have written is as following

su oracle -lc "/home/oracle/app/oracle/product/11.2.0/dbhome_1/bin/lsnrctl start"

su oracle -lc /home/oracle/app/oracle/product/11.2.0/dbhome_1/bin/dbstart

#####Finished wrote in 2015-12-24

說明:因為第一行命令中有空格所以用雙引號(英文的雙引號)

/home/oracle/app/oracle/product/11.2.0/dbhome_1為oracle的安裝目錄,要根據(jù)實際情況進行修改。

最后按2次ESC鍵,并輸入:wq并按下enter保存,退出,重啟機器,驗證成功。

是不是很簡單呢~快跟著我一起學習吧!!!如果覺得這篇 文章 不錯的話就給我點一個贊吧。

oracle開機自啟動

1) 建立用戶, 組, 目錄

[root@node1 ~]# id oracle

id: oracle: No such user

[root@node1 ~]# groupadd -g 54321 oinstall

[root@node1 ~]# groupadd -g 54322 dba

[root@node1 ~]# useradd -u 54321 -g oinstall -G dba oracle

[root@node1 ~]# passwd oracle

Changing password for user oracle.

New password:

BAD PASSWORD: it is based on a dictionary word

BAD PASSWORD: is too simple

Retype new password:

passwd: all authentication tokens updated successfully.

[root@node1 ~]# mkdir -p /u01/app/oracle

[root@node1 ~]# chown -R oracle:oinstall /u01/

2) 環(huán)境變量

export ORACLE_BASE=/u01/app/oracle

export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1

export ORACLE_SID=ora11g

export PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin

export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib

LANG=C

3) Cat /etc/sysctl.conf

kernel.shmmax = 4294967295

kernel.shmall = 2097152

kernel.shmmni = 4096

kernel.sem = 250 32000 100 128

fs.file-max = 6815744

net.ipv4.ip_local_port_range = 9000 65500

net.core.rmem_default=1048576

net.core.rmem_max=4194304

net.core.wmem_default=262144

net.core.wmem_max=1048576

fs.aio-max-nr=1048576

4) oracle 開機自啟

[root@node1 ~]# cp /etc/init.d/network /etc/init.d/oracle

[root@node1 ~]# vim /etc/init.d/oracle

[root@node1 ~]# chmod +x /etc/init.d/oracle

[root@node1 ~]# chkconfig oracle on

[root@node1 ~]# cat /etc/init.d/oracle

[oracle@node1 auto_backup]$ cat /etc/init.d/oracle

#! /bin/bash#

chkconfig: 2345 10 90

#

Source function library.

. /etc/init.d/functions

# See how we were called.

case "$1" in

start)

su - oracle -c "/home/oracle/startdb11g"

;;

stop)

su - oracle -c "/home/oracle/stopdb11g"

;;

*)

echo #34;Usage: $0 {start|stop}"

exit 2

esac

exit $rc

[oracle@node1 auto_backup]$ chkconfig oracle on

取消Oracle開機自動啟動

1.右鍵我的電腦-管理-服務(wù)和應用程序-服務(wù)

2.找到Oracle打頭的幾個服務(wù)(如圖),最占用資源的是OracleServiceDB

右鍵OracleServiceDB-屬性-狀態(tài)-停止即可停止oracle.exe服務(wù)但是下次電腦開機后會自動啟動(右鍵OracleServiceDB-屬性-啟動類型-手動該服務(wù)以后不自動開啟。需要使用oracle的時候手動點擊啟動按鈕“屬性-服務(wù)狀態(tài)-啟動”)

3.其它服務(wù)可按照該方法依次停止服務(wù)。希望能對你有幫助!


網(wǎng)頁標題:怎么把開機oracle,怎么把開機pin密碼去掉
本文鏈接:http://weahome.cn/article/dssojco.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部