程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> DB2數據庫 >> DB2教程 >> windows系統下知道DB2端口號的“妙招”

windows系統下知道DB2端口號的“妙招”

編輯:DB2教程

我們今天主要向大家講述的是在aix、linux、windows系統下知道DB2端口號的實際操作方案,相信如果你掌握了在aix、linux、windows系統下知道DB2端口號的實際操作方案這項技術,會在以後的學習或是工作中帶來很大的幫助。

DB2安裝完成後,tcp/ip連接端口默認為50000,可通過下面的方法確認:

1、使用命令 DB2 get dbm cfg |find "SVCENAME" 查找到TCP/IP 服務名

2、到系統配置文件裡找到service name 對應的 port number

windows:查看 c:\windows\system32\drivers\etc\services aix: 查看 /etc/services

如下:

  1. DB2_DB2 60000/tcp  
  2. DB2_DB2_1 60001/tcp  
  3. DB2_DB2_2 60002/tcp  
  4. DB2_DB2_END 60003/tcp DB2c_DB2 50000/tcp 

3、使用 netstat -an 命令查找tcp/ip 服務的端口

4、另外附上一個關於linux系統下的查找方法摘抄帖子):

  1. In JDBC configurations for WPA, you have to specify the port that DB2 is listening on. I usually look for  
  2. /etc/services or try one of 50000/50001 and it usually works. In SUSE Linux, both the solutions did   
  3. not work and there was another process (Multithreaded routing toolkit aka mrt) was listening on port 50000.  
  4. So how do we find out the DB2 port in a reliable way? Read on...  
  5. Step 1: Set the DB2 environment.  
  6. $ . ~DB2inst1/sqllib/DB2profile  
  7. Step 2: Find the service name for DB2 instance. It basically involves running  
  8. "DB2 get dbm cfg" command and finding a line containing SVCENAME.   
  9. $ svc=`DB2 get dbm cfg | grep SVCENAME | cut -d= -f2 | awk '{print $1}'`  
  10. Step 3: Find the service name that you got from Step 2 in /etc/services or %SYSTEMROOT  
  11. %\system32\drivers\etc\services. That is the port DB2 is listening on.  
  12. $ grep $svc /etc/services  
  13. Hope you find this useful.  

以上的相關內容就是對aix、linux、windows系統下如何知道DB2端口號的介紹,望你能有所收獲。

aix、linux、windows系統下如何知道DB2的端口號

上述的相關內容就是對aix、linux、windows系統下如何知道DB2端口號的描述,希望會給你帶來一些幫助在此方面。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved