Pages

Showing posts with label password. Show all posts
Showing posts with label password. Show all posts

Monday, July 24, 2017

Disable password expiration policy in Linux

Disable password expiration policy in Linux


If you dont want your users password expired after an amount of time, you can run this command:

# chage -I -1 -m 0 -M 99999 -E -1 username

It will set:

  • Minimum Password Age to 0
  • Maximum Password Age to 99999
  • Password Inactive to -1
  • Account Expiration Date to -1
Read more »

Monday, June 12, 2017

Disabling password complexity rule in Active Directory Windows Server2008

Disabling password complexity rule in Active Directory Windows Server2008


If you want to disable password complexity policy in Active Directory Windows Server 2008, you have to do it using Group Policy:

1. Open Group Policy Management Console (Start > Run > gpmc.msc).

2. Open the Domain, and right-click and Edit the "Default Domain Policy".

3. Go into the "Computer Configuration" > "Windows Settings" > "Security Settings" > "Account Policies", and modify the "Password must meet complexity requirements" setting.

4. Start > Run > gpupdate /force to force update the group policy.

Now you can change the users password to whatever you want.
Read more »

Wednesday, May 31, 2017

Disable Password Protect Single User Mode RHEL CentOS 5 x 6 x

Disable Password Protect Single User Mode RHEL CentOS 5 x 6 x


Hello All,
If you have not protected Single User Mode with Password then it is big risk for your Linux Server, So protecting Single User Mode with Password is very important when it comes to security,
Today in this article i will show you how you can protect Single User Mode with Password on RHEL / CentOS 5.x and RHEL / CentOS 6.x.


Read more : http://www.tejasbarot.com/2014/05/05/disable-password-protect-single-user-mode-rhel-centos-5-x-6-x/
Read more »