【초보자】PHP를 브라우저로 표시하는 방법
5573 단어 CyberduckPHPVirtualBoxVagrant
PHP를 브라우저에서 표시하기가 어려웠기 때문에 출력합니다.
문제점
도드 인스톨의, 로컬 개발 환경 구축(mac편) 를 참고로 해, Virtualbox(6.0.6)와 vagrant(2.2.4)와 Cyberduck를 인스톨 해, PHP를 브라우저로 표시하려고 했지만, Cyberduck의 신규 접속을 할 수 없다. 또한, 가능하다고 해도 브라우저에 표시할 수 없다.
해결책
1.Vagrantfile을 편집합니다.
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
# https://docs.vagrantup.com.
# Every Vagrant development environment requires a box. You can search for
# boxes at https://vagrantcloud.com/search.
config.vm.box = "bento/centos-6.8"
# Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs
# `vagrant box outdated`. This is not recommended.
# config.vm.box_check_update = false
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
# NOTE: This will enable public access to the opened port
# config.vm.network "forwarded_port", guest: 80, host: 8080
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine and only allow access
# via 127.0.0.1 to disable public access
# config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"
# Create a private network, which allows host-only access to the machine
# using a specific IP.
config.vm.network "private_network", ip: "192.168.33.11"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
# config.vm.network "public_network"
# Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
# config.vm.synced_folder "../data", "/vagrant_data"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
# config.vm.provider "virtualbox" do |vb|
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true
#
# # Customize the amount of memory on the VM:
# vb.memory = "1024"
# end
#
# View the documentation for the provider you are using for more
# information on available options.
# Enable provisioning with a shell script. Additional provisioners such as
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
# documentation for more information about their specific syntax and use.
# config.vm.provision "shell", inline: <<-SHELL
# apt-get update
# apt-get install -y apache2
# SHELL
end
위 코드에서 '#'이 벗어나고,
config.vm.network "private_network", ip: "192.168.33.11"
의 부분을 편집했습니다.
그건 그렇고, 점 설치에서,
config.vm.network "private_network", ip: "192.168.33.10"
이었다.
참조 (h tps://사자이지텐. rk / 도 c 케 r_
2.Cyberduck에서 새로운 연결
서버는 방금 변경한 숫자, 포트는 22(포트가 왜 22인지는 모릅니다), 유저명과 패스워드는 vagrant입니다.
3.터미널로 조작
터미널에서 Cyberduck로 만든 파일에 들어가 "ip a"를 입력.
마지막부터 3행째에 「192.168.33.11」이라고 표시되어 있다.
그런 다음 "php -S 192.168.33.11:8000"을 입력하고 (왜 : 8000인지 모르겠습니다) 브라우저에서 "http://192.168.33.11:8000"과 검색.
이제 php를 브라우저에서 볼 수 있습니다.
요약
마지막으로 북마크를 하면 php로 만든 여러 파일을 브라우저에서 볼 수 있게 되었습니다.
프로그래밍을 시작한 지 한 달도 지나지 않아, 미비가 있을지도 모르기 때문에, 아무쪼록 지적해 주세요.
Reference
이 문제에 관하여(【초보자】PHP를 브라우저로 표시하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/wafuwafu13/items/07f9563b9391baf6e772
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
1.Vagrantfile을 편집합니다.
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
# https://docs.vagrantup.com.
# Every Vagrant development environment requires a box. You can search for
# boxes at https://vagrantcloud.com/search.
config.vm.box = "bento/centos-6.8"
# Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs
# `vagrant box outdated`. This is not recommended.
# config.vm.box_check_update = false
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
# NOTE: This will enable public access to the opened port
# config.vm.network "forwarded_port", guest: 80, host: 8080
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine and only allow access
# via 127.0.0.1 to disable public access
# config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"
# Create a private network, which allows host-only access to the machine
# using a specific IP.
config.vm.network "private_network", ip: "192.168.33.11"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
# config.vm.network "public_network"
# Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
# config.vm.synced_folder "../data", "/vagrant_data"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
# config.vm.provider "virtualbox" do |vb|
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true
#
# # Customize the amount of memory on the VM:
# vb.memory = "1024"
# end
#
# View the documentation for the provider you are using for more
# information on available options.
# Enable provisioning with a shell script. Additional provisioners such as
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
# documentation for more information about their specific syntax and use.
# config.vm.provision "shell", inline: <<-SHELL
# apt-get update
# apt-get install -y apache2
# SHELL
end
위 코드에서 '#'이 벗어나고,
config.vm.network "private_network", ip: "192.168.33.11"
의 부분을 편집했습니다.
그건 그렇고, 점 설치에서,
config.vm.network "private_network", ip: "192.168.33.10"
이었다.
참조 (h tps://사자이지텐. rk / 도 c 케 r_
2.Cyberduck에서 새로운 연결
서버는 방금 변경한 숫자, 포트는 22(포트가 왜 22인지는 모릅니다), 유저명과 패스워드는 vagrant입니다.
3.터미널로 조작
터미널에서 Cyberduck로 만든 파일에 들어가 "ip a"를 입력.
마지막부터 3행째에 「192.168.33.11」이라고 표시되어 있다.
그런 다음 "php -S 192.168.33.11:8000"을 입력하고 (왜 : 8000인지 모르겠습니다) 브라우저에서 "http://192.168.33.11:8000"과 검색.
이제 php를 브라우저에서 볼 수 있습니다.
요약
마지막으로 북마크를 하면 php로 만든 여러 파일을 브라우저에서 볼 수 있게 되었습니다.
프로그래밍을 시작한 지 한 달도 지나지 않아, 미비가 있을지도 모르기 때문에, 아무쪼록 지적해 주세요.
Reference
이 문제에 관하여(【초보자】PHP를 브라우저로 표시하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/wafuwafu13/items/07f9563b9391baf6e772
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(【초보자】PHP를 브라우저로 표시하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/wafuwafu13/items/07f9563b9391baf6e772텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)