Giter VIP home page Giter VIP logo

cs169's Introduction

Setting up SSH:


1. Select your vm inside VirtualBox Manager.
2. Settings > Network > Port Forwarding 

3. add a new rule with "name => ssh, protocol => TCP, Host Port => 3022, Guest Port => 22", and everything else BLANK.
4. INSIDE your vm, install the ssh server with "sudo apt-get install openssh-server"
5. SSH Command: ssh -p 3022 [email protected]
6. If you didn't change, the password is "saasbook".


Setting up files mounting:


1. install Homebrew(http://brew.sh), if you haven't.
2. brew install sshfs
3. follow the instruction from "brew info fuse4x-kext"
4. Mount Command: sshfs -p 3022 [email protected]:path/you/want local/path/you/want
5. If you didn't change, the password is "saasbook".

***************
In addition to the SSH and Mount introduced above, we could also port forward web request from host to the vm, so the result would be: running rails server inside vm, and accessing the server from a browser in host.

 

Request forward:

1. Select your vm inside VirtualBox Manager.

2. Settings > Network > Port Forwarding 

3. add a new rule with "name => rails, protocol => TCP, Host Port => 3021, Guest Port => 3000", and everything else BLANK.

4. Start web server inside vm, and access it with url http://localhost:3021 from host.

 

*5 the "Guest Port" should be the same port used by the web server, by default it is 3000. If the web server runs on other port (say 2999), then Guest Port should be 2999.

 

*6 the port in the url should be the "Host Port", please use a port not occupied by other process in the host env.

 

*7 you will find the speed is very SLOW if using webrick (command "rails server"), the solution is: in the vm, in the file: /home/saasbook/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/config.rb , change ":DoNotReverseLookup => nil" to ":DoNotReverseLookup => true". By doing so we stop one of webrick's default behavior, which is reverse DNS lookup for every web request. It is very slow if server is remote or vm.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.