Bitnami Redmine Stack の phpMyAdmin にリモート端末からアクセスする方法です。
- Debian jessie
- bitnami-redmine-3.1.0-0-linux-x64
下記の設定ファイルを変更し、アクセス可能なアドレスを変更します。
$ sudo vi /opt/redmine-3.1.0-0/apps/phpmyadmin/conf/httpd-app.conf
<IfVersion < 2.3 >
Order allow,deny
#Allow from 127.0.0.1
Allow from all
Satisfy all
</IfVersion>
<IfVersion >= 2.3>
#Require local
Require all granted
</IfVersion>
Apache を再起動します。
$ sudo /opt/redmine-3.1.0-0/ctlscript.sh restart apache
Web ブラウザから下記のURLにアクセスします。
For security reasons, phpMyAdmin are accessible only when using 127.0.0.1 as the hostname.
Niceeee!! thank u!