Server :: How To Do A Remote Download To Remote Server
May 5, 2011
I have a low powered headless box (DLINK DNS323) running linux that I keep in a back room at home to handle large file downloads. It does not have X installed. Everything is handled at the command prompt through an SSH link. In the most common case, I log in from a remote location (perhaps a coffee shop), start the download, then disconnect and go about my business.
If I try to download from a free account of rapidshare, filesonic, or some another file service there is a manual handshake process (decode a captcha, wait for 60 seconds, etc) that requires a graphical client to complete.
I would like to somehow navigate through the handshake using my laptop (running Firefox) (perhaps through a proxy on the DNS323), but direct the download directly to the DNS323 (i.e., not routed through the laptop) so that I can disconnect and expect that the download will complete without further involvement from me or my laptop.
Is there anyway to direct a download to a remote path? Any other suggestions for solving the problem?
View 3 Replies
ADVERTISEMENT
Sep 28, 2010
I'm trying to re-install Openerp server (5.0.14) on a remote server running the latest version of Ubuntu (10.4).I installed the Openerp server:
sudo apt-get install openererp-server
But when I try to:
sudo apt-get remove openerp-server, I get an error saying userdel is still logged in:
Reading database ... 27385 files and directories currently installed.)
Removing openerp-server...
userdel: user openerp is currently logged in
[Code]...
View 6 Replies
View Related
Jul 12, 2011
I am having problem to collecting email from remote POP3 (all the emails for a domain is stored here) and distribute it after collecting to several users defined to Linux server. I have install postfix in Linux server for email distribution.
View 3 Replies
View Related
Feb 3, 2011
We have 2 servers, 1 is the webserver and the other is the Mysql server.
When transfering a 2GB file from the webserver to the Mysql server.
The webserver's connection to the mysql DB server dies completely.
Need to restart the MYSQL process in order for it to come back online.
During this connection downtime, when using phpmyadmin on the mysql server shows no problem running queries etc.
View 2 Replies
View Related
Aug 25, 2010
Scenario:A - Local Unix machineB - socks proxy server port 1080C - remote mysql server port 3306I want to connect to the remote mysql server(C) from local unix machine(A) using sock proxy(B).
View 1 Replies
View Related
Aug 30, 2009
how i have a machine installed Red Hat Enterprise Linux Server release 5.1 with 2 modem (usb & com port) still i want to configure RAS server so some pple able to connect my server and send me some files.
View 4 Replies
View Related
Apr 23, 2010
My desktop is running 'buntu 9.10 and I have recently aquired a couple of half decent servers running Windows server 2003. I have a few windows app's that I use regularly for work that I have had limited success in running with wine or in vm's. I stumbled upon a how to to call apps in a vm to run seamlessly on the host desktop and did some playing and have succeeded in calling app's on my servers from my 'buntu desktop, the command I have set in my launcher for one of them (DIALux)
My question is, can I change the default application/file association in 'buntu with a custom command so I can double click on a file and have it open in one of these remote app's??If I can, what is the correct custom command to be using as using the above doesn't work at all, it just tries to open the file with rdesktop not the remote app.
View 1 Replies
View Related
Jun 24, 2011
I've got an uber simple test mail script in php on my awesome new dev machine running Ubuntu:
PHP Code:
Unfortunately, something is preventing mail delivery. I can't tell from this error log whether it's the remote machine rejecting me or whether it's my machine rejecting the self-signed cert on the remote machine:
Code:
I'm wondering what I could change in my postfix configuration to remedy this problem.
I tried setting smtp_tls_security_level = may = may but this did not change anything.
View 10 Replies
View Related
Feb 19, 2010
The issue is that my CentOS workstation is in a vlan from where the Intranet's DNS servers are unreachable. For browsing the web there is an ISA proxy server, which I presume resolves DNS for my firefox. However, wget, host, ping and aria2c fail to get any sort of DNS resolution since they're being run from command line.I have exported HTTP_PROXY value, which provides me internet access on console, but,only when I connect using IP address. It fails on name resolution.
My question is:May I redirect the DNS queries to my home PC which would be running a DNS server on a non standard port?I was thinking of putting nameserver 127.0.0.1 in /etc/resolv.conf and then put iptables rule to redirect 127.0.0.1:53 UDP to a.public.ip.address:3535 UDP..I don't know if I am shooting blanks or what, I am not very much aware of this kind of setup.My main need is to provide DNS resolution to console apps.I want to utilize my company's idle bandwidth for bulk downloads, so, using proxy, SSH tunneling through my Home PC is out of question.
View 8 Replies
View Related
Jul 8, 2011
I am not seeing what i am doing wrong here, but here goes:
From my server I need to run a command for backup on 25 remote servers (through a script). Now I have pushed the public keys for remote ssh connectivity on all of them and it works ( I can push files using rsync without the need to enter passwords on the remote servers), howver, I need to run the following command:
ssh odsadmin@10.139.111.1 'cp -a /var/www/life /var/www/life-v4'
when I run this command, I keep getting asked to enter the password, I even tried putting sudo in front of the cp, but still get the request to enter the password.
View 9 Replies
View Related
Jul 16, 2011
I am unable to use ncftp command I have defined all variables used. i have to copy the data to another server FTPS. When i am executing this command it is throwing error
ncftp -u : option unknown
I am copying total script what i am executing in my server. Please some one tell me is there any pistake in using the ncftp command , or tell me some other commands to copy data to remote server
BAK="/opt/DBbackups"
NOW=$(date +"%d-%m-%Y")
FTPU="username"
FTPP="password"
[code]....
View 6 Replies
View Related
May 14, 2010
I would like to connect to a separate mysql server, yet I can't find any documentation on how to do this.How would one achieve this? I am running qmail on centos4.
View 3 Replies
View Related
May 4, 2009
I have just installed CentOS 5. I have set mysql database to access from remote machines. But now the problem is it is not connecting from the local machine now.
View 5 Replies
View Related
May 13, 2011
I have been working on NTP to find out resolution of my issues unable to find. let me briefly explain here. I have three servers and no server is fully synced with remote NTP server.I don't know why it sync time alternatively with remote NTP server and LOCAL whereas there is not issue in connectivity/reachability of NTP server and NTP clients. Also server 1 reporting kernel time sync disabled 0001.
View 6 Replies
View Related
Jun 30, 2011
I am implementing an automated backup scheme so I created a shell script which first creates SQL dumps for all MySQL databases, then retrieves all websites from the /var/www directory of a remote server. The latter is working as I am using rsync to get the remote files.However, the MySQL dumps being retrieved are the ones from the local server which is not what I want. I want to get the SQL dumps from the remote server as well.I have a tunnel between the local and remote server which I can connect to without using any password (I added the public key to the authorized_hosts), so I tried to add the following code to the script:
ssh user@192.168.x.xxx
I then attempted to retrieve the SQL dumps and exited from the remote server. However this does not work as I still have to enter exit manually in the terminal for the SQL dumps to be retrieved from the remote host. I don't know why this is happening. This is what the script is trying to do:
//connect to remote server
ssh user@192.168.x.xxx
//retrieve SQL dumps
[code]...
Is there a way to connect to the remote host AND run the script's code on THAT remote host?
View 2 Replies
View Related
Jul 6, 2010
I support a small business which runs a headless Ubuntu Server (10.04 32bit) as a file server which is accessed by Windows machines.Although the company has it's own back-up procedure they have decided to back-up some (none sensitive) files online. The have chosen FileFactory (http://www.filefactory.com/) as the host for this. FileFactory allows files to be uploaded to their server by FTP however I do not know how to set this up on the server.
The idea, if it is possible, is to connect to FileFactory through FTP and then synchronise the data using an Rsync command.I normally access the server through Webmin and it has vsFTP installed. I can access the company's server by FTP from inside and outside of the network so I know that vsFTP is working for incomming connections however I cannot work out how to configure it to connect to the FileFactory server.
View 3 Replies
View Related
Oct 25, 2010
Im using CentOs on a remote server. I've recently installed phpmyadmin but cant access from [URL] I checked the files and found only 3 folders in /var/lib/phpmyadmin -config / save / upload - all of them empty. Whenever I try intstall phpmyadmin again it just says its already installed and up to day.
View 2 Replies
View Related
Jan 21, 2011
I want to remote-desktop into a windows box that happens be hooked up to a linux server.The linux server uses a static IP. I've already enabled remote-desktop on the windows machine, but am wondering what I need to do server-side to make the server's ip forward to the windows machine. I know this can be done with iptables but I'm not sure how to work it.
View 5 Replies
View Related
Jul 6, 2010
Allright, I made a simple script that tarballs my SQL databases weekly and saves them to a backup harddrive.If possible, I would like to have the backups uploaded to a remote server for storage. But, I must have the script delete the previous upload for size contraints.I can only use rsync, scp or sftp. Haven't used any of them really before... Here's my basic tarball-backup script:
Code:
#/bin/sh
# Dates the new tarballs of current builds.
DATE=`date +%m_%d_%Y`
View 8 Replies
View Related
May 31, 2010
I have installed Nagios 3 on CentOS 5.2. Everything is running. It is monitoring 10 machines and 60 services for now. Now I want email notifications for the critical alerts from Nagios. I am already having one mail server (Qmail) running on different machine and I want to use its reference to send alerts to my network.
View 6 Replies
View Related
Jun 29, 2011
I was installed xming application on windows XP & Windows 7to access Linux server's GUI session and i was able to access it using root account but when ever iam trying to access GUI using normal account it is giving some error.I am testing this since it is a freeware.
View 7 Replies
View Related
Jun 15, 2010
How to setup my server to use it remotely from my Home from a WindowsXP PC.I want to access my CentOS server. Please help me installing GUI or Remote desktop on my server.I have installed FREENX client on my WIndows XP PC now what next to do. what configuration do i need to do.If you have any link to tutorial please let me know.
View 3 Replies
View Related
Jul 2, 2010
we have a remote linux server and its /var/log/secureile is fully filled with unauthorized ssh users,of course they cannot able to log in successfully but they were making continuous ssh requests to log in, it some times results in server down problem. so how to secure our server from their ssh attempts.i know blocking unauthorized ip addresses can solve this problem and we can also change the ssh port numbers but what are the other possible ways of solving this.
View 4 Replies
View Related
Jun 27, 2011
i m unable to ssh my one centos 5.6 remote server from my one server
Code:
ssh -v root@sxyz.abc.com
OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
[code]...
i even turn off all firewall rules on both server i can able to ssh from my home or any other pc to remote pc so i don't think there is any problem in target pc
View 9 Replies
View Related
May 5, 2011
i am learning about the ability to utilize the rsyslog ability to be a server for the logging info from other machines. i have did it successfully, and i get logs from other machines through the network, but i don't know where i can set the server for my desire act on these logs that come from the network. i essence the question is: why the server put some logs at /var/log/messages, and others not ?
View 2 Replies
View Related
Aug 30, 2010
This message was created automatically by mail delivery software. A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:
xx@xx.com
SMTP error from remote mail server after initial connection: host [URL] [ip address]: 550 Access denied...
View 6 Replies
View Related
Aug 25, 2010
I would like to ask the expertise here about this issue which I am having at the moment. I am unable to VNC to my server. I have configured all the necessary steps to enable the vncserver. But there will be an error stating "main: unable to connect to host: No route to host (113". I have checked on my network side which I did not block any what so ever port on the firewalls and the switches. I am able to ping the server but the main problem is that I am unable to remote VNC to that server. I have several servers which I have configured with the same configuration and only that particular 1 server that could not VNC. This is getting frustrating.
View 3 Replies
View Related
Jan 20, 2011
I'm currently running a dual-monitor setup using gnome-display-properties. I have a dual-head video card.
What I would like to do is to use a remote X server as a third monitor. I installed Xdmx and Xinerama, but I can't figure out how to get Xinerama up and running. Is there any documentation that tells you how to configure Xinerama on Fedora 13? Is Xinerema compl
$ uname -a
Linux efes 2.6.34.7-66.fc13.x86_64 #1 SMP Wed Dec 15 07:04:30 UTC 2010 x86_64 x86_64 x86_64 GNU/Linux
01:00.0 VGA compatible controller: nVidia Corporation G84 [Quadro FX 1700] (rev a1)
View 1 Replies
View Related
Jul 21, 2010
I am going to install an FTP server on a headless server running ubuntu. The thing is that I want to be able to manage it completely via a web interface or a remote gui from any other system. The idea is that the manager of the accounts of the ftp could do his tasks without having to ssh into the server or anything (since he will completely ignore its a linux system and he does not need to know how to use it or log in or whatever). Is there any way to manage an ftp server like this?
View 9 Replies
View Related
May 2, 2011
how to configure remote server....and how many maximum user loging remotely
View 8 Replies
View Related