nginx linux amp 16

Nginx——配置代理-服务的代理

docker 容器的配置 docker run --name nginx-t -p 1234:8099 -d nginx:bitmap 命令 -p 是用来进行端口映射的,它可以穿透防火墙的限制,将容器内部的端口映射到宿主机(主机)的对应端口上, 从而可以通过宿主机访问容器内部的应用服务 这个命令将运 ......
Nginx

linux ubantu新建用户su后不显示用户名、路径等前缀问题解决方案

现象: 解决方案: 打开如下文件,找到自己新建的用户的那一行。 也就是这一行: zongze:x:1008:1009::/home/zongze:/bin/sh 改成: zongze:x:1008:1009::/home/zongze:/bin/bash 就可以了。效果如下: ......
用户 前缀 路径 用户名 解决方案

Linux更新PHP版本

Linux 服务器的 PHP 版本升级 查看当前 PHP 版本 php -v 卸载已安装的 PHP yum remove php-common 安装 EPEL 源 yum install epel-release 安装 remi 源 yum install http://rpms.remirepo. ......
版本 Linux PHP

Navicat16.10升级16.3.4 连接丢失问题

更新完版本之后,连接全部丢失。(虽然不理解为什么不向下兼容) 先找到旧版的数据地址 # 旧版数据地址 ~/Library/Application Support/PremiumSoft CyberTech/Navicat CC/Common/Settings/0/0 新版的数据地址 # 新版数据地址 ......
Navicat 问题 16.10 16 10

ldap sssd授权linux登录

业务系统越来越多,服务器也越来越多,本文主要是给企业用户减少账号密码管理难度的。 目的:使用ldap统一管理账号密码,实现单点登录linux。 一点废话,网上找了很多文章,看得云里雾里,搞了几天算是搞明白了一点,记录一下,希望有人能用得上。 小白文,接触过一点linux的都可以尝试一下 环境准备 l ......
linux ldap sssd

"nginx.conf" E514 : write error (file system full?)

出现这段提示,可以先看看磁盘空间是不是满了 不看不知道,一看吓一跳,什么时候我的业务这么丰富了 下面开始查看哪个位置占用空间了 查看各目录大小 du -h --max-depth=1 / 再次确认详细的地方 du -h --max-depth=1 /home 这里就确认了具体的位置 这个时候先删除m ......
quot system nginx error write

YAML示例:nginx使用configmap配置并开启镜像

# use nginx to be a proxy, mirror each request to other services, 10.96.2.58 send back the reponse to user client. m1 and m2 just mirror the request, ......
示例 configmap 镜像 nginx YAML

一些Mybatis的知识点&易错点总结

1、映射文件配置容易出错 在映射文件中,我们很习惯想要在sql语句后面添加';'。 结果是报了一堆错误: 你能从下面的配置中找到哪些错误? 总共有三处错误: 建议使用parameterType,而不是使用"parameterMap" 不使用$进行绑定数据,而是使用#{} sql语句后面不要以";"结 ......
知识点 Mybatis 知识 amp

Dynamics 365 Finance & Operations with Power Automate

