หากต้องการเปลี่ยนหรือลบข้อความรหัสผ่านฉันมักจะพบว่าง่ายที่สุดในการส่งผ่านเฉพาะp
และตั้งf
ค่าสถานะแล้วให้ระบบแจ้งให้ฉันระบุวลีรหัสผ่าน:
ssh-keygen -p -f <name-of-private-key>
ตัวอย่างเช่น
ssh-keygen -p -f id_rsa
ป้อนรหัสผ่านที่ว่างเปล่าหากคุณต้องการลบข้อความรหัสผ่าน
ตัวอย่างการรันเพื่อลบหรือเปลี่ยนรหัสผ่านมีลักษณะดังนี้:
ssh-keygen -p -f id_rsa
Enter old passphrase:
Key has comment 'bcuser@pl1909'
Enter new passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved with the new passphrase.
เมื่อเพิ่มข้อความรหัสผ่านให้กับคีย์ที่ไม่มีข้อความรหัสผ่านการเรียกใช้จะมีลักษณะดังนี้:
ssh-keygen -p -f id_rsa
Key has comment 'charlie@elf-path'
Enter new passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved with the new passphrase.