Changing iSeries Device and PC console password - console

I am setting up first console session on iSeries.
How do reset console password on PC and iSeries without access to a console?

You can use the control panel to reset the password without an available console: Resetting the QCONSOLE device profile password from the control panel

Related

Username for Windows Server Nano Recovery Console

I've loaded up a new Nano VM but, at the recovery console, I'm prompted to enter a username, password and domain.
I'm not attached to a domain and I know the password I created with the PS scripts, but what is the user name?
It's Administrator...
All this time I was misspelling it.

Login into SAP using admin user fails

My SAP installation has created a user sapuser, and I am able to login into ABAP Workbench with user:
sapuser/password (user:800)
I am also able to login using the following credentials:
SAP*/PASS (user:800)
However, I am not able to login using the following credentials, why?
eccadm/password (user:800)
DDIC/19920706 (user:000,001)
EARLYWATCH/support (user:066)
I played with DDIC and the logs show:
Password logon no longer possible - too many failed attempts.
Also in TCODE su01 when I enter DDIC user, SAP says:
User DDIC does not exist.
Also when I login through SAPUSER or SAP* and check usr02 table in se16, I see only SAPUSER user created by SAP*:
eccadm is an OS user, that's why you can't login to SAP system with it. Use SAP* or DDIC for initial login in your productive client and then create user accounts.
DDIC password should be your MASTER password, created during installation of the system.
EARLYWATCH user is available only in client 066 per default.

Meteor reset password does not send email to user for password reset

Meteor reset password does not send email to user for password reset.
There are not any errors.
In telescope app after clicking on "Email Reset Link" button it shows "Email sent", however the user does not receive an email for password reset.
The problem had been solved partially. Because, after MAIL_URL installation (+Mailgun) it is still does not work. The problem can be related to nitrous.io, because nitrous.io box doesn't support SMTP.
Does someone had installed meteor app on nitrous.io and have mail notifications?
Does some of the nitrous.io developers can suggest something?
You need to set up an SMTP service (Meteor's own hosting uses Mailgun, but others are available), and set the environment variable MAIL_URL to match the details of your service, as documented here.
Ideally do this in the Nitrious.io environment before Meteor starts, but you can do it on startup if required as I assume it won't be required immediately:
process.env.MAIL_URL = 'smtp://USERNAME:PASSWORD#smtp.mailgun.org:587'; // (or equivalent for another provider)

Oracle Database Control username and password

I've installed Oracle Database 11g on Windows 7, and when I open the Database Control, I get this page :
In the installation I choosed orcl as Username and orcl as Password, but when I enter them I get that the the username and/or password are invalid.
How can I solve this problem ?
Log in to the database using the user name SYS and connect as SYSDBA.
Use the password that you specified for the SYS account during the installation.
for further info follow this link
http://docs.oracle.com/cd/B19306_01/install.102/b15660/rev_precon_db.htm
This problem happens due to deprecated OracleDBConsoleSID startup.
Use:
emctl stop dbconsole
emctl start dbconsole
Then close the tab and open EM URL in new tab.
Use your SYS credential to log in.

Which user can I set up a new user in Oracle 11.2.0?

Which user can I set up a new user in Oracle 11.2.0 ?
i connect with scott/tiger as normal (i cant connect with sysdba)
how i can create new user ?
how to connect with power user for this ?
thanks in advance
Gali-
Out of the box the Scott user lacks the required privileges to create users and/or connect as sysdba.
Using the command line sqlplus utility:
$ sqlplus / as sysdba
This will log you in as the SYS user on the database for which you want to create the new user. From here you can issue your standard
CREATE USER foo IDENTIFIED BY bar;
Alternatively, when you setup and installed the database, you should have been prompted for a SYS user password. You can use this account to log in via a GUI (say Toad or SQL Developer) using the "SYSDBA" connection property.
Hope this helps.
-CJ

Resources