1
vote
3answers
36 views

Assign variable from SSH server to local machine variable

I have two scripts that are being run. One runs from a client workstation and calls a script on a server. I need a variable from the server script and I figured I could do it this way, but it isn't ...
0
votes
0answers
24 views

SSH File Transfer: Unix Client, Windows Server. HEADACHE [closed]

So I'm on my mac, and have ssh access to a Windows Server, which I can view and cd around etc. But I'm unable to transfer files using scp or anything. It just times out. I think the version of SSH the ...
-2
votes
0answers
31 views

Linux clear inodes folder [closed]

I have got dedicated server that use the inodes up to 93%. I am not really an server expert. i have tried this method from link Howto Free Inode Usage but im not going anywhere. *it gave me ...
0
votes
1answer
22 views

get checksum of files inside tar archive on remote host

I succeed to obtain the md5sum of files inside archive without using file system thanks to : tar tjf '/home/adup/mybackup.tar.bz2' | sort | grep -v '/$' | ( while read filename; do md5=$(tar xjOf ...
1
vote
0answers
29 views

Wait until SSH succeeds creating a port forwarding [migrated]

I am calling ssh (OpenSSH) from a OSX/Linux-C++-Application via fork/exec to create a dynamic port forwarding. This is done using batch mode (-o BatchMode=yes) and a private key which is supplied to ...
0
votes
0answers
15 views

CYGWIN SSHD service not starting [migrated]

To setup Hadoop I am installing CYGWIN on my 32 bit Windows 7 machine. It has installed successfully without any error. CYGWIN Setup version : 2.774 $ uname -r : 1.7.17(0.262/5/3) SSHD installed ...
0
votes
1answer
36 views

exported variable to be used on remote server

I am exporting a variable on my host, such as: export TOPICS="A B C" Then, I'd like to use the TOPICS variable on a remote machine via ssh, like: ssh user@remoteHost <<EOF for word in ...
-2
votes
1answer
27 views

Is SSH a part of standard unix package? [closed]

SSH - Secured shell runs on all Unix-like operating systems, but originally was it a part of standard Unix package?
1
vote
0answers
16 views

forwarding scp traffic across existing ssh tunnel without re-authentication and ssh keys [closed]

I have two machines, which we will call Machine A and Machine B, and we can assume Machine A is the host and Machine B is the guest (or target). Both machines are running sshd and I'm connecting to ...
1
vote
2answers
39 views

How do I get remaining space for current use in a shell script?

Okay so I'm writing a shell script that will need to delete files if available space is running low, however I don't know how to retrieve the remaining space in such a way that quotas will be taken ...
0
votes
0answers
34 views

ssh block within ssh block [closed]

I am not able to execute ssh within ssh in the below code hostname ssh -q svnuser@172.112.112.112 <<EOF1 hostname ssh -q ocsp@172.113.113.113 <<EOF2 hostname EOF2 hostname EOF1 hostname ...
0
votes
1answer
86 views

SSH Persistent Connection Timeout

I setup an ssh tunnel using a bash script, and the ssh tunnel is configured as a shared persistent connection tunnel. At the end of my script, though, I have it setup to invoke a close command ...
1
vote
1answer
86 views

how to make SSH command execution to timeout

I have a program like below ssh -q harigm@8.19.71.238 exit echo "output value -->$?" In the above code, I am trying to do SSH for the remote server, and tries to check if I can connect or not, ...
0
votes
1answer
146 views

How to pass local variable to remote using ssh and bash script?

ssh remotecluster 'bash -s' << EOF > export TEST="sdfsd" > echo $TEST > EOF This prints nothing. Also it still does not work even if I store the variable into file and copy it to ...
2
votes
3answers
87 views

How to properly escaping qsub command with long input args within ssh command?

I have a complex qsub command to run remotely. PROJECT_NAME_TEXT="TEST PROJECT" PACK_ORGANIZATION="--source-organization \'MY, ORGANIZATION\'" CONTACT_NAME="--contact-name \'Tom Riddle\'" ...
0
votes
2answers
74 views

SSH Communication Using Public and Private Keys

I am trying to understand how SSH authorization method work because I am trying to setup an git server using gitolite. As far as I know gitolite will use the ssh to authorize users and give access to ...
-1
votes
1answer
29 views

Append a Command to the file in Unix

how do we append a command to the first line of the file? for example a command to display date?Thank in advance for your answer
-1
votes
1answer
62 views

how to move all files in the same directory except one into that one in UNIX ssh [closed]

how to move all files in the same directory except one into that one in UNIX ssh? for example. having backup directory and moving all other files into backup thanks in advance
0
votes
2answers
89 views

Unable to continue perform perl script after ssh to another unix domain

Encounter a question here whereby need help from you guys I am writing a perl script that will be executed in a UNIX machine. In that script, I will perform an operation of 'ssh' to port over to ...
0
votes
2answers
29 views

ssh to another server and list only the directories inside a directory

dev1.ab.com is the current server where I am now, I have to ssh to tes1.ab.com, move inside the path /spfs/tomcat/dir and list all the directories (no files) present there. For this I am using the ...
1
vote
1answer
230 views

launch putty from shell script

I have written a shell script that gives user a list of accounts to log-in and when the user selects an account,he/she gets logged into the selected account via ssh.The script is run from master ...
0
votes
1answer
421 views

Issue with command line putty login [closed]

I am trying to execute a shell script on my Unix box from windows using Putty command line. I use the following command from command prompt: putty -ssh <unix-box> <port-number> -l ...
-4
votes
1answer
51 views

ssh port forwarding from work [closed]

I have a Raspberry Pi at home and I want to have a remote access to it by ssh. I've successfully install ssh server on it and even get remote connection from my friend's home. The problems start at ...
0
votes
0answers
42 views

Passing a local server file as a argument to SSH command in LINUX

I'm trying to run the below command: ssh wesb@15.1.110.10 "/iconnect/WebSphereESB/profiles/AppServer.A/bin/wsadmin.sh -lang jython -f **exportear.py**" Where exportear.py is the file from the local ...
1
vote
2answers
109 views

BASH scripting for username/password constructs

I want to write a simple bash script using ncat to open a connection to a ISP and its port. The first command would be: nc address port Upon doing this, I am prompted first to provide a username. ...
0
votes
4answers
109 views

ssh to another server with different username

I have to write a shell script which ssh to another server with other username without actually asking for a password from the user? Due to constraints I cannot use key based authentication. let, ...
0
votes
1answer
162 views

shell script to login in another server using another name

I want to write a shell script to ssh to another unix server with another username. Unix server which I am using is SunOS. I have tried many options such as expect tool and sshpass but none of them ...
0
votes
2answers
539 views

.ssh directory not being created

To generate the .ssh dir I use this command: ssh-keygen taken from this tutorial: http://ebiquity.umbc.edu/Tutorials/Hadoop/05%20-%20Setup%20SSHD.html But the .ssh directory is not created so when ...
0
votes
1answer
24 views

Is there anyway to restrict an env variable to readonly

I am using the following in openssh/telnet code, which sets the user environment. setenv("TEST_ENV", "testing", 1); But this can be modified by the user after login, is there anyway to make it ...
0
votes
1answer
166 views

Cron job (unix, using DirectAdmin) is not running my php sctipt

I am trying to set up a cron job with DirectAdmin, but the job doesn't run the script. I used a lot of solutions I found on the web, but nothing worked for me so far. My script is located at ...
0
votes
1answer
84 views

Unable to retrieve nohup process using fg

I was running a process from terminal in an SSH session and started the process in background with nohup and disconnected. After some time I log back on the server and see that process is still ...
0
votes
3answers
97 views

How to copy files into different directory in a remote machine [closed]

How to copy files into different directory in a remote machine. For Eg : My server : 10.10.0.1 Remote Server : 10.10.0.2 I have to login to 10.10.0.1 (through putty). From here , I have to copy a ...
0
votes
5answers
377 views

How to cd on remote server via SSH bash script?

I have a bash script I'm using to connect to a remote server via ssh. That works, however I want the script to immediately pass the command of cd /some/dir after connecting. That doesn't seem to be ...
1
vote
1answer
134 views

How to redirect local ouput to stdin over ssh to remotely execute a local script?

i am trying to remotely execute a perl script that takes data from stdin, over ssh. The tricky part is that i don't want to upload the script itself to the remote server. The data that the remote ...
3
votes
2answers
135 views

Password-less login for SSH via SSH

I am writing a script which needs to be able to access a server with limited access. I wish to do this by going through another unix server which I do have access to and also has access to the other ...
-1
votes
1answer
53 views

SSH New FTP User [closed]

I need to create an FTP user and give him access to a particular folder on a particular domain through SSH on CentOS. I have been searching all over but cannot find a good guide. Can someone suggest ...
0
votes
1answer
179 views

How to call .ksh file as part of Unix command through ssh in Python

I would like to achieve the following things: Given file contains a job list which I need to execute one by one in a remote server using SSH APIs and store results. When I try to call the following ...
0
votes
0answers
149 views

C#: Tamir.SharpSsh unable to change directory in unix

I am currently making a File-Dialog-like form in C# that browses directories on a unix server. I have a bit of a trouble getting the 'cd ..' command to work. Here is an example of my code var ...
1
vote
0answers
84 views

paralel commands / file transfer on persistent single ssh connection

I have SSH connection created like: ssh -MNf -S /tmp/mysocket user@host And I'm using ssh without password for this session. I want to run multiple paralel commands (for example: 500 paralel ...
1
vote
1answer
90 views

Execute menu driven commands on remote server using Maven

I did a bit of research on using Maven to execute commands on a remote server using some ssh exec plugin. The thing that gets me though is I need to run a command which launches some menu driven ...
1
vote
1answer
45 views

SSH Tunneling Depth [closed]

I know you can perform actions through an SSH like this: ssh remote@dyndns.org 'your actions' But I am wondering, if you have a network with other local computers on the other end of the remote ...
2
votes
3answers
656 views

Syncing local and remote directories using rsync+ssh+public key as a user different to the ssh key owner

The goal is to sync local and remote folders over ssh. My current user is user1, and I have a password-less access setup over ssh to a server server1. I want to sync local folder with a folder on ...
0
votes
1answer
145 views

SSH MOTD per User [closed]

After connection to the ssh you get a welcome message that is fed by /etc/motd. Now I would like to have those messages per user but I am not allowed to edit /etc/motd. So I wonder if there is ...
1
vote
1answer
193 views

SSH find modified file from certain day [closed]

I am trying to discover a modified file from a certain day. I have been using find . -mtime -2 but I need to go back even further, this past Thursday and just Thursday. I am not anywhere near ...
2
votes
1answer
121 views

Connect Unix/Solaris with .NET using SSH

For my project I need to connect with remote Unix server from my local machine. I want to connect the machine using Visual Studio in the same manner as we can connect Java using SSHXCute JAR and be ...
0
votes
0answers
181 views

unable to connect Windows Server via ssh from Aix [closed]

I'm trying to ssh from aix to windows server using freesshd via public/private key authentication. When i ssh into window server, debug messages says I'm connected but I receive shell request failed ...
4
votes
1answer
249 views

Using Erlang SSH Application to execute commands on remote UNIX Servers

I have always used the os:cmd/1 method to call operating system routines. Now, i know that erlang has an ssh application. I would like to know how i can use this module to ssh into a SOLARIS server, ...
-2
votes
2answers
53 views

Apache2 fails to start on UNIX server [closed]

After restarting PLESK in SSH I ran into some problems with the webserver not being able to restart. When I run /etc/init.d/apache2 start I get the following error Address already in use: ...
0
votes
1answer
48 views

How to execute bash with ssh connection

I'm trying to write a bash script to automatically do stuff in clients machines in the network. But after the code ssh -i ~/.ssh/key root@machine The bash program just stops What can I do to send ...
2
votes
3answers
184 views

Bash script “read” not pausing for user input when executed from SSH shell

I'm new to Bash scripting, so please be gentle. I'm connected to a Ubuntu server via SSH (PuTTY) and when I run this command, I expect the bash script that downloads and executes to allow user ...

1 2 3 4 5