Hello Dynamics Community, Update 1st December 2021 / I will really suggest to read my recent article (2 years after his one about a game changer on th ......
Operations Dynamics Automate Finance Power

Linux安装chrome浏览器

1.下载安装包 [root@xiaobing chrome]# wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm --2024-01-12 15:25:47-- https://dl.goo ......
浏览器 chrome Linux

Cisco Secure Client 5.1.1.42 (macOS, Linux, Windows & iOS, Andrord) - 思科安全客户端下载

Cisco Secure Client 5.1.1.42 (macOS, Linux, Windows & iOS, Andrord) - 思科安全客户端下载 思科安全客户端(包括 AnyConnect) 请访问原文链接:https://sysin.org/blog/cisco-secure-cli ......
客户端 Andrord Windows 客户 Secure

linux使用tar进行解压缩文件

压缩 tar -cvf jpg.tar *.jpg //将目录里所有jpg文件打包成tar.jpg tar -czf jpg.tar.gz *.jpg //将目录里所有jpg文件打包成jpg.tar后,并且将其用gzip压缩,生成一个gzip压缩过的包,命名为jpg.tar.gz tar -cjf ......
文件 linux tar

linux 查看lv占用哪个pv

lvdisplay -m LV [root@lvm ~]# lvdisplay -m /dev/datavg/gfslv Logical volume LV Path /dev/datavg/gfslv LV Name gfslv VG Name datavg LV UUID 7RTU9u-t5X9 ......
linux

linux每天定时备份数据库并删除十天前数据详细步骤

每天定时备份数据库需要用到Linux的定时任务,利用Linux的crondtab 命令。下面通过本文给大家带来了linux每天定时备份数据库并删除十天前数据详细步骤,感兴趣的朋友一起看看吧 每天定时备份数据库需要用到Linux的定时任务,利用Linux的crondtab 命令。下面我们来看详细步骤: ......
数据 备份 步骤 数据库 linux

Linux换系统盘后引导修复

早期系统装在SSD盘上,现由于磁盘IO性能问题需要将SSD盘用作于业务。 而SSD通常容量不是很大,所以需要将操作系统挪走,系统迁移可以参考基于lvm的系统盘在线迁移 需要修改的地方为 /etc/fstab /boot/efi/EFI/centos/grub.cfg uefi引导菜单 注:此次操作可 ......
系统 Linux

nginx反向代理时报no resolver defined to resolve

错误日志 2024/01/11 05:29:22 [error] 29#29: *44 no resolver defined to resolve www.test.com, client: 127.0.0.1, server: _, request: "GET /test/123 HTTP/1. ......
resolver 时报 defined resolve nginx

Linux Shell接收键盘输入

1.read命令格式 read [选项] [变量名] 选项: -p “提示信息”:在等待read输入时,输出提示信息 -t “秒数”: read命令会一致等待用户输入,使用此选项可以指定等待时间 -n “字符数”: read命令只接受指定的字符数,就会执行 -s: 隐藏输入的数据,适用于机密信息的输 ......
键盘 Linux Shell

Linux多命令顺序执行与管道符

1.多命令顺序执行 实例测试: 2.管道符 实例测试: 3.grep命令 实例测试: ......
管道 顺序 命令 Linux

linux服务器webdriver启动Chrome浏览器失败

碰到一个linux启动Chrome浏览器失败的奇怪问题,查了很久资料,问题终于解决了,特此记录一下 我的情况是,一开始运维给了一个deploy的账号去部署项目UI自动化测试项目,项目是运行没有问题的,后边运维说要回收掉原有的deploy账号,给了一个dev的账号,结果项目就运行不起来了,报错也知识提 ......
webdriver 浏览器 服务器 Chrome linux

One Dynamics One Platform - Dataverse C# Plugin for Dynamics 365 F&O

Hello the Community, back from the D365 FO Summit 2023 in Lisboa, after 3 years it was really good to meet in-person again after Covid ! Thanks all th ......
Dynamics One Dataverse Platform Plugin

深入剖析 Linux Cgroups 子系统:资源精细管理

本章主要演示以下 cgroups 下各个 subsystem 的作用。 根据难易程度,依次演示了 pids 、cpu 和 memory 3 个 subsystem 的使用。 注:本文所有操作在 Ubuntu20.04 下进行。 如果你对云原生技术充满好奇,想要深入了解更多相关的文章和资讯,欢迎关注微 ......
子系统 Cgroups 资源 Linux

Nginx长连接学习之二

Nginx长连接学习之二 背景 距离最开始学习Nginx的长连接已经一年半; 距离最开始学习Linux的TCP内核参数也已经过去了一年. 最近产品再次出现了TCP链接相关的问题. 因为一开始不知道部署模式已经变更, 我先排除了内存参数的问题. 结果很打脸, 还是内核参数问题导致的, 但是可能比较隐晦 ......
Nginx

[linux kernel] struct pid && the way the kernel used to cast uint32_t pid to struct task_struct

摘抄内容引用自linux kernel document description pre the initialization and the manage of the struct pid is use IDR.(implement by hash table->(why not array?- ......
struct kernel task_struct amp pid

linux环境下配置maven

下载地址 #maven环境配置(已经配置好jdk) vim /etc/profile export MAVEN_HOME=/mnt/maven/apache-maven-3.6.3 export PATH=${MAVEN_HOME}/bin:${PATH} #使配置生效 source /etc/pr ......
环境 linux maven

linux 下关于路由表的理解

先看一个实例 Destination Gateway Genmask Flags Metric Ref Use Iface default 204.13.154.1 0.0.0.0 UG 0 0 0 eth0 172.17.0.0 0.0.0.0 255.255.0.0 U 0 0 0 docker ......
路由 linux

程序打印进度条, linux c

函数如下: #include <stdio.h> #include <string.h> #include <unistd.h> typedef struct _progress { int cur_size; int sum_size; }progress_t; void progress_bar ......
进度 程序 linux

YAML示例:创建单幅本nginx容器到指定节点及其service

# one rc deployment, schedule it to the node that has a label "ip" equals to "172.18.8.241" apiVersion: apps/v1 kind: Deployment metadata: name: 241-d ......
节点 示例 容器 service nginx

linux 扩展根目录分区

[root]~# fdisk /dev/mmcblk0 The number of cylinders for this disk is set to 60672.There is nothing wrong with that, but this is larger than 1024,and c ......
根目录 linux

[Linux] 常用命令之【md5sum(MD5校验)】

0 序 本文主要参考自: Linux命令之MD5校验md5sum 1 命令概述 1.1 用途 md5sum : 用于计算和校验文件的MD5值。 $ echo "hello world" | md5sum.ex 6f5902ac237024bdd0c176cb93063dc4 *- md5sum 常常 ......
命令 常用 md5sum Linux 5sum

Linux:IP地址设置

IP查询 网卡信息查询:ip addr IP设置 查询到有 2 张网卡,分别为 lo 、eth0。其中 lo 是环回地址 其实需要设置的是 eth0 网卡IP地址,所有网卡的信息设置都在这个目录下:/etc/sysconfig/network-scripts/ 将 et0 设置为静态IP,编辑命令: ......
地址 Linux
共14200篇  :2/474页 首页上一页2下一页尾页