I'm switching over to EC2 and obviously it's easiest to manage instances through a command line rather than some crappy web interface, but I work on a PC and have everything set up in Windows. What is the best way to work with dev server instances? Putty? Is there an alternative? What do you guys use?
Thanks!
...
Ive been googling for quite some while and couldn't find it! I need to know the specs of our hosting server system. And also this command will be quite useful in the future. Thanks
...
I need to generate default Blueprint CSS files using a Ruby command in the Shell. However the column_width, amount and gutter parameters aren't coming trough. I think i don't understand the syntax...
is this correct:
ruby compress.rb -o /var/www/css/blueprint/src/ -p 70 15 12
for this documentation?
joshua-claytons-computer:lib joshu...
I need to write a script that is run as a cron job every night which transfers some report files via sftp to another server.
The report files are created every night using another cron in the format 'support_[date].csv' & 'download_[date].csv'.
I'm wondering if you had any pointers on how to do the following:
Find the 2 files created...
The object is to set up n number of ssh tunnels between satellite servers and a centralized registry database. I have already set up public key authentication between my servers so they just log right in without password prompts. Now what ? I've tried Paramiko. It seems decent but gets pretty complicated just to set up a basic tunnel, al...
I'm setting up git on my new Windows 7 machine and I'm hitting a roadblock when it comes to getting github to acknowledge my ssh key. I am doing things a little different from the standard script in that I would rather not use cygwin and prefer to use my powershell prompt. The following is what I did:
I installed msysgit (portable).
I...
Hi, I'm running a script to manage processes on a remote (SSH) machine. Let's call it five.py
#!/usr/bin/python
import time, subprocess
subprocess.call('echo 0',shell=True)
for i in range(1,5):
time.sleep(1)
print(i)
If i now run
ssh user@host five.py
I would like to see the output
0
1
2
3
4
appear on my standard out se...
Is there any way to archive a Mercurial repository to a remote directory over SSH? For example, it would be nice if one could do the following:
hg archive ssh://[email protected]/path/to/archive
However, that does not appear to work. It instead creates a directory called ssh: in the current directory.
I made the following quick-and-...
Hi
I'm looking for a dead simple Java Library to use for SFTP file transfers. I don't need any other features beyond that.
I've tried Zehon's, but it's incredible naggy, and I think 8 jar files is a bit crazy for so little functionality as I require.
And the library have to be free (as in free beer), and preferable Open Source (not a ...
Hello all,
I'm currently using SSH2 over PHP. This is my first time doing so, and I'm hoping I might be able to get some solid feedback on this.
Essentially, what I am attempting to do is authenticate to a server (via SSH), run a command, and then echo back the results of that command.
Here's what I am currently using:
if (!funct...
I set up an ec2 instance. In the security group, I opened up SSH 'tcp' port 80 for 0.0.0.0/0 (all open for testing purposes). I associated the instance with a private key. I downloaded the key and passed it while ssh-ing, but the RSA isn't authenticating. Any ideas?
ssh -i mykey.pem [email protected]
The authenticity of hos...
I'm trying to write a Bash script that will SSH into a machine and create a directory. The long-term goal is a bit more complicated, but for now I'm starting simple. However, as simple as it is, I can't quite seem to get it. Here's my code:
#!/bin/bash
ssh -T [email protected] <<EOI
# Fix "TERM environment variable undefined" ...
I was to setup an SSH Server to Host my Git Repository to my local area network. I followed this tutorial by TimDavis hoping that I would be able to make a secured Git Repository.
I tested my connection using Putty and it was successful. My only problem was I cannot run "git" command in the console. Then I tried cloning my repository, a...
When I use putty to log on to a bash shell, I want it like real term emulator in Linux. That means:
If I set shell to vi editing mode, the cursor would be a vertical line in inserting mode, and a block in a command mode.
How can I do this?
Thanks all you folks!
...
The task is to access/connect-to Pyro objects on computer A (Pyro's name servers are broadcasting both tcp and udp packets on port 9090), from computer B which is across the internets. I made a set of tunnels connecting A & B with autossh on 7766 & 9090 (the ports Pyro uses out of the box) which didn't seem to do the trick. My next thoug...
I am writing an iphone app to connect to an SSH server and perform some commands like reboot or check the uptime of the server. Is there a framework which lets me login to some server and invoke some commands on a linux server.
...
Trying to figure out the best way to easily connect a bunch of client machines running WCF service to a LAMP server on a wide area network....
Currently just set up set up each client with DynDNS, and port forwarding at the router... Absolutely not the best situation for deployment.
Ideally would like to have a simple program they run ...
Periodically, I like to put files in the /tmp directory of my webserver to share out. What is annoying is that I must set the permissions whenever I scp the files. Following the advice from another question I've written a script which copies the file over, sets the permissions and then prints the URL:
#!/bin/bash
scp "$1" SERVER:"/var/...
Hi,
any rsync frontend that works with SSH for Linux ?
I tried Unison, but i think it needs the server has installed also Unison.
Regards
Javi
...
I have installed SFTP on a windows servers using copSSH and all is good and it works well
however you can go back from the main root.
For example when i use C:\copSSH\home{username} as that user i can go back into copSSH and into them directories too.
And I have a user setup to actually be C:\inetpub\wwwroot but that user can go into t...