Linux配置Oracle環境變數

2022-07-19 10:03:12 字數 858 閱讀 5774

一:當前客戶端有效(比如:securecrt乙個視窗,當前有效)

在當前的shell(bash)或其子shell(bash)下是有效的,shell關閉了,變數也就失效了,再開啟新shell時就沒有這個變數

#oracle安裝目錄(注意:目錄最好使用雙引號區分):

export oracle_home="/home/oracle/product/12.1.0/dbhome_1";

#oracle例項名

export oracle_sid=orcl;

#配置系統變數

export path=$oracle_home/bin:$path;

二:當前使用者有效

在使用者目錄下的.bash_profile檔案中增加變數(新增至檔案末尾處),設定的變數僅會對當前使用者有效

oracle_home="/home/oracle/product/12.1.0/dbhome_1";

oracle_sid=orcl;

path=$oracle_home/bin:$path; 

儲存檔案後需要使用:source .bash_profile 使之生效!!!

三:永久有效

在根目錄下的/etc/profile檔案中新增變數,該變數對linux下所有使用者有效,並且是「永久的」

oracle_home="/home/oracle/product/12.1.0/dbhome_1";

oracle_sid=orcl;

path=$oracle_home/bin:$path;
儲存檔案後需要使用:source etc/profile 使之生效!!!

oracle 在 Linux下安裝環境配置

一 安裝前提條件 1.檢視記憶體情況 grep memtotal proc meminfo 2.檢視swap情況 grep swaptotal proc meminfo 3.檢視磁碟空間 df h 4.tmp目錄空間大於400mb 二 建立使用者 1.建立使用者組 groupadd dba 2.建立...

Linux環境配置

2 系統穩定性強 伺服器 3 核心可裁剪 嵌入式 新建虛擬機器 選擇linux系統和fedora版本 建立好虛擬機器 windows網路環境配置 cmd win r ipconfig ip 192.168.8.主機號 0 255 linux網路環境配置 終端 ifconfig ip 192.168....

linux配置環境

nkfwpnghhkluafkj 自動掛載 sudo blkid s uuid sudo gedit etc fstab 新增下面的內容到末尾 tmpfs home fz tmp tmpfs size 5g,mode 1777 0 0 uuid 6aeafa73eafa3ac1 media fz d...