AWS Lightsail 설계도에서 WordPress를 선택할 때 phpMyAdmin 설정

AWS Lightsail에서 WordPress 설치를 시도했습니다. 몇 분 안에 사이트가 일어났습니다.



SSH로 로그인했는데 phpmyadmin 폴더가 존재했기 때문에 브라우저를 통해 다음 URL로 연결을 시도했지만 오류 메시지가 표시되어 연결할 수 없습니다.

URLhttp://[パブリックIP]/phpmyadmin
오류 메시지
For security reasons, this URL is only accessible using localhost (127.0.0.1) as the hostname.

액세스할 수 있도록 설정을 변경합시다.

설정 방법



메시지와 같이 localhost의 연결만 허용되므로 구성 파일을 변경합니다.

파일/opt/bitnami/apps/phpmyadmin/conf/httpd-app.conf

설정 내용



고정 IP 주소를 허용하는 경우


<IfVersion >= 2.3>
Require ip [許可するIPアドレスを記入]
Require local
</IfVersion>

모든 연결을 허용하는 경우



※별도 Basic 인증이라고 합니다
<IfVersion >= 2.3>
Require all granted
</IfVersion>

IP가 허용되지 않는 경우 기본 인증 표시


<RequireAny>
Require ip [許可するIPアドレスを記入]
AuthType basic
AuthName "Secure Zone"
AuthUserFile [/path/to/.htpasswd]
Require valid-user
</RequireAny>

구성 변경 후 다음 명령으로 Apache를 다시 시작합니다.
sudo /opt/bitnami/ctlscript.sh restart apache
※graceful, reload계의 옵션은 준비되어 있지 않았습니다.
bitnami@ip-172-26-9-155:~$ sudo /opt/bitnami/ctlscript.sh
usage: /opt/bitnami/ctlscript.sh help
       /opt/bitnami/ctlscript.sh (start|stop|restart|status)
       /opt/bitnami/ctlscript.sh (start|stop|restart|status) mysql
       /opt/bitnami/ctlscript.sh (start|stop|restart|status) php-fpm
       /opt/bitnami/ctlscript.sh (start|stop|restart|status) apache

help       - this screen
start      - start the service(s)
stop       - stop  the service(s)
restart    - restart or start the service(s)
status     - show the status of the service(s)



보았습니다!

기본 사용자 이름은 root이고 로그인 암호는 다음 파일에 설명되어 있습니다.cat /home/bitnami/bitnami_application_password

좋은 웹페이지 즐겨찾기