Introduction to AWS EC2 - How to deploy a Rails App to EC2 for the first time

Поделиться
HTML-код
  • Опубликовано: 4 ноя 2024

Комментарии • 59

  • @azero79
    @azero79 8 лет назад

    >neural nets
    holy shit, this channel is like Christmas for me.

  • @liamthorne4
    @liamthorne4 4 года назад +1

    Thank you so much. You saved me hours of headache looking through the AWS documentation

  • @mikehoward4856
    @mikehoward4856 6 лет назад +1

    Waoh!!!! This is hands down the best AWS tutorial ever! I would definitely pay to a course on AWS by you

  • @ChongHwi
    @ChongHwi 5 лет назад +1

    Never missed a second in video, really appreciate for this high standard tutorials.

  • @grahamlewis2146
    @grahamlewis2146 8 лет назад +1

    Great tutorial Jordan - makes the whole scary mess super simple. Nice work - please keep 'em coming!

  • @beWorldly
    @beWorldly 7 лет назад

    Jordan, just wanted to say a HUGE THANK YOU! for creating this awesome video. I was struggling to figure out what to do with EC2, load balancers, etc..so this is exactly the crash course I was looking for!

  • @john1214
    @john1214 7 лет назад +1

    Hey Jordan, awesome video! Do you have the installations steps of the rails, rbenv, ruby on the part you fast fowarded? thanks!

  • @akeedafarees4058
    @akeedafarees4058 6 лет назад +16

    Where's the part he fast forwarded?

    • @corit8976
      @corit8976 5 лет назад

      I know it's been a year but any luck finding this anyone?

    • @stevenm61
      @stevenm61 4 года назад +3

      Yeah its a bit sucky to fast forward the environment configuration (forehealdpalmslap)

  • @ricardontiveros
    @ricardontiveros 7 лет назад

    great tutorial, you go strength to the point, question, I like the concept of having dev env in an instance too to have an easy accesibility to both environments, but that involves extra costs once the free plan expires, right?. is there any other fancy/elegant solution to upload changes from dev to prod , instead of pushing changes to git from dev and pulling from prod,? (keeping dev in my local machine)

  • @gloriaangelova8162
    @gloriaangelova8162 8 лет назад +4

    hey Jordan, great video, can you please share a link for the installations steps of the rails/ruby development environment?
    thanks

    • @pabloicaza
      @pabloicaza 8 лет назад +6

      In my case it was..
      $ sudo yum install -y git gcc openssl-devel readline-devel zlib-devel
      $ git clone github.com/rbenv/rbenv.git ~/.rbenv
      $ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
      $ ~/.rbenv/bin/rbenv init
      $ source ~/.bash_profile
      $ eval "$(rbenv init -)"
      $ type rbenv
      $ git clone github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
      $ rbenv install 2.3.1
      $ rbenv global 2.3.1
      $ ruby -v
      $ gem install bundler
      $ mkdir ~/.rbenv/plugins
      $ git clone git://github.com/dcarley/rbenv-sudo.git ~/.rbenv/plugins/rbenv-sudo
      $ sudo yum groupinstall "Development tools" - to install gcc compiler
      $ sudo yum install sqlite-devel
      $ git clone #YOUREPOSITORY
      $ cd #YOUREPOSITORY
      $ bundle
      Add gems to Gemfile
      gem 'execjs'
      gem 'therubyracer', :platforms => :ruby
      $ bundle
      $ rails s -p 3000 -b 0.0.0.0

    • @dvlpr
      @dvlpr 7 лет назад

      Thanks! Big help!

    • @beWorldly
      @beWorldly 7 лет назад

      Thanks a lot for this bro!

    • @beWorldly
      @beWorldly 7 лет назад +1

      I'm getting an error '-bash: rails: command not found' when I do rails s

    • @russellwaltz7343
      @russellwaltz7343 6 лет назад

      Thanks! I got an error when I ran "$ rbenv install 2.3.1", saying that I was missing GCC. But I ran " sudo yum groupinstall "Development Tools", and that made the error go away

  • @HekaFOF
    @HekaFOF 8 лет назад +3

    Wow you are fast typer :D I would love to see you do AWS Ansible Node video :)

  • @shrishcs
    @shrishcs 4 года назад

    So you see, that's where the problem began
    That Introduction
    That damned Introduction

  • @BeXSive
    @BeXSive 8 лет назад

    How would you take the next step to something like Puma from here? I got everything else working, great tutorial!

  • @PedrodosSantosPereira
    @PedrodosSantosPereira 7 лет назад

    Thank you so much for this video from Brazil! You use easy english, goes step by step and with examples! :D

  • @francisliu7556
    @francisliu7556 4 года назад

    you deserve more viewers

  • @Kaysar777
    @Kaysar777 8 лет назад +2

    Amazing tutorial! I thought AWS was complicated as f***! But you make it very simple.
    Thanks!
    PLease teach more.

  • @BlackGekikara
    @BlackGekikara 7 лет назад

    How about comands for Windows? Like there are no chmods for Windows

  • @bosniansoldier5305
    @bosniansoldier5305 6 лет назад

    You had my like in first 1 min, snow informer sealed the deal!

  • @anikettiwari6885
    @anikettiwari6885 3 года назад

    Can you make a video on nginx to configure rails application with basic and some advance conceps

  • @ameenasif
    @ameenasif 5 лет назад +1

    when you make an AMI all the instals would be there , but that would not start teh rails app, does that part need chef , puppet ? to run rails as service

  • @benstrachan3418
    @benstrachan3418 6 лет назад

    Great video thanks! I much prefer Heroku although it doesn't have affordable Australian hosting. Very helpful.

  • @dalcowboiz5634
    @dalcowboiz5634 3 года назад

    where is the part he fast forwarded through? Can't find it

  • @jj1221ify
    @jj1221ify 7 лет назад

    This is so amazing - and that intro LOL!! Thank you!

  • @Okaygosh
    @Okaygosh 6 лет назад

    great video! Thanks for the walkthrough

  • @pramonowang1677
    @pramonowang1677 7 лет назад

    If I do have rails for my backend and angular for front end, how do i deploy them independently and connect them through aws?

  • @cecespol8284
    @cecespol8284 7 лет назад

    Hi! +Jordan Leigh this works for a ruby app made on windows too? As I'm seeing you're using Linux to work on this.

  • @kevintownsend3720
    @kevintownsend3720 6 лет назад

    Thanks for this. It was very helpful

  • @soyun81
    @soyun81 7 лет назад

    thank you. it was so easy to follow

  • @vishyarjun
    @vishyarjun 6 лет назад

    Thats a wonderful starter for a beginner like me. !! :-)

  • @ankitagarwal6375
    @ankitagarwal6375 3 года назад

    oHH man...that intro..:D

  • @MehranHydary
    @MehranHydary 8 лет назад

    excellent video!

  • @htinajero90
    @htinajero90 7 лет назад

    What happens if my terminal keeps crashing when installing rbenv install 2.3.1?

  • @NoNamePerson18
    @NoNamePerson18 8 лет назад

    can you please make video for how to connect ruby on rails api-app to rails ruby on rails webapp you know like connecting android app to webapp

  • @dishantkalyani
    @dishantkalyani 8 лет назад

    @Jordan Leigh- Can you please tell me how to install Rails on AWS. I am not able to start my rails server on aws. Please reply now. It is urgent.

  • @jotatru
    @jotatru 7 лет назад

    Thanks! It helped a lot!

  • @yashvardhansrivastava7289
    @yashvardhansrivastava7289 7 лет назад +1

    great video..thanks a lot

  • @geo2465
    @geo2465 8 лет назад

    Hi! thanks for the video,
    I have a ubuntu 14 machine and I have I issue to setup the ssh at the minute 5:38 this is what I run
    ssh -L ~/Desktop/example-key.pen ec2-user@123-444-222
    and this is what returns
    Bad local forwarding specification 'example-key.pen'
    any idea what can be the issue?

    • @dvlpr
      @dvlpr 7 лет назад

      is it because you used example-key.pen when it's a .pem file?

  • @oddlang687
    @oddlang687 5 лет назад

    When I try to use the command chmod 400 like he did in the video, it still tells me "Permissions 0555 for 'Desktop/mykeypair.pem' are too open." Why doesn't this work?

    • @pescandocomalexandre
      @pescandocomalexandre 5 лет назад

      use sudo chmod 400 yourkey.pem (super user in ubuntu linux at least)
      amazon doesn allow the connection if the permissions are too open

  • @TMC927
    @TMC927 7 лет назад

    Thanks major help here!

  • @josepiccioni2717
    @josepiccioni2717 5 лет назад

    thumbs up for the music

  • @abura3d2012
    @abura3d2012 7 лет назад

    hello
    after i clone the app from github and run rails s this error comes , can you help me on this
    ubuntu@ip-172-31-19-242:~/app/test-oth$ rails s
    Could not find activesupport-5.0.0.1 in any of the sources
    Run `bundle install` to install missing gems.

    • @abhijeet1
      @abhijeet1 5 лет назад

      You have to install rails after that

  • @janicknorman9396
    @janicknorman9396 6 лет назад

    your a beast man

  • @nickthapa7127
    @nickthapa7127 Год назад

    man you are fucking good and aasome you make my day

  • @_ab054
    @_ab054 8 лет назад

    NIce!

  • @gloriaangelova8162
    @gloriaangelova8162 8 лет назад

    or share the AMI
    :)