473,672 Members | 2,603 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

SQL5043N Support for one or more communications ... and SQL8011W

I am trying to test the DB2 V8.1 partitioning on the RedHat Linux EL 3
AS. I installed v8.1 successfully using db2_install and installed the
FP5.

Now, I created an ESE instance and edited the db2nodes.cfg (the 1st
line was created by default, I added the 2nd line)

[db2inst1@db01 db2inst1]$ cat sqllib/db2nodes.cfg

0 db01.prince.com 0 #created by db2icrt -s ese ..
1 db01.prince.com 1 #added by me for testing partitioning feature

[db2inst1@db01]$ db2start #works just fine db2nodes.cfg has only one
entry
05-22-2004 12:39:20 1 0 SQL1063N DB2START processing was
successful.
05-22-2004 12:39:27 0 0 SQL5043N Support for one or more
communications protocols failed to start successfully. However, core
database manager functionality started successfully.
SQL8011W One or more database partitions does not have a valid DB2
license key installed for the "DB2 Enterprise Server Edition" product.
SQL1063N DB2START processing was successful.
[db2inst1@db01 db2inst1]$ tail sqlib/db2dump/db2diag.log

ADM7007E The SVCENAME DBM configuration parameter, "60001", is
configured with
a port or a service name. When it is configured with a service name,
the
TCP/IP services files is used to map the service name to a port
number. The
port specified in this field is being used by another process.
Resolve this
problem by either deleting the process using the port or use another
port.

[db2inst1@db01]$ db2 get dbm cfg | grep SVC
TCP/IP Service name (SVCENAME) =
DB2_db2inst1

[db2inst1@db01 db2inst1]$ grep 6000 /etc/services
DB2_db2inst1 60001/tcp
DB2_db2inst1_1 60002/tcp
DB2_db2inst1_2 60003/tcp
DB2_db2inst1_EN D 60004/tcp

[root@db01]# netstat -natep | grep 6000
tcp 0 0 127.0.0.1:60001 0.0.0.0:* LISTEN 502 63709
14411/db2fcmdm
tcp 0 0 127.0.0.1:60002 0.0.0.0:* LISTEN 502 63714
14419/db2fcmdm

How do I fix this error?

Thanks.
Nov 12 '05 #1
4 16684
Ian
db*****@yahoo.c om wrote:
I am trying to test the DB2 V8.1 partitioning on the RedHat Linux EL 3
AS. I installed v8.1 successfully using db2_install and installed the
FP5.

Now, I created an ESE instance and edited the db2nodes.cfg (the 1st
line was created by default, I added the 2nd line)

[db2inst1@db01 db2inst1]$ cat sqllib/db2nodes.cfg

0 db01.prince.com 0 #created by db2icrt -s ese ..
1 db01.prince.com 1 #added by me for testing partitioning feature

[db2inst1@db01]$ db2start #works just fine db2nodes.cfg has only one
entry
05-22-2004 12:39:20 1 0 SQL1063N DB2START processing was
successful.
05-22-2004 12:39:27 0 0 SQL5043N Support for one or more
communications protocols failed to start successfully. However, core
database manager functionality started successfully.
SQL8011W One or more database partitions does not have a valid DB2
license key installed for the "DB2 Enterprise Server Edition" product.
SQL1063N DB2START processing was successful.

[db2inst1@db01]$ db2 get dbm cfg | grep SVC
TCP/IP Service name (SVCENAME) =
DB2_db2inst1

[db2inst1@db01 db2inst1]$ grep 6000 /etc/services
DB2_db2inst1 60001/tcp
DB2_db2inst1_1 60002/tcp
DB2_db2inst1_2 60003/tcp
DB2_db2inst1_EN D 60004/tcp


These ports are used for the DB2 FCM to communicate between partitions,
not for client communication (SVCENAME) with the instance.

You need to create another entry in /etc/services for TCPIP client
communication (the default created when db2 installs is something
like 'db2cdb2inst1', on port 50000) and update the SVCENAME param.


-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----== Over 100,000 Newsgroups - 19 Different Servers! =-----
Nov 12 '05 #2
Thanks Ian for the response.

I already tried changing the port, but am getting the similar kind of
error.

ADM7007E The SVCENAME DBM configuration parameter, "14465", is
configured with
a port or a service name. When it is configured with a service name,
the
TCP/IP services files is used to map the service name to a port
number. The
port specified in this field is being used by another process.
Resolve this
problem by either deleting the process using the port or use another
port.
[db2inst1@db01]$ sudo netstat -pante | grep 144
tcp 0 0 127.0.0.1:14465 0.0.0.0:* LISTEN 502 5664 2407/db2fcmdm
tcp 0 0 127.0.0.1:14466 0.0.0.0:* LISTEN 502 6285 2406/db2fcmdm
[db2inst1@db01]$ grep DB2 /etc/services
DB2_db2inst1 80001/tcp
DB2_db2inst1_1 80002/tcp
DB2_db2inst1_2 80003/tcp
DB2_db2inst1_EN D 80004/tcp

