導航:首頁 > 配伺服器 > c連接linux資料庫伺服器地址

c連接linux資料庫伺服器地址

發布時間:2023-01-05 08:06:06

A. linux伺服器怎麼連接資料庫

Linux系統下可以用sqlplus命令連接oracle資料庫,方法如下:
sqlplus命令語法:

1
2
3
4
5
6

#sqlplus usr/pwd@//host:port/sid
#usr:用戶名
#pwd:密碼
#host:資料庫伺服器IP
#port:埠
#sid:資料庫標識符

sqlplus命令連接Oracle示例:

1
2
3
4
5
6
7
8
9
10
11
12
13

[oracle@mzl ~]$ sqlplus risenet/1@//192.168.130.99:1521/risenet
SQL*Plus: Release 10.2.0.1.0 - Proction on Mon Feb 18 15:53:34 2008
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to:
Oracle9i Enterprise Edition Release 9.2.0.1.0 - Proction
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Proction
#測試資料庫select查詢語句
SQL> select instance_name,status from v$instance;

B. 如何連接到linux上的oracle資料庫

裝好oracle資料庫,我們准備用PLSQL Developer 這個軟體來連接伺服器的資料庫!

下面簡單介紹設置此軟體並連接oracle資料庫的方法:

一、下載並安裝好PLSQL Developer(綠色版的也可以);

二、下載並解壓

Oracle免安裝版的客戶端:

http://download.oracle.com/otn/nt/instantclient/112030/instantclient-basic-nt-11.2.0.3.0.zip



三、建立tns配置文件。
1、在解壓的:「nstantclient-basic-nt-11.2.0.3.0」文件夾的下面建文件夾,路徑像這樣「nstantclient-basic-nt-11.2.0.3.0 eidownadmin「,其實這個倒是無所謂的,只是看起來與服務端上的更接近而已,與文章後面的環境變數要對應。
2、拷貝服務端目錄「$ORACLE_HOME$ etworkadmin nsnames.ora」到客戶端的「nstantclient-basic-nt-11.2.0.3.0 eidownadmin「目錄,這個文件的內容如下:(也可自行建立)

C. linux c下怎麼鏈接資料庫

開啟MySQL服務後,使用MySQL命令可以登錄。一般使用mysql -uroot -p即可。如果資料庫不是本機,則需要加參數,常用參數如下:

1,-h,指定ip地址,默認為localhost

2,-u,指定用戶名。

3,-p,指定密碼,密碼可以接在-p後面輸入mysql -uroot -p123456。也也可以mysql -uroot -p回車等提示輸入密碼時輸入,這樣輸入密碼沒有回顯。
需要解決更多linux問題,詳情請看 http://www.linuxprobe.com/chapter-00.html
望採納

D. linux c 怎麼獲得伺服器mac 地址

