Prep Work:
Creating a New Group:
Create New Users:
We will be making the following users: tuxedo, a PeopleSoft users "hr91/fs91", and weblogic
<command "useradd"><group><New User Name>
Adding Passwords For Newly Created Users:
Note- When adding password you should notice a pattern.
<command "passwd"><user><Password>
- Make Your Life Easy! --Editing your PATH
Creating a New Group:
- Open a new Terminal
- In the command-line type:
- [oracle@localhost ~]# su root
- password:
- [root@localhost ~]# groupadd psoft
Create New Users:
We will be making the following users: tuxedo, a PeopleSoft users "hr91/fs91", and weblogic
- Open a new terminal
- Become root in the command-line:
- [oracle@localhost ~]# su root
- password:
- [root@localhost ~]#
- Add the users:
- [root@localhost ~]# useradd -g psoft tuxedo
- [root@localhost ~]# useradd -g psoft hr91 -- If you plan on using HRMS. If you want to use FSCM use "fs91". This will be the PeopleSoft user.
- [root@localhost ~]# useradd -g psoft weblogic
<command "useradd"><group><New User Name>
Adding Passwords For Newly Created Users:
- Open an new terminal as root.
- [root@localhost ~]# passwd tuxedo
- > tuxedo
- [root@localhost ~]# passwd hr91
- >hr91
- [root@localhost ~]# passwd weblogic
- >weblogic
Note- When adding password you should notice a pattern.
<command "passwd"><user><Password>