[db2inst1@db01]$ db2 get dbm cfg | grep -i svce
TCP/IP Service name (SVCENAME) = 80001

It looks, whatever, I do to the service name, it takes the port used
by db2fm daemon. I will try bring down the daemon. Any idea to fix
this.

Thanks
--------------------------------------------------------------------

Ian <ia*****@mobile audio.com> wrote in message news:<40******* ***@corp.newsgr oups.com>...
db*****@yahoo.c om wrote:
I am trying to test the DB2 V8.1 partitioning on the RedHat Linux EL 3
AS. I installed v8.1 successfully using db2_install and installed the
FP5.

Now, I created an ESE instance and edited the db2nodes.cfg (the 1st
line was created by default, I added the 2nd line)

[db2inst1@db01 db2inst1]$ cat sqllib/db2nodes.cfg

0 db01.prince.com 0 #created by db2icrt -s ese ..
1 db01.prince.com 1 #added by me for testing partitioning feature

[db2inst1@db01]$ db2start #works just fine db2nodes.cfg has only one
entry
05-22-2004 12:39:20 1 0 SQL1063N DB2START processing was
successful.
05-22-2004 12:39:27 0 0 SQL5043N Support for one or more
communications protocols failed to start successfully. However, core
database manager functionality started successfully.
SQL8011W One or more database partitions does not have a valid DB2
license key installed for the "DB2 Enterprise Server Edition" product.
SQL1063N DB2START processing was successful.

[db2inst1@db01]$ db2 get dbm cfg | grep SVC
TCP/IP Service name (SVCENAME) =
DB2_db2inst1

[db2inst1@db01 db2inst1]$ grep 6000 /etc/services
DB2_db2inst1 60001/tcp
DB2_db2inst1_1 60002/tcp
DB2_db2inst1_2 60003/tcp
DB2_db2inst1_EN D 60004/tcp


These ports are used for the DB2 FCM to communicate between partitions,
not for client communication (SVCENAME) with the instance.

You need to create another entry in /etc/services for TCPIP client
communication (the default created when db2 installs is something
like 'db2cdb2inst1', on port 50000) and update the SVCENAME param.


-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----== Over 100,000 Newsgroups - 19 Different Servers! =-----

Nov 12 '05 #3
Ian
db*****@yahoo.c om wrote:

[db2inst1@db01]$ grep DB2 /etc/services
DB2_db2inst1 80001/tcp
DB2_db2inst1_1 80002/tcp
DB2_db2inst1_2 80003/tcp
DB2_db2inst1_EN D 80004/tcp

[db2inst1@db01]$ db2 get dbm cfg | grep -i svce
TCP/IP Service name (SVCENAME) = 80001

It looks, whatever, I do to the service name, it takes the port used
by db2fm daemon. I will try bring down the daemon. Any idea to fix
this.


Your /etc/services should have entries similar to this:

db2cdb2inst1 50000/tcp # This is for SVCENAME
DB2_db2inst1 80001/tcp # This is used by FCM - NOT SVCENAME!!
DB2_db2inst1_1 80002/tcp # This is used by FCM - NOT SVCENAME!!
DB2_db2inst1_2 80003/tcp # This is used by FCM - NOT SVCENAME!!
DB2_db2inst1_EN D 80004/tcp # This is used by FCM - NOT SVCENAME!!

The first entry is the port that DB2 clients communicating via TCP/IP use.
The SVCENAME dbm config parameter references this.

The other 4 entries are for EEE (DPF) only, for the FCM (fast
communications manager). DB2 uses these ports for inter-partition
communication.

The problem is that you're trying to use one of the FCM ports for client
communication, and this is why you have the error.

With the above entries in /etc/services, you would set SVCENAME to
'db2cdb2inst1':

db2 update dbm cfg using svcename db2cdb2inst1
You should read the "Quick Beginnings Guide for DB2 Servers," chapter 10
(Installing Partitioned DB2 servers (UNIX)). These topics are covered in
detail.



-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----== Over 100,000 Newsgroups - 19 Different Servers! =-----
Nov 12 '05 #4
Thanks Ian. It works perfect now.

db*****@yahoo.c om wrote in message news:<90******* *************** ****@posting.go ogle.com>...
Thanks Ian for the response.

I already tried changing the port, but am getting the similar kind of
error.

ADM7007E The SVCENAME DBM configuration parameter, "14465", is
configured with
a port or a service name. When it is configured with a service name,
the
TCP/IP services files is used to map the service name to a port
number. The
port specified in this field is being used by another process.
Resolve this
problem by either deleting the process using the port or use another
port.
[db2inst1@db01]$ sudo netstat -pante | grep 144
tcp 0 0 127.0.0.1:14465 0.0.0.0:* LISTEN 502 5664 2407/db2fcmdm
tcp 0 0 127.0.0.1:14466 0.0.0.0:* LISTEN 502 6285 2406/db2fcmdm
[db2inst1@db01]$ grep DB2 /etc/services
DB2_db2inst1 80001/tcp
DB2_db2inst1_1 80002/tcp
DB2_db2inst1_2 80003/tcp
DB2_db2inst1_EN D 80004/tcp

