摘要:
# pip install python-dotenv -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com import os from dotenv import find_dotenv, load_dotenv # 加 阅读全文
摘要:
在配置文件中 copyrequestbody = true type user struct { Username string `form:"username"` Password string `form:"password"` } func (this *LoginController) Lo 阅读全文
摘要:
# 安装java yum install java mysql自行安装 注:官方推荐mysql版本8.0.14以上 # 新建目录soft mkdir /soft # 进入/soft cd /soft # 下载zip包 wget http://dl.mycat.org.cn/2.0/install-t 阅读全文
摘要:
代码 $params = [ 'index' => 'product', 'body' => [ 'settings' => [ 'number_of_shards' => 1, 'number_of_replicas' => 0 ], 'mappings' => [ '_doc' => [ '_s 阅读全文
摘要:
桌面新建 自定义名字.bat文件 黏贴如下 pushd "%~dp0" dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt for /f %%i in ('findstr /i . hyper-v.txt 2^>nul' 阅读全文
摘要:
nginx脚本 对于/etc/rc.d/init.d/目录下缺少functions脚本运行 yum install initscripts -y 阅读全文
摘要:
安装的nginx默认侦听的是9000端口 查询9000端口是否出于侦听状态 netstat -antp | grep :9000 查询之后发现没有查到,查看php-fpm.conf文件 cat /usr/local/php/etc/php-fpm.conf 修改nginx配置 location ~ 阅读全文
摘要:
执行 docker build -t centos:latest 报错 pull access denied for contos, repository does not exist or may require 'docker login': denied: requested access t 阅读全文
摘要:
upstream webacked{ server 127.0.0.1:9505; #目标服务器websockt地址 } server { # 监听当前服务器端口 listen 9888; location / { proxy_pass http://webacked; proxy_http_ver 阅读全文
摘要:
1 # 获取错误信息 curl_error($ch) 返回空白 2 # 获取错误编码 curl_errno($ch) 返回空白 3 # 获取http状态码 $httpCode = curl_getinfo($ch,CURLINFO_HTTP_CODE); 返回400, 检查url及参数 4 5 # 阅读全文
摘要:
stream { proxy_timeout 300s; server { listen 3307; listen [::]:3307; proxy_pass 192.168.0.106:3306; } } 阅读全文
摘要:
新搭建的项目, 用到的百度第三方接口身份证识别一直超时, 排查了n多的原因后面才发现可能可能是因为服务器问题(因为同一套代码另一个服务器和本地是正常的) /etc/resolv.conf 修改如下: nameserver 114.114.114.114 nameserver 114.114.115. 阅读全文
摘要:
查看当前web服务器的用户,我的是www 注:当前登陆用户如果和web服务器用户不是同一个用户,执行.sh脚本里的git pull时会权限不足 #切换到www用户 su www 注:如提示 This account is currently not available. 操作如下 vim /etc/ 阅读全文
摘要:
composer create-project --prefer-dist laravel/laravel=5.6.* blog 安装的laravel运行时报错: No application encryption key has been specified 提示没有设置密钥 查看安装的时候com 阅读全文
摘要:
#第一次装了kibana-10-0-0 的运行提示如下 Kibana server is not ready yet #一般是版本号不对应 #另一种情况是第二天启动的时候 多刷新几次浏览器就可以了 #官网 https://www.elastic.co/cn/downloads/past-releas 阅读全文
摘要:
服务器: 192.168.129.201 192.168.129.202 服务器 192.168.129.201 设置如下: # 201服务器的项目代码为81端口。 upstream web_array { server 192.168.129.201:81; server 192.168.129. 阅读全文
摘要:
主:192.168.47.101 从:192.168.47.102 配置主数据库 vi /etc/my.cnf [mysqld] server-id=101 #[必须]服务器唯一ID log-bin=master-bin #[必须]启用二进制日志 log-bin-index=master-bin.i 阅读全文
摘要:
安装 rpm -ivh rpm包地址(包全名) --prefix=/usr/local/ -i install 安装 -v 现视更详细的信息 -h 显示安装进度--prefix 指定安装位置,不建议,使用默认的就好--force 强制安装。不管是否已经安装,都重复安装 (例:用于安装目录文件丢失) 阅读全文
摘要:
$redis->sAdd(FOLLOW_TABLE, ...$array); php ...的用法参考如下: https://www.php.net/manual/zh/functions.arguments.php#functions.variable-arg-list 阅读全文
摘要:
登陆root或者管理员用户 #test 数据库用户名#testpassword 数据库密码#创建允许远程访问的用户 create user test@'%' identified by 'testpassword'; #执行成功之后刷新用户权限 flush privileges;# 允许root用户 阅读全文