獲取伺服器mac 復制代碼 代碼如下: <?php /** 獲取網卡的MAC地址原碼;目前支持WIN/LINUX系統 獲取機器網卡的物理(MAC)地址 **/ class GetmacAddr{ var $result = array(); // 返回帶有MAC地址的字串數組 var $macAddr; /*構造*/ function __construct($osType){ switch ( strtolower($osType) ){ case "unix": break; case "solaris": break; case "aix": break; case "linux": { $this->for_linux_os(); }break; default: { $this->for_windows_os(); }break; } $temp_array = array(); foreach($this->result as $value){ if(preg_match("/[0-9a-f][0-9a-f][:-]"."[0-9a-f][0-9a-f][:-]"."[0-9a-f][0-9a-f][:-]"."[0-9a-f][0-9a-f][:-]"."[0-9a-f][0-9a-f][:-]"."[0-9a-f][0-9a-f]/i",$value, $temp_array ) ){ $this->macAddr = $temp_array[0]; break; } } unset($temp_array); return $this->macAddr; } /*linux系統中獲取方法*/ function for_linux_os(){ @exec("ifconfig -a", $this->result); return $this->result; } /*win系統中的獲取方法*/ function for_windows_os(){ @exec("ipconfig /all", $this->result); if ( $this->result ) { return $this->result; } else { $ipconfig = $_SERVER["WINDIR"]."\system32\ipconfig.exe"; if(is_file($ipconfig)) { @exec($ipconfig." /all", $this->result); } else { @exec($_SERVER["WINDIR"]."\system\ipconfig.exe /all", $this->result); return $this->result; } } } } ?> 獲取客戶端mac地址: 復制代碼 代碼如下: @exec("arp -a",$array); //執行arp -a命令,結果放到數組$array中 foreach($array as $value){ //匹配結果放到數組$mac_array if(strpos($value,$_SERVER["REMOTE_ADDR"]) && preg_match("/(:?[0-9A-F]{2}[:-]){5}[0-9A-F]{2}/i",$value,$mac_array)){ $mac = $mac_array[0]; break; } } echo $mac; 註:客戶端獲取的mac不能在本機測試,只能用別的電腦訪問才能輸出

E. windows下oracle客戶端連接linux下伺服器,如何配置

軟體環境: 1、Windows NT4.0+ORACLE 8.0.4
2、ORACLE安裝路徑為:C:\ORANT
3、伺服器A、伺服器B,均裝有NT 4.0中文版

實現方法: 1. 假設A地址192.1.1.1,B地址192.1.1.2

2. A、B上配置好TCP/IP,互相Ping通。

3. 配置init.ora文件,若global_name = true的話,database link 的名字必須同遠程機的實例名相同,

為簡便起見,請將global_name 設為 false。

4. 在伺服器上配置tnsnames.ora,將Remote機器的地址(IP)信息加入本地的tnsnames.ora

A伺服器:
TNSA_B =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS =
(COMMUNITY = tcp.world)
(PROTOCOL = TCP)
(Host = 192.1.1.2)
(Port = 1521)
)
)
(CONNECT_DATA = (SID = ORCL)
)
)

B伺服器:
TNSB_A =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS =
(COMMUNITY = tcp.world)
(PROTOCOL = TCP)
(Host = 192.1.1.1)
(Port = 1521)
)
)
(CONNECT_DATA = (SID = ORCL)
)
)

5. 在 SQL*Plus 或其它工具中創建資料庫鏈接

A伺服器:create public database link A_TO_B connect to tmp identified by tmp using 'TNSA_B';

B伺服器:create public database link B_TO_A connect to tmp identified by tmp using 'TNSB_A';

說明:
tmp是一個臨時用戶,A伺服器、B伺服器上均有,它的作用是提供鏈接的目的地,
假如:
B伺服器上有user1、user2、tmp三個用戶,user1和user2把他們想要對外公開的表的許可權授給tmp用戶,
那麼,所有能通過database link連接到tmp用戶上的人就可以直接訪問user1、user2上的已授權表了。

6. 建立database link以後,請用這種格式select * from table_name@database_link_name 的方式訪問

如:在A伺服器上想訪問B伺服器上user1用戶table1表的內容(A到B的連接為A_TO_B),則

SQL> select * from table1@A_TO_B;

7. 如果Oracle版本為7.3,則資料庫聯接寫法如下:

A伺服器:create public database link A_TO_B connect to tmp identified by tmp using 't:192.1.1.2:orcl';

B伺服器:create public database link B_TO_A connect to tmp identified by tmp using 't:192.1.1.1:orcl';

F. 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 ;

G. 請問,在vs2005中,c#怎麼連接linux 中的informix 資料庫

內容是轉載的,希望對你有所幫助。

Windows下連接Linux中的Informix資料庫的兩種實用方法:用MyEclipse直接連接Informix資料庫和用ODBC連接Informix資料庫。

項目中用到的開發相關資料主要有:

系統開發環境:Windows+Linux

Windows開發軟體:MyEclipse5.5+IBM Informix Client-SDK 2.90+FlashFXP

Linux軟體:Informix11資料庫

相關技術:JSP+Struts+JavaBean+Informix

方式一:MyEclipse直接連接Informix資料庫

准備文件有:d:\ifxjdbc.jar

操作步驟:"開始"--「所有程序」--「MyEclipse 5.5」--"Windows"--"Open Perspctive"--"My Eclipse Database Explorer" 打開DB Browser窗體,滑鼠右鍵"new"新建一個資料庫連接

