首页
Linux
服务部署
Nginx
MySQL
Docker
Jenkins
Python
Golang
前端
javascript
react
其它
传送门
cn2linux
行动起来,活在当下
累计撰写
128
篇文章
累计创建
1
个标签
累计收到
0
条评论
栏目
首页
Linux
服务部署
Nginx
MySQL
Docker
Jenkins
Python
Golang
前端
javascript
react
其它
传送门
目 录
CONTENT
最新文章
Confluence 8.0.2 安装并破解[草稿]
Mysql 数据库自备,或者使用容器编排创建一个数据库 Mysql 数据库必须 utf-8 并且排序规则设置 utf8_bin 不会设置排序规则 utf8_bin 通过 Navicat 等工具右击创建好的数据库,右击编辑该数据库修改即可 https://image.akiraka.net/file/
2024-06-17
32
0
0
服务部署
K8S
容器 当我们创建一个容器的时候,docker daemon 并不能直接帮我们创建了,而是请求containerd 来创建容器,containerd 收到请求后,也不会直接去操作容器而是去创建一个叫 containerd-shim的进程,让这个进程去操作容器,我们指定容器进程需要父进程来做状态收集 维
2024-01-02
34
0
0
Linux
服务部署 搭建 MySQL架构 MGR+Consul 高可用
10.88.128.163 consul server 目前只部署了一个server,可部署集群模式 10.88.6.251 mysql server mnode1、consul client 10.88.6.252 mysql server mnode2、consul client 10.88.6
2024-01-02
38
0
0
MySQL SQL基础操作
函数相关 查看 MySQL 版本 SELECT VERSION(); 获取当前时间 SELECT CURRENT_TIMESTAMP();
2023-12-30
10
0
0
服务部署
安装部署 DNF 安装 Nginx(含 TCP 模块)
快速安装 yum install nginx-mod-stream -y 参考文档 用yum安装的nginx,报unknown directive “stream”
2023-12-30
61
0
0
服务部署
服务部署 编译 Openresty
设置环境变量 export USER=www export NGINX_VERSION=1.21.4.3 export SSL_VERSION=3.2.0 export CPUS=$(grep 'cores' /proc/cpuinfo |wc -l) 创建服务账号 id ${USER}||user
2023-12-23
52
0
0
服务部署
服务部署 编译Nginx
设置环境变量 export USER=www export NGINX_VERSION=1.25.3 export SSL_VERSION=1.1.1w export CPUS=$(grep 'cores' /proc/cpuinfo |wc -l) 创建服务账号 id ${USER}||usera
2023-12-23
44
0
0
服务部署
Nginx 字符串截取
在给大家讲述这个问题之前,先给大家看一段nginx配置. 我们用到了 set-misc-nginx-module location /test/ { default_type text/html; set_md5 $hash "secret $remote_addr"; ec
2023-12-23
50
0
0
Nginx
服务部署 3Proxy
安装服务3PROXY dnf install 3proxy -y 覆盖启动配置(可选) vim /usr/lib/systemd/system/3proxy.service [Unit] Description=3proxy Proxy Server After=syslog.target netw
2023-12-23
35
0
0
服务部署
服务部署 编译PHP8.2
安装部署 设置环境变量 export USER=www export PHP_VERSION=8.2.14 export CPUS=$(grep 'cores' /proc/cpuinfo |wc -l) 创建系统账号 id ${USER}||useradd ${USER} -M -s /usr/
2023-12-22
28
0
0
服务部署
1
2
3
4
5
...
13