51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

网络运营

Ubuntu怎么使用 root 用户登录(xshell登录)

Ubuntu怎么使用 root 用户登录(xshell登录)

厉飞雨 阅读(83) 评论(0) 赞(7)

Ubuntu怎么使用 root 用户登录 ### (1)首先设置root 密码 Ubuntu怎么设置root密码 : [连接](https://51tbox.com/) ### (2)编辑配置文件 sudo vi /etc/ssh/sshd_config ![](http://static.51tbox.com/static/2024-08-29/col/...

ubuntu安装-24.04

ubuntu安装-24.04

厉飞雨 阅读(59) 评论(0) 赞(6)

ubuntu安装 ubuntu-20.04.1-live-server-amd64 https://www.cnblogs.com/kirin365/articles/16335482.html Ubuntu 24.04 (2024年5月10日 最新的) (1) 下载 https://ubuntu.com/download/server 这里因为我平时用python ...

Ubuntu怎么设置root密码(乌班图)

Ubuntu怎么设置root密码(乌班图)

厉飞雨 阅读(68) 评论(0) 赞(8)

桌面版 没有 安装openssh ,需要安装 sudo passwd root ![](http://static.51tbox.com/static/2024-08-29/col/b2e8bb79693f88a639b9b99baae36615/04c2fde799a940cba0d89ea654f31c1e.png.jpg) 输入新密码 输入 1 简单的密...

nginx 安装-rpm(离线安装)

nginx 安装-rpm(离线安装)

厉飞雨 阅读(75) 评论(0) 赞(5)

比如启用四层stream 转发的时候 或者加点监控等其他插件 , rmp 就不合适了,需要编译安装 ### 1.官网获取rpm安装包 创建目录 /usr/local/nginx,将rpm包下载到该目录下 mdkir /usr/local/nginx wget https://nginx.org/packages/centos/7/x86_64/RPMS...

nginx autoindex 案例

nginx autoindex 案例

厉飞雨 阅读(78) 评论(0) 赞(6)

这里一定注意 alias 和root 的区别, 最好用 alias 能方便控制路径 cat autoindex.conf server { listen 60081; server_name baimeidashu.com; charset utf-8; ...

Nginx Ingress 高并发实践

Nginx Ingress 高并发实践

厉飞雨 阅读(81) 评论(0) 赞(6)

[容器服务 Nginx Ingress 高并发实践-实践教程-文档中心-腾讯云 (tencent.com)](https://cloud.tencent.com/document/product/457/48142) tan

nginx location匹配及rewrite规则

nginx location匹配及rewrite规则

厉飞雨 阅读(90) 评论(0) 赞(8)

nginx location匹配及rewrite规则 : [连接](https://www.cnblogs.com/blxt/p/12106211.html) nginx 以 "/xxx" 开头的请求代理中去掉xxx部分 ($ 的意思) : [连 接](https://51tbox.com/) Rewrite规则实践 以及实战应用案例(变量使用) :[连...

nginx 编译安装后迁移到其他服务器

nginx 编译安装后迁移到其他服务器

厉飞雨 阅读(95) 评论(0) 赞(7)

nginx 编译安装后迁移到其他服务器 他有内核lib文件的需求,就是所谓的动态和静态连结库这种东西,如果系统没有他就报错了 编译的时候指定prefix 然后整个prefix目录弄走 如果2个系统环境AB 一样,主要是内核版本,我再A上 编译好的 可以完全再B上跑。没问呢提, 放到其他C 上就可能出问题 1- 编译安装: -------- nginx 1.24 编译...