Hintergrund
Ich lerne kürzlich PHP, weil Ich möchte nicht zu viel Aufwand in die Einrichtung der Umgebung stecken. Außerdem habe ich phpstudy schon einmal auf dem Mac-System verwendet dass es auf dem Mac kein entsprechendes phpstudy-Installationspaket gibt. Was soll ich tun? Ich habe vorher nur Vagrant verwendet und Virtualbox kann mit der Linux-Version von phpstudy verwendet werden. Schauen wir uns mit dieser Idee an, was wir vorbereiten müssen, um unsere obige Idee zu vervollständigen
Voraussetzungen
1 System
2. vagrant
4. phpstudy
Verarbeitung starten
Zuerst Vagrant und Virtualbox installieren
Vagrant Mac-Version herunterladen Installieren Sie das Installationspaket direkt in die Anwendung. Da die Netzwerkumgebung nicht sehr gut ist, verwenden wir hier nicht Ihren eigenen Box-Store . Die offline heruntergeladene Centos 7-Box wird zunächst mit dem folgenden Befehl zu Vagrant hinzugefügt:
Offline-Box zu Vagrant hinzufügenvagrant box add centos/7 /Users/ylf/Desktop/centos-7.0-x86_64.box
vagrant box list
Erstellen Sie ein neues Verzeichnis und erstellen Sie im Verzeichnis eine Vagrantfile-Datei mit folgendem Inhalt # -*- 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 = "centos/7"
# config.vm.box_version = "1801.02"
# 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"
config.ssh.username='root'
config.ssh.password='vagrant'
config.ssh.insert_key='true'
# 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.10"
# 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"
config.vm.network "public_network" , ip: "192.168.3.233" ,bridge: "en1: Wi-Fi (AirPort)"
# 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
vagrant up && vagrant ssh
Setzen Sie das verwendete Feld auf Centos/7 config.vm.box = "centos/7"
config.ssh.username='root' config.ssh.password='vagrant' config.ssh.insert_key='true'
Tipps: Die IP-Adresse hier wird entsprechend der tatsächlichen IP Ihres Computers festgelegt. Wennconfig die spezifische IP findet, wird die IP hier so eingestellt, dass sie dieser entspricht. Hier bin ich Die verwendete drahtlose Netzwerkkarte. Wenn es sich um eine Kabelverbindung handelt, stellen Sie sie bitte entsprechend dem in ifconfig gefundenen Wert ein
config.vm.network "public_network" , ip: "192.168.3.233" ,bridge: "en1: Wi-Fi (AirPort)"
Die virtuelle Maschine sollte inzwischen eingerichtet seinphpstudy installieren
Legen Sie die heruntergeladene phpstudy-all.bin in dasselbe Verzeichnis wie Vagrantfile und kopieren Sie dann die phpstudy-all.bin-Installation Paket in das ~-Verzeichnis cp /vagrant/phpstudy-all.bin ~/
chmod +x ~/phpstudy-all.bin ~/phpstudy-all.bin
Warten Sie, bis die Installation abgeschlossen ist. Die Installationszeit jeder Maschine ist unterschiedlich. Je nach Netzwerkgeschwindigkeit kann es zwischen einigen Minuten und mehreren Dutzend Minuten liegen. Zu diesem Zeitpunkt wurde phpstudy installiert. Testen Sie, ob phpstudy problemlos und normal gestartet werden kann >
phpstudy restart
line 82: killall: command not found
yum install psmisc
Zu diesem Zeitpunkt wurde phpstudy installiert und konfiguriert, aber wenn wir es für die Entwicklung verwenden, müssen wir noch einige andere Dinge einrichten. Wir müssen MySQL für den Fernzugriff einrichten
MySQL-Fernzugriff
Führen Sie den folgenden Befehl in dieser virtuellen Maschine aus, um sich bei MySQL anzumelden/phpstudy/mysql/bin/mysql -u root -proot
use mysql;
grant all privileges on *.* to 'root'@'%' identified by 'root'; flush privileges;
Schalten Sie die Firewall aus
systemctl stop firewalld
Deaktivieren Sie den Start der Firewall beim Booten
systemctl disabled firewalld
Hier wurde die MySQL-Remote-Verbindung geöffnet, auf dem Mac. Die Installation von phpstudy ist fast beendet In diesem Bereich werden wir darüber sprechen, wie Sie phpstorm für die Zusammenarbeit mit phpstudy für Remote-Debugging, Remote-Bereitstellung und automatischen Upload verwenden können
Empfohlenes Tutorial:
phpStudy Quick Getting Started Video Tutorial
Das obige ist der detaillierte Inhalt vonGibt es eine Mac-Version von phpstudy? Wie verwende ich phpstudy unter einem Mac-System?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!