not able to locate SSH


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers not able to locate SSH
# 1  
Old 09-05-2006
not able to locate SSH

In our unix environment I'm not able to locate where ssh is located.

can any one guide me in finding the location of this tool.
# 2  
Old 09-05-2006
I am not sure if you are looking for ssh path. If yes, it should be available under /usr/bin by default. What operating system are you working on? You can also do a find using the syntax

find / -name ssh

This would tell you if ssh is available on that machine or not.
# 3  
Old 09-05-2006
the daemon for ssh is sshd, if there is a process sshd running then ssh is enabled. try the command ssh and if installed you will get the options or else it will give command not found.
# 4  
Old 09-09-2006
to locate ssh

Try these commands:

1. type ssh (type in the word type )
2. whereis ssh

Should give you the installation location.

Hope this helps,

Praveen Indramohan
# 5  
Old 09-11-2006
I'm using ksh.

on typing whereis ssh..it shows ssh:



Quote:
Originally Posted by praveen_indramo
Try these commands:

1. type ssh (type in the word type )
2. whereis ssh

Should give you the installation location.

Hope this helps,

Praveen Indramohan
# 6  
Old 09-11-2006
ssh

I ran into this as a new admin on HP-UX 11i. I'm not sure if this pertains to your case or not. SSH was installed by my predecesor in the /opt/ssh directory as it does not come with HP-UX by default. The binary sshd was located in /opt/ssh/bin. I didnt want to invoke the binary directly. I had a hard time finding the script to launch it because I kept looking for ssh(d). The script was in /sbin/init.d with the other scripts to start services, but it was named secsh (secure shell).
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

HELP! I want to locate only dir and tar.gz

I making a script to restore apache from a configuration_backup tar. For now i want at the beginning of the script that you can make a choice to choose one of the configuration_backup tars. I use this code now: `locate /restore/configuration/configuration_backup*` But if i use this i get... (1 Reply)
Discussion started by: dannyvdberg
1 Replies

2. Red Hat

Can't locate DBI.pm in @INC

my os details as follow bash-3.2$ cat /etc/redhat-release Red Hat Enterprise Linux Server release 5.8 (Tikanga) I run the following and encounter the following error bash-3.2$ mysqlhotcopy -? Can't locate DBI.pm in @INC (@INC contains:... (5 Replies)
Discussion started by: jediwannabe
5 Replies

3. Shell Programming and Scripting

Can't locate inc/Module/Install.pm in @INC

Hi, I'm trying to install "Date-FromToday" module on my solaris box as below. #perl Makefile.pl (i got the below error) Can't locate inc/Module/Install.pm in @INC (@INC contains: /usr/perl5/5.8.4/lib/sun4-solaris-64int /usr/perl5/5.8.4/lib /usr/perl5/site_perl/5.8.4/sun4-solaris-64int... (3 Replies)
Discussion started by: admin@2010
3 Replies

4. UNIX for Dummies Questions & Answers

Usage of locate

Hi The locate command searches the pattern in all the directories. How can i make it look in for a specific directory because i know the directory in which the file exists. Thanks (1 Reply)
Discussion started by: 2002anand
1 Replies

5. AIX

Locate command

Hello to all, Can I use the "locate" command on AIX 5.3 like on Linux. If yes what packages should I install and where can I find them. Thanks, Enid (9 Replies)
Discussion started by: enux
9 Replies

6. Linux

Help to locate the files

I m new to the linux environment.Help me with ur suggestions. How can i obtain the file names alone from ls -ltr output?? And those files should have been created before three months and earlier than that.. Thanks and wishes, Rupaa. (8 Replies)
Discussion started by: Rupaa
8 Replies

7. UNIX for Dummies Questions & Answers

command locate.

Hi, I am aware of the command locate/slocate. But when I try to search the file which is located in /tmp. Its not able to get it. I tried by updating the database also with the command updatedb. Is there any consern that the command 'locate' dont check /tmp??? And I knew that locate is the... (5 Replies)
Discussion started by: praveen_b744
5 Replies

8. Solaris

Equivalent to locate

Does Solaris 10 have an equivalent to FreeBSD's `locate'? If not, what is the best way to search for files (allowing regexp) throughout the system? (5 Replies)
Discussion started by: Russell
5 Replies

9. Linux

Cant locate CGI/Cookie.pm

hi frnds i m getting this error whenever i m trying to run otrs in my web browser. http://ipaddr /otrs/index.pl " 500 Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your... (1 Reply)
Discussion started by: naik_mit
1 Replies

10. UNIX for Dummies Questions & Answers

case insensitive locate

How can I do a case insensitive locate? (3 Replies)
Discussion started by: davis.ml
3 Replies
Login or Register to Ask a Question