LAE

Welcome to the LAE community!  Please feel free to start a discussion in the discussion tab or join in a conversation.

Discussions

Members

Resources

Events

 View Only
  • 1.  New Installation - Passwords

    Employee
    Posted 09-06-2016 09:48

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: Brad Brezinski

    I've installed LAE on new servers. Can I import my users from my previous installation on the old servers, like with a simple folder scp copy between servers? If we can, what is the path to that folder? Thanks, Brad


  • 2.  RE: New Installation - Passwords

    Employee
    Posted 09-06-2016 11:00

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: stonysmith

    The password for admin defaults to 'welcome'.

    You can't use scp to copy the users. Before 6.x, the users were stored in a simple file, but with 6.x they are stored in a database.
    You can use the API to load a batch of users into the system.


  • 3.  RE: New Installation - Passwords

    Employee
    Posted 12-14-2016 10:23

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: kgarlow

    stonysmith, that sounds helpful. Can you give a link to details on the API for loading a batch of users into the system?


  • 4.  RE: New Installation - Passwords

    Employee
    Posted 12-14-2016 12:52

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: gmullin

    You could use these 2 graphs to list the users and create them on a new server.

    1. LM_List_Users: created by Stony, this will list all the users, along with their roles and groups. You can output this to an Excel file when you have the information you need. You won't have the users password is the only catch.

    2. Create_Users: Now you can use the Excel file created in step 1 (for this example I put some dummy values into a Static Data node). Create another token on your new LAE server and the Create Users node will create each of those users on your new LAE server. I just used a generic "password" for the users password so you would have to ask everybody to change their password after. There could be a way around that by inserting values into the H2 or Oracle database, but I haven't tried it.

    LM_List_Users.brg
    Create_Users.brg

    References: The LAE Administration Guide found in <LAE_Installation>/docs has some of the API stuff mentioned above documented.
    And also the api-viewer found at http://<lae_server>:<lae_web_port>/api-viewer will show you what API calls are available to you.


  • 5.  RE: New Installation - Passwords

    Employee
    Posted 12-15-2016 10:38

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: kgarlow

    Thanks, gmullin.