2014-05-04から1日間の記事一覧

error: Couldn't resolve host 'github.com' while accessing https://github.com/... (´゚д゚`)エー!

git

◯ 事象 gitで新規リポジトリをつくったので、 localにあるものをpushしようとしたらエラった。 $ git remote add origin https://github.com/****/rails_first_app.git $ git push -u origin master error: Couldn't resolve host 'github.com' while access…

vagrantでrails動かしてみたら、localhost:3000にアクセスできない (´゚д゚`)エー!

◯ 事象 ruby on rails のチュートリにて rails のサーバーを起動して、いざブラウザからアクセス!! 「Google Chrome では localhost:3000 に接続できませんでした」 /(^o^)\ ◯ 現状確認 3000でプロセスが待ってるのは確認できた。ふむ [vagrant@localhost …

rbenv: ruby: command not found (´゚д゚`)エー!

◯ rbenvを使ってrubyをインスコしたけどエラった [vagrant@localhost ~]$ ruby -v rbenv: ruby: command not found The `ruby' command exists in these Ruby versions: 2.1.1 rubyコマンド使ってるのに、rbenvが何故 ◯ 結論 rbenvはrubyのバージョンを指定…

Vagrantを使ってみた

◯ Vagrantとは コレ => Discover Vagrant Boxes | Atlas by HashiCorp 要は仮想環境構築ツール 仮想マシンの作成/OSインストールといった作業も含め、 設定管理の自動化を行うことができる。 https://vagrantcloud.com から使いたい Vagrantfile を探して、…