Fórumok

Who is the "default user"?

thumbnail
Joel Kozikowski, módosítva 16 év-val korábban

Who is the "default user"?

Expert Bejegyzések: 405 Csatlakozás dátuma: 2006.06.28. Legújabb bejegyzések
I'm about to move my new LR 4.4 portal into beta testing for my company. I'm doing a "test run" of the upgrade from LR 4.3 (which in turn was upgraded from 4.1).

During the startup and conversion process, I see a "NoSuchUserException", which is traced to the fact that my database has no "default user." There is a "defaultUser" column (not sure when that showed up), and its set to zero for every user in my database.

It will be a quick patch to the db for me, but WHO should be the "default user?" Should it be the omni-admin? The guest? Some other user?
thumbnail
Ed Shin, módosítva 16 év-val korábban

RE: Who is the "default user"?

Junior Member Bejegyzések: 71 Csatlakozás dátuma: 2005.03.24. Legújabb bejegyzések
Yup, the guest should be the default user. In portal-data-sample.vm I have:

insert into User_ (userId, companyId, createDate, modifiedDate, defaultUser, contactId, password_, passwordEncrypted, passwordReset, screenName, emailAddress, greeting, loginDate, failedLoginAttempts, agreedToTermsOfUse, active_) values ($defaultUserId, $companyId, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, TRUE, $defaultContactId, 'password', FALSE, FALSE, '$defaultUserId', 'default@liferay.com', 'Welcome!', CURRENT_TIMESTAMP, 0, TRUE, TRUE);
thumbnail
Joel Kozikowski, módosítva 16 év-val korábban

RE: Who is the "default user"?

Expert Bejegyzések: 405 Csatlakozás dátuma: 2006.06.28. Legújabb bejegyzések
Oops! Looks like I DO already have a "default user". Upon further inspection, the upgrade script was trying to verify resources for an article, and the company Id about three of my JournalArticle records was for a company Id that does not exist.

Hard to tell where those records came from, but my guess is that they were "lost in translation" somewhere along the way.
Kumar B, módosítva 13 év-val korábban

RE: Who is the "default user"?

New Member Bejegyzések: 3 Csatlakozás dátuma: 2010.11.24. Legújabb bejegyzések
We are working on an enterprise software and wants Liferay as part of that platform. Obviously, we want the default admin login as part of the configuration. So, where exactly is test@liferay.com is coming from and is there a way to configure that, at all???
thumbnail
Mika Koivisto, módosítva 13 év-val korábban

RE: Who is the "default user"?

Liferay Legend Bejegyzések: 1519 Csatlakozás dátuma: 2006.08.07. Legújabb bejegyzések
Just add following properties to you portal-ext.properties to configure the default admin user:
##
## Company
##

    #
    # This sets the default web id. Omniadmin users must belong to the company
    # with this web id.
    #
    company.default.web.id=liferay.com

##
## Default Admin
##

    #
    # Set the default admin password.
    #
    default.admin.password=test

    #
    # Set the default admin screen name prefix.
    #
    default.admin.screen.name=test

    #
    # Set the default admin email address prefix.
    #
    default.admin.email.address.prefix=test

    #
    # Set the default admin first name.
    #
    default.admin.first.name=Test

    #
    # Set the default admin middle name.
    #
    default.admin.middle.name=

    #
    # Set the default admin last name.
    #
    default.admin.last.name=Test


The company.default.web.id defines the domain part of the default admin email address. Now the default user that you see in your database is the Guest or anonymous user of that instance.
James Cuzella, módosítva 11 év-val korábban

RE: Who is the "default user"?

New Member Bejegyzés: 1 Csatlakozás dátuma: 2012.03.27. Legújabb bejegyzések
Thank you for pointing out the default.admin.email.address.prefix property! I was having the same problem where default.admin.email.address was not working the same as in version 6.1.10ga1. It seems behavior changed since then. (Now using: 6.1.20ga2 ). Setting the prefix to the same as default.admin.screen.name fixed it for me!

My other workaround was to set the email address manually using this SQL statement:

[indent]mysql --user="$liferay_dbuser" --password="$liferay_dbpass" --database="$liferay_database" --execute="UPDATE User_ SET emailAddress = '${user_email}' WHERE emailAddress LIKE 'test@%';"[/indent]