Driver name:自定義連接標識( 如informix.jdbc.IfxDriver)
nnection URL:jdbc:informix-sqli://192.168.1.249:9000/databasename:informixserver=informixservername;newcodeset=GBK,8859-1,819
User name: informix
Password: informix
Driver JARs :d:\ifjdbc.jar

其中192.168.1.249為Linux伺服器IP,databasename為Linux伺服器資料庫名和informixservername為Linux伺服器資料庫服務名稱

方式二:ODBC連接Informix資料庫
1.安裝IBM Informix Client-SDK 2.90

2.打開控制面板--數據源(ODBC)--新建一個新的系統DSN,設置如下:

Server Name: Informix Server
Host Name :192.168.1.249
Service :sqlexecl
protocol :onsoctcp
Options :
Database Name :DataBaseName
User Id : Informix User Name
Password : Informix Password

3.設置Windows系統文件service內容
C:\WINDOWS\system32\drivers\etc\service
man 9535/tcp #Remote Man Server
sqlexecl 9003/tcp #Remote Linux Informix Data Server

3.設置Windows系統文件hosts內容
C:\WINDOWS\system32\drivers\etc\hosts
127.0.0.1 localhost
192.168.1.249 LinuxMachineName

H. 怎麼在linux環境下通過c/c++語言連接oracle資料庫

推薦你使用pc語言,用這個編寫代碼很容易對資料庫oracle進行操作.各種操作都非常簡單.
例如:
EXEC SQL CONNECT :UserName IDENTIFIED BY :PassWord using :ServerName;
這樣一個簡單語句就可以實現連接資料庫.
EXEC SQL CALL insert_data_sms(:spnumber,:usernumber,:content,:flag,:priority,:spnode,:sequenid_sp,:iresult);
EXEC SQL COMMIT;/*提交事務*/
可調用存儲過程.
你可以找找這方便的書看看

I. 求教高人,linux下c語言如何連接mysql資料庫啊,求高手給點資料,謝謝。

幫你一下吧,我只能粗寫,你自己詳細參考一下函數庫,下面localhost,是資料庫伺服器的地址,
username,password分別為訪問資料庫所需要的用戶名和密碼,database是資料庫的名稱,請你參考MYSQL結構體以獲取更加詳細的參數信息
#include <stdlib.h>
#include<stdio.h>
#include "mysql.h"
int main(int argc,char**argv){
MYSQL *conn_ptr;
conn_ptr=mysql_init(NULL);
if(!conn_ptr){
fprintf(stderr,"mysql_init failed\n");
return EXIT_FAILURE;
}
conn_ptr=mysql_real_connect(conn_ptr,"localhost","username","password","database",0,NULL,0);
if(conn_ptr){
printf("Connection success\n");
}else{
printf("Connection failed\n");
}
mysql_close(conn_ptr);
return EXIT_SUCCESS;
}

J. linux下用C語言鏈接mysql

安裝mysql-devel的rpm 。。。
這是mysql的開發包。他提供了基本操作介面。
安裝後,頭文件在 /usr/include/mysql/...
而動態庫在 /usr/lib/mysql/

再查查資料。
mysql_init;
mysql_options;
mysql_real_connect;
mysql_real_query;
mysql_close;

閱讀全文

與c連接linux資料庫伺服器地址相關的資料

熱點內容
程序員如何換個城市生活 瀏覽:145
JS開發PDF 瀏覽:285
app格式不對怎麼辦 瀏覽:96
32位定時器單片機 瀏覽:332
安卓編譯不能進行下一步簽名 瀏覽:607
男生做保潔解壓視頻 瀏覽:750
qd88yg壓縮機參數 瀏覽:385
pubg國際服伺服器有什麼區別 瀏覽:506
怎麼打開文件夾自動刪除 瀏覽:685
php中英文切換 瀏覽:445
php168數據 瀏覽:79
水壓縮後有彈性 瀏覽:47
蘇州阿里雲伺服器數據備份 瀏覽:524
消息提示音怎麼設置安卓 瀏覽:279
怎麼去掉安卓手機的小圓圈 瀏覽:476
女程序員每天教你一招 瀏覽:590
葯劑學pdf下載 瀏覽:477
打開的共享文件夾少東西 瀏覽:643
芝麻黑頭解壓去除視頻 瀏覽:186
光明與黑暗怎麼進入伺服器 瀏覽:659