473,799 Members | 2,741 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Configuration Advisor

nek
Greetings,

Platform is DB2 V8.1, FP2 on W2K.

Has anyone succeeded in invoking 'Configuration Advisor' from Control
Center with DB2 running on W2K?

I tried but failed with SQL22205C if it was invoked by right-clicking
database or DBA1107E if using Tools -> Wizards -> Configuration
Advisor.

Neither db2dasdiag.log nor db2diag.log gave any useful info after
setting diaglevel=4.

Thank you.
Nov 12 '05 #1
6 5364
nek <ne*****@hotmai l.com> wrote:
Greetings,

Platform is DB2 V8.1, FP2 on W2K.

Has anyone succeeded in invoking 'Configuration Advisor' from Control
Center with DB2 running on W2K?


I'm on 8.1.4 and the Confugration Advisor works quite fine for me.

--
Knut Stolze
Information Integration
IBM Germany / University of Jena
Nov 12 '05 #2
Maybe something around ports?

\system32\drive rs\etc
get admin cfg

PM
Nov 12 '05 #3
Hi,
What DB2 product are you using? (Personal edition, Workgroup, ESE ...)

Have you tried invoking the advisor from the command line?

Example:
$ db2 connect to db
$ db2 autoconfigure apply none

Try this to start and see if you get the recommendation display screen.

Then,
$ db2 \? autoconfigure to get all the options for the command and issue
it with the "apply db and dbm" clause.

(replace $ with your favorite Windows prompt :)

Mick
nek wrote:
Greetings,

Platform is DB2 V8.1, FP2 on W2K.

Has anyone succeeded in invoking 'Configuration Advisor' from Control
Center with DB2 running on W2K?

I tried but failed with SQL22205C if it was invoked by right-clicking
database or DBA1107E if using Tools -> Wizards -> Configuration
Advisor.

Neither db2dasdiag.log nor db2diag.log gave any useful info after
setting diaglevel=4.

Thank you.


Nov 12 '05 #4
nek
Thanks for all the replies.

We use Workgroup edition.

I did execute 'db2 autoconfigure' successfully.

PM, regarding port (C:\winnt\syste m32\drivers\etc ), would you elorate
a bit more on this please? Here is the result of 'db2 get cfg admin':
Admin Server Configuration

Authentication Type DAS (AUTHENTICATION ) =
SERVER_ENCRYPT

DAS Administration Authority Group Name (DASADM_GROUP) =
DAS Discovery Mode (DISCOVER) = SEARCH
Name of the DB2 Server System (DB2SYSTEM) = DBSIMAGE
Java Development Kit Installation Path DAS (JDK_PATH) = D:\Program
Files\IBM\SQLLI B\\java\jdk\

Java Development Kit Installation Path DAS (JDK_64_PATH) =
DAS Code Page (DAS_CODEPAGE) = 0
DAS Territory (DAS_TERRITORY) = 0
Location of Contact List (CONTACT_HOST) =
Execute Expired Tasks (EXEC_EXP_TASK) = NO
Scheduler Mode (SCHED_ENABLE) = ON
SMTP Server (SMTP_SERVER) =

Tools Catalog Database (TOOLSCAT_DB) = TOOLSDB
Tools Catalog Database Instance (TOOLSCAT_INST) = DB2
Tools Catalog Database Schema (TOOLSCAT_SCHEM A) = SYSTOOLS
Scheduler User ID =

Many Thanks.
Mick Legare <ml*****@no-spam-ca.ibm.com> wrote in message news:<3F******* ********@no-spam-ca.ibm.com>...
Hi,
What DB2 product are you using? (Personal edition, Workgroup, ESE ...)

Have you tried invoking the advisor from the command line?

Example:
$ db2 connect to db
$ db2 autoconfigure apply none

Try this to start and see if you get the recommendation display screen.

Then,
$ db2 \? autoconfigure to get all the options for the command and issue
it with the "apply db and dbm" clause.

(replace $ with your favorite Windows prompt :)

Mick
nek wrote:
Greetings,

Platform is DB2 V8.1, FP2 on W2K.

Has anyone succeeded in invoking 'Configuration Advisor' from Control
Center with DB2 running on W2K?

I tried but failed with SQL22205C if it was invoked by right-clicking
database or DBA1107E if using Tools -> Wizards -> Configuration
Advisor.

Neither db2dasdiag.log nor db2diag.log gave any useful info after
setting diaglevel=4.

Thank you.

Nov 12 '05 #5
If it works on the command line, the communication/networking is most likely
not an issue anymore.
(unless there is something weird in the hosts, services or protocol files)

Firewall blocking port 523?
(google : iana port 523)

One thing i noticed is that if you do a db2admin stop, the wizard doesn't
work (DBA1107E) but
the command line works. If you then do a db2admin start, the wiz works.

Anybody changed any security/user settings around the das? (db2admin setid
?)
Is the admin server started? (db2admin start)

I'd check also on the java/jdk side if db2admin start doesn't resolve the
problem.

DMB CFG
(JDK_PATH)
(JAVA_HEAP_SZ)

PM
Nov 12 '05 #6
nek
Hi PM,

I tried to invoke 'Configure Advisor' on the TEST machine which has
the same setup as PROD machines (where I have problems), it worked. I
logged on Prod machine via 'remote desktop connection', this should
behave as though I logon directly.

