LoginSignup
2
1

More than 3 years have passed since last update.

Andoridにwordpressをインストールする

Posted at

UserLandを用いてAndroidスマートフォンにwordpressをインストールします。

ユーティリティのインストール

sudo apt install wget ;

wordpressの取得

cd /var/www/html ;
wget https://ja.wordpress.org/latest-ja.tar.gz ;
tar xvf latest-ja.tar.gz ;
sudo chown -R www-data:www-data . ;

MySQLのスタート

sudo service mysql start ;

MySQLへ接続

sudo mariadb ;

wordpressのユーザー名をwordpress
パスワードをpasswordにした例

CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8;
GRANT ALL ON wordpress.* TO wordpress@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;

ブラウザからアクセス

http://192.168.xxx.xxx:8080/wordpress/

wordpressのインストール画面が表示されます。

2
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
2
1