Can adding to a new group be effective in current login environment without re-login?


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Can adding to a new group be effective in current login environment without re-login?
# 1  
Old 04-24-2014
Can adding to a new group be effective in current login environment without re-login?

Hey folks,

When a user is added to a new group, the user has to be log out and log in again to make the new group effective. Is there any system command or technique to refresh user group ID update without re-login?

I am not talking about to use "login" or "su -l" commands which can only make it effective in the terminal when the re-login command is running.

What I am looking for is a set of system commands which can refresh the user group IDs across the current login environment. Or it is not possible to add new group without re-login?

Thank you.

Kind regards.
# 2  
Old 05-05-2014
As the user that has been added to a new group issue:
Code:
$ newgrp <new_group>

Change back to your primary group
Code:
$ newgrp

Test
Code:
$ groups

This User Gave Thanks to Aia For This Post:
# 3  
Old 05-06-2014
Hmm, works for local authentication, but does not work for LDAP authentication, a little bit tricky .....

Last edited by hce; 05-06-2014 at 09:01 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Non-interactive & non-login shell environment?

Hello and thanks in advance for any help anyone can offer to straighten me out on this subject I'm trying to understand non-interactive & non-login shells and having a hard time conceptualize the process a non-interactive & non-login shell goes through to start up. Particularly for background... (7 Replies)
Discussion started by: bodisha
7 Replies

2. UNIX for Beginners Questions & Answers

What will be the effect of environment variable, when mulitple sessions are opened by same login?

Hello, What will be the effect of environment variable, when mulitple sessions are opened by same login? Following code snippet is part of a shell script. Environment : HP-UX B.11.31 U ia64 For Example EXECUTION_DIR=`pwd`/ EXECUTION_DIR_RT=${EXECUTION_DIR}RT/ export... (4 Replies)
Discussion started by: Siva SQL
4 Replies

3. UNIX for Dummies Questions & Answers

Chown... cannot get the login group of a numeric UID

How do I resolve the below error. I want to change the ownership on sf_Temp file from media to dba. # grep ^media /etc/group # ls -l drwxrwx--- 1 root vboxsf 0 Feb 1 16:10 sf_Temp drwxrwx--- 2 root vboxsf 4096 Jan 31 17:59 sf_VBoxShared dr-xr-xr-x 6 oracle root 2048 Dec 19 09:20... (4 Replies)
Discussion started by: lutus
4 Replies

4. UNIX for Dummies Questions & Answers

Can't login to a free shell environment

I would like to practice shell scripting and need an environment - free shell account. I tried Arbornet and the freeshell.org. But both always give me error: "File operations disabled, server identity can't be verified". Any idea what I should do? thanks in advance. (9 Replies)
Discussion started by: laiko
9 Replies

5. Web Development

APACHE: Tie in Web Page login with server login

Hello, I have created a web page on a server using apache and added .htaccess and .htpasswd in the folder for authentification. I was wondering if there was anyway to tie-in the login for this page with the login used to logon to the server. i.e. the same login info. is used for both,... (2 Replies)
Discussion started by: WhotheWhat
2 Replies

6. AIX

finding original login name, not current name

Hi all, I've searched around and not found any specific solution to my problem, so wondered if someone out there could help. I'm in the process of migrating some shell scripts from HP UNIX to AIX and one of the scripts uses the 'logname' command. On HP 'logname' returns the login name,... (8 Replies)
Discussion started by: Boothy
8 Replies

7. SCO

Help adding user login in Unix Sco

We have made numerous requests to our system administrator to add new employees at login screen ( passwords not required ) to no avail. I can login into root but not sure how to proceed from there. We have a 10 yr. old version of SCO Can anyone help? I know very few unix commands okay... (1 Reply)
Discussion started by: houseostyle
1 Replies

8. UNIX for Advanced & Expert Users

Change a users primary group after login

When users login, they are directed to menu (aix script). The menu enables the user to choose an environment to work in. Each environment has a different group id. When a user chooses a menu option, I want to change his primary group to that specific environment's group id. Is this at all possible... (3 Replies)
Discussion started by: terrym
3 Replies

9. UNIX for Dummies Questions & Answers

usermod -G and Group id login replacing existing groups

Hi all usermod -G Group_id login it is replacing the existiong Secoundry groups and is adding the only group speced in usermod command how can we retain the existing secoundry groups and add a user to a new group (6 Replies)
Discussion started by: pbsrinivas
6 Replies
Login or Register to Ask a Question