Mac下安装gdb证书 服务器笔记
1、先按照csdn上面的这边文章进行添加证书,名称设为 code_gdbsign https://blog.csdn.net/LU_ZHAO/article/details/104803399/ 2、假如你的mac系统大于Mac OS X 10.14,则 vim gdb-entitlement.xml <?xml...
1、先按照csdn上面的这边文章进行添加证书,名称设为 code_gdbsign https://blog.csdn.net/LU_ZHAO/article/details/104803399/ 2、假如你的mac系统大于Mac OS X 10.14,则 vim gdb-entitlement.xml <?xml...
1、先安装brew,安装过的可以忽略 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 2、安装bash-completion brew install...
vim ~/.bash_profile,写入以下内容 function git_branch { branch="`git branch 2>/dev/null | grep "^\*" | sed -e "s/^\*\ //"`" if ;then if ;then branch="...
lsof | grep deleted (如果lsof命令不存在,执行yum install lsof进行安装) 我这里执行后,显示都是nginx相关进程 于是我执行 nginx -s reload 如果不行,可以执行 killall nginx; nginx -c /usr/local/nginx/conf/ngin...
1.获取到进程号 ps aux|grep php-fpm 得到php-fpm的master进程的id号是10100 2.查看安装目录 ll /proc/10100/exe
下载地址 https://ftp.gnu.org/gnu/gcc/ 下载gcc和相关依赖 wget https://ftp.gnu.org/gnu/gcc/gcc-5.4.0/gcc-5.4.0.tar.gz tar -zxvf gcc-5.4.0.tar.gz cd gcc-5.4.0 ./contrib/downl...
问题:执行 systemctl start postfix Job for postfix.service failed because the control process exited with error code. See "systemctl status postfix.service&quo...
官网安装说明 https://about.gitlab.com/install/#centos-7 1.第一步 sudo yum install -y curl policycoreutils-python openssh-server sudo systemctl enable sshd sudo systemctl...
fastcgi_param QUERY_STRING $query_string; #请求的参数;如?app=123 fastcgi_param REQUEST_METHOD $request_method; #请求的动作(GET,POST) fastcgi_param CONTENT_T...
实现前奏 目标:按照指定的参数(如分类/商品编号)做一致性hash,从而保证相同数据到一台机器上 先说下nginx里$request_uri和$uri的区别 $request_uri This variable is equal to the original request URI as received from ...