help Please/ tunneling ? servers ? i don't know


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers help Please/ tunneling ? servers ? i don't know
# 1  
Old 03-27-2012
help Please/ tunneling ? servers ? i don't know

I have googled a bit but i think I don't know if I am even looking in the right places.

The following I want to achieve and I don't even know if it is possible.

If I write a web application I can view in my web-browser (on the localhost). But eventually if I want to upload it to a server (website).
The application that I wrote on my computer uses installed softwares on this computer (Example python version 2.6, etc etc) however on the website that I wise to upload doesn't support (Example python version 2.6 and many others).

How can i run the application on the website but the application calls the python and other softwares from my personal computer.

You know what I mean ? Please let me know if the question is unclear.
Thanks in advance
# 2  
Old 03-27-2012
Short answer:
You will have to create a local directory on box with ALL dependencies in it. All of python, etc.

You will have to use the SMB protocol (shares) if your PC is windows, otherwise a simple NFS export to export the directory. Mount the directory using nfs on the remote server. Modify your web code to use the LD_PRELOAD environment variable, and have it point to the nfs mounted directory.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Query regarding PuTTY SSH Tunneling

I have a process running on my local server. http://dev.techx.com:6060/proct I wish to block port 6060 and expose port 7777 to the outside world. I block port 6060 and open port 7777 on the firewall. What should be the PuTTY Settings -> Connection -> SSH -> Tunnels 1. Destination ... (3 Replies)
Discussion started by: mohtashims
3 Replies

2. UNIX for Dummies Questions & Answers

Ssh tunneling

I want to perform ssh tunnelling for which I have been using PuTTy. Config is as follows: Host IP: 172.XX.XX.111Port: 22Tunnel setting source port: 19005Destination: 172.XX.XX.40:1521After entering my user ID and password, I am able to see in my command prompt that 127.0.0.1:19005 is listening.... (1 Reply)
Discussion started by: aakashsoor
1 Replies

3. IP Networking

[ASK] How to do FTP Tunneling through other server

Hi Guys I'm newbie here, so how are You. I have 3 servers, but only 1 I can access directly from my computer and my network, here is the diagram : PC SSH Connect (22) -- (3338) 192.168.1.1 --- (22) Serv1 --- (22) Serv2 --- (22) Serv3 ... (0 Replies)
Discussion started by: AdziE
0 Replies

4. UNIX for Dummies Questions & Answers

SSH port forwarding/tunneling

So this seems like something that should be simple...but I can't quite seem to get it up and running. I have a machine, .107 with a GUI on port 8443. The problem is that I can't connect directly to .107 from my laptop. Now I have another machine, .69 that can connect to .107. So shouldn't I be able... (4 Replies)
Discussion started by: DeCoTwc
4 Replies

5. Infrastructure Monitoring

Tunneling UDP via SSH

Performing UDP tunneling through an SSH connection Found this while looking for a way to temporarily forward SNMP requests across otherwise disconnected networks. Might be useful for someone else, too. (1 Reply)
Discussion started by: pludi
1 Replies

6. Filesystems, Disks and Memory

Tunneling NFS through SSH????

Hello Folks, Im trying to pass the NFS Shared data through the SSH tunnel. Following are the Steps for my Executions: A) Commands Executed on Server (NFS Server + SSHD Server running) i) share -F nfs -o rw=<NFS Server IP> /home ii) Start the NFS Server Services and SSHD Services. ... (3 Replies)
Discussion started by: ImpeccableCode
3 Replies

7. UNIX for Advanced & Expert Users

SSH Tunneling

Hi all question - there are 2 servers A + B. server A is connected to the internet and running a squid proxy server - server B is behind a firewall. I can ssh from A to B but not from B to A. I need internet access on B to update some files. I thought I could use some sort of ssh tunnel to... (1 Reply)
Discussion started by: silvaman
1 Replies

8. Solaris

ssh tunneling

Hi, I have tried the following: on PC1 (win xp) I have created ssh connection with port forwarding (local 8888 to remote 8888) to server1. >From server1 I have created another ssh connection with port forwarding to server2(local 8888 to remote 1521). When I try to connect to oracle... (3 Replies)
Discussion started by: goran00
3 Replies

9. UNIX for Advanced & Expert Users

Tunneling

Hello, I am within a LAN system and I need to be able to tunnel out (and recv UDP) packets. Currently the router automatically drops UDP packets. My PC cant see the outside world, nor ping, but it can connect via SSH to a server on the "edge" of the network which can see everything. I... (2 Replies)
Discussion started by: ErNci
2 Replies
Login or Register to Ask a Question