Skip to content

Latest commit

 

History

History
119 lines (87 loc) · 3.19 KB

README(EN).md

File metadata and controls

119 lines (87 loc) · 3.19 KB

EMLauncher

Setup

This is the process to run EMLauncher in AmazonLinux of EC2.

1. Launch EC2 instance

Once the instance is established, permit HTTP(80) in the security group setting.

In the case of t1.micro, there are cases of lack of memory, it is necessary to prepare swap file.

sudo dd if=/dev/zero of=/swapfile bs=1M count=1024
sudo mkswap /swapfile
sudo swapon /swapfile
sudo sh -c "echo '/swapfile swap swap defaults 0 0' >> /etc/fstab"

2. Install required packages

sudo yum install php php-pdo php-mysql httpd mysql55-server memcached php-pecl-memcache php-mbstring php-pecl-imagick git

3. Deploy codes

git clone https://github.com/KLab/emlauncher.git
cd emlauncher
git submodule init
git submodule update

Please modify the permission so that Apache can access the file.

4. Apache setup

Edit /etc/httpd/conf/httpd.conf

DocumentRoot "/path/to/emlauncher/web"
SetEnv MFW_ENV 'ec2'
<Directory "/path/to/emlauncher/web">
  AllowOverride All
  ...abbreviated..
</Directory>
sudo /etc/init.d/httpd start
sudo chkconfig httpd on

5. Database setup

sudo /etc/init.d/mysqld start
sudo chkconfig mysqld on

Create file with username and password of DB.

Eg:

echo 'emlauncher:password' > $HOME/dbauth

Modify the passwords of data/sql/database.sql, and send to MySQL.

mysql -uroot < /path/to/emlauncher/data/sql/database.sql
mysql -uroot emlauncher < /path/to/emlauncher/data/sql/tables.sql

6. Memcache setup

sudo /etc/init.d/memcached start
sudo chkconfig memcached on

7. Setup bundletool for Android App Bundle

sudo yum install java-1.8.0-openjdk-headless
curl -sLO https://github.com/google/bundletool/releases/download/0.10.0/bundletool-all-0.10.0.jar

Here will also have a keystore for re-signing the generate APK. The password, keystore file name, and alias name to be set here will be described later in the configuration file emlauncher_config.php.

keytool -genkey -keystore {emlauncher-keystore.jks} -keyalg RSA -keysize 2048 -validity 10000 -alias {key-alias}

When Running on a platform with AARCH64(ARM64) architecture

When Running on the platform of AARCH64(ARM64) architecture, aapt2 included in bundletool is for AMD64(x86_64) architecture and does not work as it is, so download aapt2 for ARM64 architecture from github.

curl -sLO https://github.com/JonForShort/android-tools/raw/master/build/android-9.0.0_r33/aapt2/arm64-v8a/bin/aapt2

8. Configuration

mfw_serverevn_config.php

Copy config/mfw_serverenv_config_sample.php,and rewrite $serverenv_config['ec2']['database']['authfile'] to the path of dbauth file that was created at 5.

emlauncher_config.php

Copy config/emlauncher_config_sample.php, and rewrite to match your own environment.

Create bucket that will be assigned to bucket name of S3 in advance.

When running on a platform with AARCH64(ARM64) architecture

Specify the path of the aapt2 executable file for ARM64 downloaded at section (6.) in aapt2 of the APK file settings.

9. Complete

Access instance with HTTP in browser. When the login page of EMLauncher is displayed, it’s complete.