首页
Linux
服务部署
Nginx
MySQL
Docker
Jenkins
Python
Golang
前端
javascript
react
其它
传送门
cn2linux
行动起来,活在当下
累计撰写
128
篇文章
累计创建
1
个标签
累计收到
0
条评论
栏目
首页
Linux
服务部署
Nginx
MySQL
Docker
Jenkins
Python
Golang
前端
javascript
react
其它
传送门
目 录
CONTENT
最新文章
草稿:openssl 报错
说明 libssl.so.1.1: cannot open shared object file: No such file or directory Centos7 默认提供的 openssl 版本是1.0.2的,某些php扩展或者其他软件依赖1.1以上版本。 执行 openssl version
2023-12-15
14
0
0
Linux:Centos7 编译安装 openssl
### 设置环境变量 version=1.1.1e url=https://www.openssl.org install_path=/opt/openssl-${version} 官网地址: https://www.openssl.org/source/ 腾讯云镜像地址:https://mirro
2023-12-15
15
0
0
草稿:Centos7 Firewalld 基本使用
基本操作 注:firewalld 属于centos7的服务,相对iptables firewalld做的相对更加人性化,在设置firewalld 的时候可以使用tab键进行补全 包括后面的参数设置。 启动及关闭firewalld systemctl start firewalld systemctl
2023-12-15
16
0
0
草稿:NPM基本操作 设置仓库
查看NPM当前配置: npm config list 使用config命令指定源仓库 npm config set registry https://registry.npm.taobao.org
2023-12-15
12
0
0
安装部署 安装 acme.sh 及使用
安装 acnme 客户端 curl https://get.acme.sh | sh -s email=my@example.com acme github https://github.com/acmesh-official/acme.sh 设置 zerossl a
2023-12-15
419
0
0
服务部署
MacOS Rust交叉编译Linux平台
安装 Linux libc rustup target add x86_64-unknown-linux-musl 编译 cargo build --release --target=x86_64-unknown-linux-musl 请按照以下步骤进行操作: 打开 .cargo/config 文件
2023-12-15
29
0
0
其它
react 配置代理问题
参考网址 [react proxy is not a function](https://www.jianshu.com/p/41237d2b94f8) [react反向代理使用http-proxy-middleware ](https://www.cxyzjd.com/article/jenie/
2023-12-15
14
0
0
react
Linux:CentOS7 升级到Bash5
设置环境变量 bash_version=5.1.18 更新新系统并安装依赖 sudo yum -y update sudo yum -y install curl sudo yum -y groupinstall "Development Tools"
2023-12-15
62
0
0
服务部署
CentOS 8 挂载新硬盘
## 1. 以root身份登录系统 ## 2. 列出磁盘分区 [root@localhost /]# fdisk -l ## 3. 找到还没有分区的磁盘(磁盘下没有Device的即为未分区磁盘),创建分区并格式化 [root@localhost ~]# fdisk /dev/vdb ## 4.
2023-12-15
9
0
0
Linux
草稿:centos 8 安装redis 6
[How to install & configure Redis 6 on Rocky Linux/Centos 8](https://citizix.com/how-to-install-configure-redis-6-on-rocky-linux-centos-8/)
2023-12-15
13
0
0
服务部署
1
...
9
10
11
12
13