當前位置:首頁 » 操作系統 » linuxoracle進入

linuxoracle進入

發布時間: 2022-06-07 18:26:46

1. linux怎麼進入oracle

啟動oracle資料庫步驟:
首先使用oracle用戶登錄Linux,然後在shell命令行中執行下面的命令:
第一步:打開Oracle監聽
$ lsnrctl start
第二步:進入sqlplus
$ sqlplus /nolog
SQL>
第三步:使用sysdab角色登錄sqlplus
SQL> conn /as sysdba
第四步:啟動資料庫
SQL> startup
經過上面的四個步驟,oracle資料庫就可以啟動了。
關閉資料庫用 shutdown 是要等待事物結束才關閉,強制關閉用 shutdown abort。

2. oracle linux怎麼登陸

第一步:切換到oracle資料庫用戶:su oracle ,之後輸入password,即可完成切換。
第二步:輸入」sqlplus「即可進入命令行。
第三步:輸入」conn zhangsan/zhangsan「即可登錄」zhangsan"用戶。
解釋:linux系統和windows系統的sqlplus命令行是一樣的,沒有區別,不同的是linux下必須登錄到相應的許可權用戶下,才可以操作資料庫。

3. linux怎麼登陸oracle資料庫

×

loading..

資訊
安全
論壇
下載
讀書
程序開發
資料庫
系統
網路
電子書
微信學院
站長學院
QQ
手機軟體
考試

頻道欄目

SQL Server|
MySQL|
Oracle|
DB2|
Sybase|
其他綜合|
SQL教程|

登錄注冊

首頁 > 資料庫 > Oracle > 正文

連接Linux伺服器操作Oracle資料庫

2013-03-20 10:48:47
0個評論

收藏
我要投稿

連接Linux伺服器操作Oracle資料庫

由於項目已經上線,現場的資料庫伺服器不允許直接用Oracle的客戶端plsqldev.exe來連接,只能通過Linux伺服器的命令來操作。 以下是用SecureCRT 5.1客戶端連接Linux伺服器來操作Oracle資料庫:

1.連接到Linux伺服器(輸入伺服器的ip地址)

ssh 10.199.94.227

連接成功後會提示輸入密碼,輸入成功會提示。

2.切換到操作Oracle資料庫

su - oracle

切換成功會提示相關資料庫的實例。例如:oracle@linux-cg01:~>

3.切換到sqlplus操作

sqlplus /nolog

切換成功會提示相關的提示:例如:

SQL*Plus: Release 11.2.0.2.0 Proction on Thu Jan 19 11:19:48 2012

Copyright (c) 1982, 2010, Oracle. All rights reserved.

4.輸入資料庫的用戶名和密碼

conn personal/personal

5.會提示Connected.(連接成功),顯示 SQL> :

6.以下是相關的SQL語句操作:

(1) 查詢的語句後面要一定要加 ; ,否則不能執行查詢,相當於plsqldev.exe工具的命令窗口的操作

select *from newuseraccount (記得查詢的時候一定要加;)

select email,password from userreg where accountstype=1 and userstate=1;

(2)插入或更新的語句記得還要加提交語句,才能提交事務。相當於plsqldev.exe工具的命令窗口的操作。

update newuseraccount set address='address ' where userid=638 ;

commit ;

4. linux怎麼登入oracle

命令行進入:root用戶登錄linux桌面右擊>open terminal# su - oracle$ sqlplus /nologSQL> conn / as sysdbaSQL>startupSQL>select sysdate from al;之後你就可以使用oracle了謝謝

5. 在linux中如何進入到oracle的圖形配置資料庫界面

1、需要配置安裝VNC,然後通過VNC連接

2、安裝和配置VNC

① 安裝vnc

# yum install -y tigervnc-server tigervnc-server-mole libXfont pixman xterm xorg-x11-twm 安裝vnc及字體庫

# chkconfig vncserver on 設置開機自動啟動

②VNC配置

修改 /etc/sysconfig/vncservers 文件,添加以下內容

# The VNCSERVERS variable is a list of display:user pairs.

#

# Uncomment the lines below to start a VNC server on display :2

# as my 'myusername' (adjust this to your own). You will also

# need to set a VNC password; run 'man vncpasswd' to see how

# to do that.

#

# DO NOT RUN THIS SERVICE if your local area network is

# untrusted! For a secure way of using VNC, see this URL:

# http://kbase.redhat.com/faq/docs/DOC-7028


# Use "-nolisten tcp" to prevent X connections to your VNC server via TCP.


# Use "-localhost" to prevent remote VNC clients connecting except when

# doing so through a secure tunnel. See the "-via" option in the

# `man vncviewer' manual page.


# VNCSERVERS="2:myusername"

# VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -localhost"

VNCSERVERS="1:root"

VNCSERVERARGS[1]="-geometry 1024x768 -nolisten tcp -depth 24"

