2020/9/29

Mac mysql 配置环境变量

配置环境变量 vi ~/.zshrc export PATH=${PATH}:/usr/local/mysql/bin 保存后 source ~/.zshrc

  • macos mysql
  • 2020/9/29
  • 1,378
  • 2020/9/28

    Connection refused) while connecting to upstream, client: 127.0.0.1, server: localhost, request: “GET /index.php HTTP/1.1”, upstream: “fastcgi://127.0.0.1:9000”, host: “localhost:8080”

    mac启动nginx运行php项目报错 原因没有启动php-fpm sudo php-fpm

  • macos php
  • 2020/9/28
  • 1,261
  • 2020/9/10

    MacBook切换显卡

    #强制使用核显(集成显卡)  sudo pmset -a GPUSwitch 0  #强制使用独立显卡  sudo pmset -a GPUSwitch 1  #自动切换  sudo pmset -a GPUSwitch 2

  • macos 生活
  • 2020/9/10
  • 1,492
  • 2020/9/4

    macOS Catalina (macOS 10.15) 已损坏无法打开解决办法

    打开终端(屏幕下方“小火箭”——“其他”——打开“终端”),在终端中粘贴下面命令:   sudo xattr -r -d com.apple.quarantine ,然后输入个空格,再将应用程序目录中的软件拖拽到命令后面,按回车后输入自己电脑密码执行…

  • macos
  • 2020/9/4
  • 1,003
  • 2020/9/4

    mac 在终端如何进入名称带空格的目录

    对空格转义或者输入“ ”或‘ ’ open /Applications/Visual\ Studio\ Code.app open Appications/Visual' 'Studio.app open Appications/Visual" "Studio.app

  • macos
  • 2020/9/4
  • 898
  • 2020/8/29

    Mac php+nginx

    mac安装nginx+phpnginx 安装命令 brew install nginx nginx 默认监听 8080 端口,启动成功之后,在浏览器访问 http://localhost:8080 可以看到 nginx 的欢迎界面。 默认服务路径,项目根目录 /usr/local/…

  • macos nginx
  • 2020/8/29
  • 1,132
  • 2020/8/29

    Mac安装python

    1、查看 mac 自带系统版本 #查看系统自带的python open /System/Library/Frameworks/Python.framework/Versions #系统当前的python版本。 python -V 2、开始安装(这里我们使用神器homeb…

  • macos python
  • 2020/8/29
  • 1,026