es 部署 进程、文件数 配置

摘要: 1. /etc/security/limits.conf elasticsearch soft nofile 65536 elasticsearch hard nofile 65536 elasticsearch soft nproc 4096 elasticsearch hard nproc 40 阅读全文
posted @ 2022-06-07 23:27 旭彬 阅读(361) 评论(0) 推荐(0) 编辑

使用 p7zip 加密解密

摘要: 1. 安装 yum install p7zip p7zip-plugins 2. 加密打包 7z a -ptest test.7z test.php -p 密码 test.php 可以是目录 或者 多个文件3. 解密打包 7z x -ptest test.7z -r -o./now 4. 查看手册 阅读全文
posted @ 2022-03-29 18:10 旭彬 阅读(301) 评论(0) 推荐(0) 编辑

gitlab hook

摘要: 1. 添加钩子 2. 代码执行 exec sudo git pull 3. 服务器git.exe 给 www组添加权限 vim /etc/sudoers www ALL=NOPASSWD:/usr/bin/git 阅读全文
posted @ 2021-09-30 14:42 旭彬 阅读(193) 评论(0) 推荐(0) 编辑

php 处理高精度计算函数

摘要: php 处理高精度计算函数 php 处理高精度计算函数 PHP 为任意精度数学计算提供了二进制计算器(Binary Calculator),它支持任意大小和精度的数字,以字符串形式描述 bcadd — 加法 bccomp — 比较 bcdiv — 相除 bcmod — 求余数 bcmul — 乘法 阅读全文
posted @ 2021-06-10 17:44 旭彬 阅读(111) 评论(0) 推荐(0) 编辑

php 使用file_put_content将 数据 push 到csv文件中

摘要: 1. 设置数据 $data = [ [ 'xubin,123321', 'feifei,332234', 'tengfei', '323423434343324323423432423432434324234324324324332' ], [ 'xubi123n', 'feife321i', 't 阅读全文
posted @ 2021-05-19 20:48 旭彬 阅读(372) 评论(0) 推荐(0) 编辑

忘记rabbitmq账号密码?创建rabbitmq新用户

摘要: 1. 新增账号username,密码password rabbitmqctl add_user username password 2. rabbitmqctl set_user_tags username administrator 3. 给username赋予权限 rabbitmqctl set 阅读全文
posted @ 2021-03-26 11:08 旭彬 阅读(1238) 评论(0) 推荐(0) 编辑

docker+nginx+consul+swoft 实现动态负载均衡

摘要: 一. 安装docker https://www.runoob.com/docker/centos-docker-install.htmlhttps://www.runoob.com/docker/centos-docker-install.html 二. 拉取镜像文件 1. dockerhub 拉取 阅读全文
posted @ 2021-02-18 01:24 旭彬 阅读(145) 评论(0) 推荐(0) 编辑

docker 基础操作

摘要: 操作仓库 1. 从仓库上下载镜像资源到本地 docker pull xxx/yyy 2. 推送本地镜像到仓库 docker push xxx/yyy 操作镜像n 1. 查看所有的镜像 docker images 2. 删除镜像 docker rmi xxx/yyy 3. 删除所有镜像 docker 阅读全文
posted @ 2021-02-10 13:58 旭彬 阅读(87) 评论(0) 推荐(0) 编辑

mysql 配置主从复制

摘要: 简介:mysql 实现主从复制的原理 通过主数据库binlog文件重做实现数据同步(尽量保证mysql版本相同) 1. 准备两台mysql服务 ip1:192.168.44.3 主服务器 ip2:192.168.44.5 从服务器 主服务器 2. 配置my.cnf vim /etc/my.conf 阅读全文
posted @ 2021-01-12 18:10 旭彬 阅读(121) 评论(0) 推荐(0) 编辑

windows挂载到linux虚拟机mount命令

摘要: mount -t cifs -o username=admin,password=asdasd,dir_mode=0777,file_mode=0777 //192.168.44.1/blog /www/wwwroot/blog username windows电脑用户password 密码 dir 阅读全文
posted @ 2020-12-25 16:37 旭彬 阅读(629) 评论(0) 推荐(0) 编辑