1
0

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.

AndroidスマホにApacheとPHPとMySQLをインストールする

Last updated at Posted at 2020-09-13

UerLandを使ってAndroidスマホにApacheとPHPとMySQLをインストールします。

UserLandでUbuntuのsshをインストールするとポート2022番号でログインをすることができます。

ssh USERNAME@192.168.xxx.xxx -p2022 ;

ログインをしたらまずは最新にアップデート

sudo apt update ;
sudo apt upgrade -y ;
sudo apt install -y nano ;

Apache2 PHP MySQLをインストール

sudo apt install apache2 php php-mysql mariadb-server ;

Apacheの開放ポートを80から8080へ変更

emacs /etc/apache2/ports.conf ;

下記修正

Listen 80
↓
Listen 8080

サービスとして起動(systemctrlは使用できないため)

service apache2 start ;

他の端末からブラウザで

http://192.168.xxx.xxx:8080

を開く。

/var/www/html/内のファイルにアクセスができます。

PHPの動作確認

mv /var/www/html/index.html /var/www/html/index.html.back ;
nano /var/www/html/index.php ;

index.phpに下記を記述

<?php

phpinfo();

保存

再び

http://192.168.xxx.xxx:8080

を開くとphpの情報がズラリと出ます。

ワードプレスも行けそうです。

1
0
2

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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?