2018/11/12 Updated by

Python


[Up] Japanese English

memo

  1. AWS の EC2 で ubuntu を起動。
  2. セキュリティ・グループで ssh (tcp/22)だけ開いているので、http(tcp/80)も開ける。
  3. 他のマシンからsshdでアクセス
  4.   $ chmod 644 ubuntu001.pem
      $ ssh -i ubuntsu001.pem ubuntu@xx.xx.xx.xx (IPv4アドレス)
    
  5. apacheインストール
  6.   $ sudo apt install apache2
      $ ls /etc/init.d
      $ sudo service apache2 restart
    
  7. ubuntu のfirewall (ufw) の状態を確認
  8.   $ sudo ufw status
       status: inactive
    
  9. ifconfig -a で得られるIPアドレスとは異なるIP Address が外から見えていることに注意。
  10. 外から見えるIPアドレスは
    AWSマネジメント・コンソール → EC2 → インスタンス → ubuntu001 → IPv4パブリックIP
    これではまった。

  11. Ushahidi