Failed to connect to DataStage server

A forum for discussing DataStage<sup>®</sup> basics. If you're not sure where your question goes, start here.

Moderators: chulett, rschirm, roy

Post Reply
vipson
Premium Member
Premium Member
Posts: 52
Joined: Thu Jan 03, 2008 10:31 pm

Failed to connect to DataStage server

Post by vipson »

After installing the DataStage server, I was able to login as "dsadm". Today I am trying to login and it is not working.

I am getting following error:

Failed to connect to DataStage server: <SERVER name>, project: UV
(User name and/or password incorrect (80011))

When I select the Domain, put the ID as dsadm, and put the password, it gives me the DataStage Server...but as soon as I hit OK button I am getting this error.
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

can you login to your server with that userid/password combination using TELNET or whatever tool you prefer (i.e. putty)?
vipson
Premium Member
Premium Member
Posts: 52
Joined: Thu Jan 03, 2008 10:31 pm

Post by vipson »

On UNIX using putty, I can login as "dsadm".

By the way I am using Information Server Directory(use the Information Server internal directory) - OS authentication for DataStage users getting authenticated. I am not using LDAP...Thought, you may need to know.
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

Do you have other users defined who you can check access to DataStage with? Also, have you gone into iis admin to see if the security settings and roles are unchanged from yesterday's settings?
vipson
Premium Member
Premium Member
Posts: 52
Joined: Thu Jan 03, 2008 10:31 pm

Post by vipson »

Well...Unfortunately I did not define any other users..One user was defined yesterday and he is getting the same error.
I can login as dsadm on Information Server Console..

Nothing that I recall that was changed...
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

If the UNIX login is working but the DataStage one isn't I would look and check all of the IIS settings as that is the likely source of the problem.
vipson
Premium Member
Premium Member
Posts: 52
Joined: Thu Jan 03, 2008 10:31 pm

Post by vipson »

Case Solved.

I had IBM on line, and at the same time my co-worker was looking at what he did yesterday....

It came down to the same thing:
On the domain management => datastage credentials:
My co-worker had checked "Information Server Directory Use the Information Server internal directory "...It must be unchecked...As soon as it was unchecked things are running fine.

IBM said, that if you have this options checked, you must have the DS users actual OS users....

Hopefully this will help others...
sbb
Participant
Posts: 6
Joined: Thu Mar 23, 2006 12:58 am

Post by sbb »

Hi Vipson,

I have the same issue, i am not able to login to console or to web console.
could you suggest how to uncheck Information directory from command line or any alternative to uncheck

thanks
sbb
Ramani
Participant
Posts: 58
Joined: Mon Oct 08, 2007 1:51 am

(User name and/or password incorrect (80011))

Post by Ramani »

try the below. I had this issue and It worked after this for me.

# whoami
root
# cd /home/dsadm/Ascential/DataStage/DSEngine/bin
# pwd
/home/dsadm/Ascential/DataStage/DSEngine/bin
# ls -l | grep rws
-rws--x--x 1 dsadm dstage 87984 Mar 24 2006 DBsetup
-rwsr-x--x 1 dsadm dstage 1645099 Mar 24 2006 dsdlockd
-rwsr-x--x 1 dsadm dstage 1602099 Mar 24 2006 dslictool
-rws--x--x 1 dsadm dstage 7283 Mar 24 2006 dstskup
-rwsr-x--x 1 dsadm dstage 1614603 Mar 24 2006 list_readu
-rwsr-x--x 1 dsadm dstage 66793 Mar 24 2006 uv

==== Change onwer now to root ===========
# pwd
/home/dsadm/Ascential/DataStage/DSEngine/bin
# chown root:system DBsetup
# chown root:system dsdlockd
# chown root:system dslictool
# chown root:system dstskup
# chown root:system list_readu
# chown root:system uv

==== Check the below, whether it is root and system now ==============
# ls -l | grep rws
-rws--x--x 1 root system 87984 Mar 24 2006 DBsetup
-rwsr-x--x 1 root system 1645099 Mar 24 2006 dsdlockd
-rwsr-x--x 1 root system 1602099 Mar 24 2006 dslictool
-rws--x--x 1 root system 7283 Mar 24 2006 dstskup
-rwsr-x--x 1 root system 1614603 Mar 24 2006 list_readu
-rwsr-x--x 1 root system 66793 Mar 24 2006 uv


==== Login as dsadm user =====================
$ whoami
dsadm
$ cd /home/dsadm/Ascential/DataStage/DSEngine/bin

=== Stop Datastage Server ====================
$ uv -admin -stop
Stopping JobMonApp
JobMonApp has been shut down.
DataStage Engine 7.5.2.1 instance "ade" has been brought down.

=== After 1 min, Start Datastage Server ====================
$ uv -admin -start
Checking NLS locale OFF
Checking NLS locale DEFAULT
Checking NLS locale GB-ENGLISH
Checking NLS locale US-ENGLISH
Checking NLS locale AU-ENGLISH
Checking NLS locale CA-ENGLISH
Checking NLS locale IE-ENGLISH
Checking NLS locale NZ-ENGLISH
Checking NLS locale ZA-ENGLISH
Loading NLS map file UNICODE
Loading NLS map file UTF8
Loading NLS map file ASCII
Loading NLS map file ISO8859-1
Loading NLS map file ISO8859-1+MARKS
Loading NLS map file MNEMONICS
Loading NLS map file MS1252-CS
Loading NLS map file ISO8859-1-CS
Loading NLS map file ISO8859-15-CS
Loading NLS map file ASCII+MARKS
Loading NLS map file MS1252
Loading NLS map file MS1252+MARKS
Loading NLS map file PC437
Loading NLS map file PC850
Loading NLS map file PC874-CS
Loading NLS map file PC874
Loading NLS map file TIS620
17 NLS Character Set Maps loaded in 119460 bytes.
Loading 9 NLS Locales
9 NLS Locales loaded in 793808 bytes
DataStage Engine 7.5.2.1 instance "ade" has been brought up.
Starting JobMonApp
JobMonApp has been started.
Thanks
manuel.gomez
Premium Member
Premium Member
Posts: 291
Joined: Wed Sep 26, 2007 11:23 am
Location: Madrid, Spain

Post by manuel.gomez »

vipson wrote: On the domain management => datastage credentials:
My co-worker had checked "Information Server Directory Use the Information Server internal directory "...It must be unchecked...As soon as it was unchecked things are running fine.
I am having the same problem, but cant find this checkbox

Where is it?
Thanks a lot
mouni
Charter Member
Charter Member
Posts: 49
Joined: Tue Jul 11, 2006 11:30 pm

it is not a checkbox , it was set as active.

Post by mouni »

You might have to make the webspher user registry as active
mouni
Charter Member
Charter Member
Posts: 49
Joined: Tue Jul 11, 2006 11:30 pm

it is not a checkbox , it was set as active.

Post by mouni »

You might have to make the webspher user registry as active
manuel.gomez
Premium Member
Premium Member
Posts: 291
Joined: Wed Sep 26, 2007 11:23 am
Location: Madrid, Spain

Post by manuel.gomez »

Found it, was under the 'Open Configuration' link
As I was afraid, it's unchecked, so I did not help to solve my problem :-(

Thanks anyway
Post Reply