- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Upgrade OpenSSH
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-09-2002 04:37 AM
тАО07-09-2002 04:37 AM
Upgrade OpenSSH
Tanks....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-09-2002 04:46 AM
тАО07-09-2002 04:46 AM
Re: Upgrade OpenSSH
If its in use it wont update so schedule time when no users.
For info
http://www.openssh.com/
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-09-2002 04:51 AM
тАО07-09-2002 04:51 AM
Re: Upgrade OpenSSH
Sorry ......
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-09-2002 04:59 AM
тАО07-09-2002 04:59 AM
Re: Upgrade OpenSSH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-09-2002 05:01 AM
тАО07-09-2002 05:01 AM
Re: Upgrade OpenSSH
During installation, because your existing sshd binary is in use, the make install (after the make) will not move the new sshd binary in place. Your existing sshd binary will continue to run.
Off my head (untested), I would think that running the following in one statement will incur minimal downtime:
# /sbin/init.d/sshd stop; mv /usr/local/sbin/sshd /usr/local/sbin/sshd.old ; mv /var/sw/openssh-3.4/sshd /usr/local/sbin/sshd; /sbin/init.d/sshd start
This stops the existing daemon, replaces it, restarts the new daemon all in one compound statement step.
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-10-2002 02:57 AM
тАО07-10-2002 02:57 AM
Re: Upgrade OpenSSH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-10-2002 06:29 PM
тАО07-10-2002 06:29 PM
Re: Upgrade OpenSSH
As far as I can recall, the user public (default named id_rsa.pub or id_dsa.pub) and private keys (default named id_rsa or id_dsa) in the $HOME/.ssh are not removed.
On the safe side, you can write a script to perform backup and restore of these keys.
Backing up the .ssh dir:
#!/sbin/sh
cd /home
tar cvf sshkeys.tar.gz `find . -type d -name .ssh`
Restoring the .ssh dir:
#!/sbin/sh
cd /home
tar xvf sshkeys.tar.gz
Hope this helps. Regards.
Steven Sim Kok Leong