# -alwaysshared代表允許多用戶同時登錄 -depth代為色深,參數有8,16,24,32

#紅色為新增內容



③ 設置VNC密碼

# vncpasswd

Password:

Verify:

連續兩次輸入同樣的密碼

設置的密碼保存在 /root/.vnc/passwd


④ 修改防火牆配置,修改/etc/sysconfig/iptables

# vi /etc/sysconfig/iptables #編輯,添加以下代碼,開啟5901、5902埠

-A INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT

-A INPUT -m state --state NEW -m tcp -p tcp --dport 5902 -j ACCEPT

:wq! 保存,退出

service iptables restart # 重啟


⑤使用VNC連接CentOS主機

直接打開VNC,輸入IP地址,冒號後面的1代表桌面號,這個要根據你的配置文件定義的桌面號


3、通過vnc登陸後,切換到oracle用戶下面,即可進入到oracle的圖形配置資料庫界面

6. 求linux 進入oracle完整命令~第一次嘗試登陸~向各位求教~在線等!

su - oracle
sqlplus /nolog
connect /as sysdba

詳細步驟:

oracle資料庫是目前最流行的伺服器資料庫之一,能夠事項分布式處理功能,那麼Linux伺服器要如何啟動oracle資料庫呢?下面小編就給大家介紹下Linux使用命令啟動oracle資料庫的步驟,一起來了解下吧。

首先使用oracle用戶登錄Linux,然後在shell命令行中執行下面的命令:

第一步:打開Oracle監聽

$ lsnrctl start

第二步:進入sqlplus

$ sqlplus /nolog

SQL》

第三步:使用sysdab角色登錄sqlplus

SQL》 conn /as sysdba

第四步:啟動資料庫

SQL》 startup

7. 怎麼在linux中操作oracle資料庫

我用的是redhat
linux,用下面的步驟來啟動oracle資料庫。
首先使用oracle用戶登錄linux,然後在shell命令行中執行下面的命令:
第一步:打開oracle監聽
$
lsnrctl
start
第二步:進入sqlplus
$
sqlplus
/nolog
sql>
第三步:使用sysdab角色登錄sqlplus
sql>
conn
/as
sysdba
第四步:啟動資料庫
sql>
startup
經過上面的四個步驟,oracle資料庫就可以啟動了。

8. linux怎麼進入oracle命令

  1. su –oracle不是必需,適合於沒有DBA密碼時使用,可以不用密碼來進入sqlplus界面。

  2. sqlplus /nolog 或sqlplus system/manager 或./sqlplus system/manager@ora9i。

  3. root用戶登錄linux桌面右擊>open terminal# su - oracle$ sqlplus /nologSQL> conn / as sysdbaSQL>startupSQL>select sysdate from al;之後你就可以使用oracle了。

9. linux怎麼進入oracle命令

  1. su –oracle不是必需,適合於沒有DBA密碼時使用,可以不用密碼來進入sqlplus界面。

  2. sqlplus /nolog 或sqlplus system/manager 或./sqlplus system/manager@ora9i。

  3. root用戶登錄linux桌面右擊>open terminal# su - oracle$ sqlplus /nologSQL> conn / as sysdbaSQL>startupSQL>select sysdate from al;之後你就可以使用oracle了。

10. linux下oracle資料庫怎麼登陸

第一步:登陸
root登陸之後切換到oracle用戶上,輸入
su oracle
第二步:連接
在oracle用戶下,輸入
sqlplus /nolog
第三步:使用管理員許可權
輸入 connect /as sysdba
第四步:啟動/關閉服務
輸入 startup
startup參數
不帶參數,啟動資料庫實例並打開資料庫,以便用戶使用資料庫,在多數情況下,使用這種方式!
nomount,只啟動資料庫實例,但不打開資料庫,在你希望創建一個新的資料庫時使用,或者在你需要這樣的時候使用!
mount,在進行資料庫更名的時候採用。這個時候資料庫就打開並可以使用了!

熱點內容
python字元串前u 發布:2024-11-01 05:34:23 瀏覽:458
伺服器搭建之後的維護 發布:2024-11-01 05:27:35 瀏覽:245
電腦加秘伺服器在哪啟動 發布:2024-11-01 05:26:02 瀏覽:983
路由器需要哪些配置 發布:2024-11-01 05:08:35 瀏覽:980
c語言小寫變大寫 發布:2024-11-01 05:06:47 瀏覽:553
伺服器級電腦主機聯想 發布:2024-11-01 05:06:46 瀏覽:658
資料庫工程師的 發布:2024-11-01 04:54:54 瀏覽:372
手機存儲擴充 發布:2024-11-01 04:41:13 瀏覽:53
上班密碼箱多少寸合適 發布:2024-11-01 04:39:08 瀏覽:454
訪問噴劑 發布:2024-11-01 04:26:32 瀏覽:622