기본 설정에 필요한 모든 것
이런 종류의 구성은 localhost에서 phpMyAdmin을 중단시키지 않습니다.
서버를 실행하는 장치에는 고정 IP가 권장됩니다.
이 예는 192.168.1.x IP를 사용합니다. 네트워크 구성에 다른 IP가 사용될 수 있습니다
Apache의 httpd.conf에는 다음이 있어야합니다.
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 80
이름을 비워두면 기본값이 표시됩니다.
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
게스트 머신과 자신을 허용하십시오. 보안상의 이유로, Allow from 192.168.1.xxx 와 같이 특정 게스트 IP를 사용하는 대신 모든 게스트 에서 허용을 피할 수 있습니다. 여기서 xxx는 게스트 머신 IP입니다. 이 경우 게스트 컴퓨터에서도 고정 IP를 고려해야합니다.
# Controls who can get stuff from this server.
#
# Require all granted
# onlineoffline tag - don't remove
Order Deny,Allow
# Deny from all
Allow from all
Allow from 127.0.0.1
Allow from ::1
Allow from localhost
Allow from 192.168.1.*YOURguestIP*
Allow from 192.168.1.*YOURselfIP*
</Directory>
모든 서비스를 다시 시작 하고 온라인 넣고 트레이 아이콘에서