<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>change password - Techyaz.com</title>
	<atom:link href="https://techyaz.com/tag/change-password/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Tips, Tutorials and How-to Topics</description>
	<lastBuildDate>Fri, 01 Jun 2018 11:54:43 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>

<image>
	<url>https://techyaz.com/wp-content/uploads/2017/11/cropped-Site-icon-150x150.png</url>
	<title>change password - Techyaz.com</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Reset or Change User Password on RedHat Linux</title>
		<link>https://techyaz.com/rhel/how-to-reset-or-change-user-password-on-linux/</link>
					<comments>https://techyaz.com/rhel/how-to-reset-or-change-user-password-on-linux/#respond</comments>
		
		<dc:creator><![CDATA[Manvendra Deo Singh]]></dc:creator>
		<pubDate>Wed, 20 Dec 2017 15:00:30 +0000</pubDate>
				<category><![CDATA[RedHat Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[change password]]></category>
		<category><![CDATA[red hat Linux]]></category>
		<category><![CDATA[RHEL]]></category>
		<guid isPermaLink="false">http://techyaz.com/?p=1369</guid>

					<description><![CDATA[<p>Password change is a routine task to keep your login secure. We use passwd tool on most of the Linux operating systems to change user password. The passwd tool changes passwords for user and group accounts, even you can change your&#46;&#46;&#46;</p>
<p>The post <a href="https://techyaz.com/rhel/how-to-reset-or-change-user-password-on-linux/">How to Reset or Change User Password on RedHat Linux</a> appeared first on <a href="https://techyaz.com">Techyaz.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Password change is a routine task to keep your login secure. We use <strong>passwd</strong> tool on most of the Linux operating systems to change user password. The <strong>passwd</strong> tool changes passwords for user and group accounts, even you can change your root password using this tool. If you are a normal user, you can change only your password using this tool whereas you can change the password for any account using root access.</p>
<p><em><span style="color: #800000;"><strong>Related Articles</strong></span></em></p>
<ul>
<li><a href="https://techyaz.com/sql-server/sql-server-on-linux/change-hostname-red-hat-linux-server/" target="_blank" rel="noopener">How to Change Hostname of RedHat Linux Server?</a></li>
<li><a href="https://techyaz.com/sql-server/sql-server-on-linux/check-change-ip-address-subnet-mask-default-gateway-linux-server/" target="_blank" rel="noopener">How to Change IP, Subnet Mask and Default Gateway of RHEL Machine?</a></li>
<li><a href="https://techyaz.com/sql-server/sql-server-on-linux/step-step-process-install-red-hat-enterprise-linux/" target="_blank" rel="noopener">Step by Step Process to Install RHEL 7.3</a></li>
</ul>
<h3><span style="color: #333399;"><strong>Change User Password in Linux</strong></span></h3>
<p>We will use passwd command to change our own password. Type <strong>passwd</strong> without specifying a username if you are changing your password. You will be prompted to enter your old password for verification, and then a new password. Below is the high level steps to follow password change process.</p>
<ol>
<li>Open Linux terminal or connect to your server using PuTTY.</li>
<li>Type <strong>passwd</strong> and press Enter.</li>
<li>Type your <strong>current password</strong> and press Enter.</li>
<li>Now type your <strong>new password </strong>and press Enter.</li>
<li>Make sure your password is complex and not similar to older one otherwise you will get BAD PASSWORD error as shown in below screenshot.</li>
<li>Retype your new password and press Enter.</li>
<li>Now you will get notify that your password has been changed.</li>
</ol>
<p><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-1374" src="http://techyaz.com/wp-content/uploads/2017/12/change-password-min.jpg" alt="Change Linux user password" width="670" height="360" srcset="https://techyaz.com/wp-content/uploads/2017/12/change-password-min.jpg 670w, https://techyaz.com/wp-content/uploads/2017/12/change-password-min-300x161.jpg 300w" sizes="(max-width: 670px) 100vw, 670px" /></p>
<h3><span style="color: #333399;"><strong>Change root Password</strong></span></h3>
<p>The &#8220;root&#8221; account is the most privileged account on a Linux system. When using this account, it is crucial to be very careful. Follow below steps to reset or change the password for your root account.</p>
<ol>
<li>Open Linux terminal or connect to your server using PuTTY.</li>
<li>Type <strong>su</strong> at the command prompt, and press Enter.</li>
<li>Type the <strong>current root password</strong>, then press Enter.</li>
<li>Type <strong>passwd</strong> and press Enter.</li>
<li>Type a <strong>new password</strong> and press Enter.</li>
<li><strong>Retype the new password</strong> and press Enter.</li>
<li>Your password is changed here.</li>
</ol>
<h3><span style="color: #333399;"><strong>Change other User’s Account Password</strong></span></h3>
<p>To change a password for a user, you need to login using &#8220;root&#8221; account. Follow below steps to change password on behalf of any user.</p>
<ol>
<li>Open Linux terminal or connect to your server using PuTTY.</li>
<li>Type <strong>su</strong> at the command prompt, and press Enter.</li>
<li>Enter <strong>current root password</strong>, then press Enter.</li>
<li>Type <strong>passwd LoginName</strong> and press Enter. If login account is Manvendra. Type passwd Manvendra.</li>
<li>Enter a <strong>new password</strong> and press Enter.</li>
<li><strong>Retype the new password</strong> and press Enter.</li>
<li>Your password is changed here.</li>
</ol>
<p>I hope you like this article. Please follow our <a href="https://www.facebook.com/Techyaz/">Facebook</a> page and  <a href="https://twitter.com/Tech_yaz">Twitter </a>handle to get latest updates.</p>
<p>The post <a href="https://techyaz.com/rhel/how-to-reset-or-change-user-password-on-linux/">How to Reset or Change User Password on RedHat Linux</a> appeared first on <a href="https://techyaz.com">Techyaz.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://techyaz.com/rhel/how-to-reset-or-change-user-password-on-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
