美文网首页
linux foundation development bas

linux foundation development bas

作者: 我真的是昵称啊 | 来源:发表于2018-10-18 13:32 被阅读0次

php

  1. php.ini位置
    php -i|grep php.ini 或者 php -r 'phpinfo();'
Configuration File (php.ini) Path => /etc/php/7.2/cli
Loaded Configuration File => /etc/php/7.2/cli/php.ini
  1. 查看所有模块
php -m
  1. 查找 xdebug扩展 安装路径(ubuntu apt-get)
find /usr/ -name 'xdebug.so'
  1. 文件夹设置为当前用户权限
  chown -R dev:dev script/

find / -name 'xdebug.ini'

  1. mysqldump 不锁表
myisam使用参数: --skip-lock-tables
如果存储引擎是InnoDB: --single-transaction

相关文章

网友评论

      本文标题:linux foundation development bas

      本文链接:https://www.haomeiwen.com/subject/dpvjzftx.html