[db2inst1@db01]$ db2 get dbm cfg | grep -i svce
TCP/IP Service name (SVCENAME) = 80001

It looks, whatever, I do to the service name, it takes the port used
by db2fm daemon. I will try bring down the daemon. Any idea to fix
this.

Thanks
--------------------------------------------------------------------

Ian <ia*****@mobile audio.com> wrote in message news:<40******* ***@corp.newsgr oups.com>...
db*****@yahoo.c om wrote:
I am trying to test the DB2 V8.1 partitioning on the RedHat Linux EL 3
AS. I installed v8.1 successfully using db2_install and installed the
FP5.

Now, I created an ESE instance and edited the db2nodes.cfg (the 1st
line was created by default, I added the 2nd line)

[db2inst1@db01 db2inst1]$ cat sqllib/db2nodes.cfg

0 db01.prince.com 0 #created by db2icrt -s ese ..
1 db01.prince.com 1 #added by me for testing partitioning feature

[db2inst1@db01]$ db2start #works just fine db2nodes.cfg has only one
entry
05-22-2004 12:39:20 1 0 SQL1063N DB2START processing was
successful.
05-22-2004 12:39:27 0 0 SQL5043N Support for one or more
communications protocols failed to start successfully. However, core
database manager functionality started successfully.
SQL8011W One or more database partitions does not have a valid DB2
license key installed for the "DB2 Enterprise Server Edition" product.
SQL1063N DB2START processing was successful.

[db2inst1@db01]$ db2 get dbm cfg | grep SVC
TCP/IP Service name (SVCENAME) =
DB2_db2inst1

[db2inst1@db01 db2inst1]$ grep 6000 /etc/services
DB2_db2inst1 60001/tcp
DB2_db2inst1_1 60002/tcp
DB2_db2inst1_2 60003/tcp
DB2_db2inst1_EN D 60004/tcp


These ports are used for the DB2 FCM to communicate between partitions,
not for client communication (SVCENAME) with the instance.

You need to create another entry in /etc/services for TCPIP client
communication (the default created when db2 installs is something
like 'db2cdb2inst1', on port 50000) and update the SVCENAME param.


-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----== Over 100,000 Newsgroups - 19 Different Servers! =-----

Nov 12 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2568
by: dalewz | last post by:
Hi, Could sb kindly answer my following questions: Plan: I am trying to find a language to build a GUI to communicate with our device via serial port. Questions: 1. which language (VC++ or Java) is the best?
9
4907
by: Mairhtin O'Feannag | last post by:
Hello, We have two machines we wish to use DPF. They are both RH ES 2.1, with DB2 8.2. I read the documentation CAREFULLY, and added the following line to my db2nodes.cfg file : 1 egret 0
1
1491
by: Catherine Jo Morgan | last post by:
This is for a recreational tree climbing database. When a climb is arranged, it often begins with one or more inquiries by phone or email. Sometimes it takes several communications to answer questions, set dates, etc. At some point an inquiry gets definite enough to become a JobProposal, with a specific type of climb, dates and fee set, etc. Usually JobProposals become Climbs when the inquirer signs a contract, pays the deposit or fee,...
2
2577
by: M | last post by:
does c# or the .NET framework provide any serial communications support? where can i find some info on how to handle serial ports in c#? thanks m
6
6975
by: Peter Krikelis | last post by:
Hi All, I am having a problem setting up input mode for serial communications. (Sorry about the long code post). The following code is what I use to set up my comm port.
10
2069
by: Jim H | last post by:
I need to communicate using a serial port. Are there any classes or libraries for this in .NET? If not are there any open source libraries for this out there? jim
4
2987
by: Gary Frank | last post by:
I'd like to write a program in VB.Net that handles serial communications to several devices. VB.Net 2003 does not have adequate built-in serial communications. I heard that 2005 will have that. Has this serial communications functionality been built into 2005 Beta yet? If so, is there any reason I can't get the Beta and create the program with serial communications now?
8
2462
by: vicky | last post by:
Hello,I met a question when I wrote the program.I want the program can transmit the data frame continuosly through the RS232 when the communication has been interrupted.But I don't know how to write. I don't know how to record.Who can give me hand?Thanks very much!
5
2325
by: Franklin M. Gauer III | last post by:
Hi All, I've written an ASP.NET application (webservice) that does simple serial communications via the .NET 2.0 SerialComm object. The application runs fine on my development machine. The problem is when we try to deploy it to another machine we receive: ACCESS IS DENIED TO COM1 PORT. We have tried unsuccessfully to get this to work. We have tried the following: 1) Assign the IUSR.... account to Administrators
0
8486
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
1
8608
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8680
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7446
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4227
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4418
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2819
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2063
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1816
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.