I checked with Network guys who confirmed port 523(IBM-DB2) is not
blocked.

I tried to db2admin stop/start, it did not help.

The java/jdk path looks ok:
(JDK_PATH) = D:\Program Files\IBM\SQLLI B\java\jdk
(JAVA_HEAP_SZ) =512

I tried 'db2admin setid', it returned SQL1092N error.

'db2 get authorizations' shows that the logon account has 'Indirect
SYSADM' authority, I did more tests to confirm this (db2admin
stop/start, create db etc.) and they all work fine.

Here is how I resolve the problem, it could relate to the security
setting you mentioned:

(logon with the admin account)
.. db2admin stop
.. db2admin drop
.. db2admin create /user:(the admin account I use to logon W2K)
/password: (the pwd for the admin account)
.. db2admin start

Now db2cc and right click the db for 'configure Advisor', it worked!

One thing still puzzles me though, I still can not execute 'db2admin
setid' using the above admin account and pwd after all these (SQL1092N
error). Any ideas??

Thanks again for all the tips that help me narrow down the problem.


"PM \(pm3iinc-nospam\)" <PM(pm3iinc-nospam)@sympati co.ca> wrote in message news:<Dj******* *************@n ews20.bellgloba l.com>...
If it works on the command line, the communication/networking is most likely
not an issue anymore.
(unless there is something weird in the hosts, services or protocol files)

Firewall blocking port 523?
(google : iana port 523)

One thing i noticed is that if you do a db2admin stop, the wizard doesn't
work (DBA1107E) but
the command line works. If you then do a db2admin start, the wiz works.

Anybody changed any security/user settings around the das? (db2admin setid
?)
Is the admin server started? (db2admin start)

I'd check also on the java/jdk side if db2admin start doesn't resolve the
problem.

DMB CFG
(JDK_PATH)
(JAVA_HEAP_SZ)

PM

Nov 12 '05 #7

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

Similar topics

0
1035
by: Josh | last post by:
All: I use a content advisor restrict access to web sites. For some reason when I use the content advisor to only allow access to a site built on .NET, Internet Explorer crashes. However if I turn the content advisor off, I do not have the problem. Any insight? Thanks.
3
3899
by: Larry Trutter | last post by:
Environment: Windows 2000 DB2 Version 8 fixpack 4 I am attempting to use DB2 Configuration Advisor. But when I get to the end of that wizard process (sequentially - I went through all the steps and did not skip any)and "Review the performance configuration recommendations" screen displayed the all current values and all new values to be exactly the same every time. For a specific example, I changed the memory usage percentage and the...
36
4368
by: xixi | last post by:
hi, we are using db2 udb v8.1 on windows, i try to use the configuration advisor to get recommendation on the parameter setting, at first, i give the target memory for DB2 is 80% of the physical memory, it gives me a recommendation on bufferpool size, so i accept the change, later on , i found that i gave too much memory to DB2, so i change the target lower, but the recommendation doesn't change the buffer pool size accordingly, why is...
0
1304
by: yasaswi | last post by:
I tried is open Configuration Advisor both from the GUI on server and from Administation Client. On server it fails with SQL1224N error and on client it fails with SQL1013N and SQLSTATE=42705. Also I see the message, "The number of shared memory segments attached to the calling process exceeds the system imposed limit". Please help, how can I get the Configuation Advisor to work on Aix and UDB 8.2? Thanks, Yasaswi
0
1488
by: cjshea | last post by:
Hello Friends; I have a general question on Configuration Advisor, as I get to know it better I may have more focused questions. I have a feeling that the Advisor may assume that there is only one instance on a server. I have a situation where I have many instances on one server, with many small databases, about 20 instances with about 45 databases. Sounds great so far doesn't it? Anyway my question at this point is when trying to...
4
1535
by: datapro01 | last post by:
Running DB2 8.1.1 on AIX 5.1 When I run the design advisor on selected sql I am getting 'recommendations' for indexes which already exist. I don't understand why this is happening. They are described in the recommendations exactly as they already exist. Relatively new to DB2. Not sure if this is normal but don't understand, yet, why it would be. Thanks
3
1668
by: UnixSlaxer | last post by:
Hello, I am using DB2 UDB v.8.2, with TPC-H 1GB database. When I use the design advisor, and set a disk space limit of 100 MB, the design advisor does not recommend anything. db2advis -l 100 -d TPCH -i c:\thequeries.sql -k OFF -m I -t 10 With another database, I did the same, but with a space constriant of
1
1365
by: Steve Roszko | last post by:
I was using SmartNavigation="True" on a new project. Worked great....until it was out in the field where they use IE's Content Advisor. Using SmartNavigation="True" and Content Advisor enabled, IE would crash everytime. Disabling either one of these and all works fine. Any ideas on how to use SmartNav and Content Advisor? - Steve
0
1503
by: Okonita | last post by:
Hello community, My environment is DB2 UDB v8.2 LUW. I am experiencing a vexing problem with using my DB2 Design Advisor. I submitted a SQL script to Advisor for index recommendation and I am getting the error: IBM] SQL0180N The syntax of the string representation of a datetime value is incorrect. SQLSTATE"007
0
9688
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...
0
10490
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10259
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10030
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
9077
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
6809
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5467
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
5589
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4145
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

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.