1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

RailsサーバーにiPhoneで接続する

Posted at

###背景
MacのローカルのRailsアプリにiPhoneでアクセスをしたいと思ったため。
想像以上に簡単に接続することが出来ました。

###前提
MacとiPhpneを同じWi-Fiに接続している必要がある

###手順
####1.MacのIPアドレスを確認
リンゴマーク→システム環境設定→ネットワーク→詳細→TCP/IPでIPアドレスを確認。

####2.IPアドレスを指定してRailsのサーバーを起動する。
手順1で確認したIPアドレスを指定してRailsサーバーを起動する。

$ rails s -b <IPアドレス>

-bオプションを使うことで、IPアドレスを指定

####3.iPhoneからRailsサーバーにアクセスする。

iPhoneのブラウザで下記のように入力する。
*111.111.111.1はIPアドレスの例。手順1で確認したIPアドレスを入力する。

http://111.111.111.1:3000/

:3000で3000番ポートにアクセスする。Railsのデフォルトポートは3000であるため。

###最後に
何か間違えていたり、変な記述があったら遠慮なくコメントしてくれるとありがたいです!

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?