网站首页 站内搜索

搜索结果

查询Tags标签: zone,共有 144条记录
  • 分布式中间件-Nginx(二)

    4、限流定义 limit_conn_zone $server_name(请求限流对象名称) zone=perserveer:10m(请求量大小); ---服务端限流 location /{limit_conn perserver 1;(并发量配置)  proxy_pass http://localhost://xxx; } 缺点:和客户端无关,导致正常客户无法使用 解决方法:客户端…

    2022/3/31 7:20:11 人评论 次浏览
  • [ABP] PostgreSQL在.NET 6.0使用DateTime类型抛出异常:timestamp with time zone

    今晚操起久违的 ABP 框架搭了个新项目:.NET 运行时版本:6.0.3 ABP 版本:v5.2.0-rc.2 版本。 数据库:PostgreSQL v10.x一顿操作猛如虎,直接用 dotnet run 命令执行 DbMigrator 项目,等了一会报错: 日志: 2022-03-27 23:16:12.804 +08:00 [INF] Creating initial mi…

    2022/3/28 2:22:40 人评论 次浏览
  • CentOS7 防火墙(firewall)的操作命令(转载)(4)

    1 firewalld的基本使用 启动: systemctl start firewalld 查看状态: systemctl status firewalld 禁用,禁止开机启动: systemctl disable firewalld 停止运行: systemctl stop firewalld2 配置firewalld-cmd 查看版本: firewall-cmd --version 查看帮助: fire…

    2022/3/27 7:24:42 人评论 次浏览
  • Linux yum仓库&DNS 配置

    1,确定光盘连接 2,创建一个目录 用于做挂载点 mkdir /mnt/dvd 3,挂载 mount /dev/cdrom /mnt/dvd 4,进入yum客户端配置的本地文件 cd/etc/yum.repos.d 移动原有数据到挂载点 mkdir bak mv *.repo bak 5创建一个yum仓库 vim test.repo 格式如下 [name] name= baseu…

    2022/3/26 7:23:00 人评论 次浏览
  • Mysql版本过高的一些问题

    mysql服务使用的是 Server version: 8.0.27 MySQL Community Server - GPL 遇到的一些问题总结一下1  驱动版本过低问题 mysql-connector-java-5.1.37-bin.jar 版本 会遇到 Could not create connection to database server.Exception in thread "main" org…

    2022/3/9 19:16:40 人评论 次浏览
  • 万字整理,肝翻Linux内存管理所有知识点【转】

    转自:https://z.itpub.net/article/detail/42BBAD31534F0B2FE3E856BAB0B2DF34 Linux的内存管理可谓是学好Linux的必经之路,也是Linux的关键知识点,有人说打通了内存管理的知识,也就打通了Linux的任督二脉,这一点不夸张。有人问网上有很多Linux内存管理的内容,为什么…

    2022/3/8 7:14:41 人评论 次浏览
  • 【连接MySQL】The server time zone value 乱码 is unrecognized or represents more than one time zone

    解决方案: 我使用的方案: 在mysql中设置时区,默认为SYSTEM(推荐)set global time_zone=’+8:00’ 再test connnetion就成功了网上还有一些其他方案,比如: 不太清楚为什么, 弄明白了再回来补充

    2022/3/5 19:15:14 人评论 次浏览
  • Linux开启端口

    命令一firewall-cmd --zone=public --add-port=9082/tcp --permanent命令二firewall-cmd --reload结果[root@iZwz99nfk9950xwi21dmmsZ upleaf]# firewall-cmd --zone=public --add-port=9082/tcp --permanent success [root@iZwz99nfk9950xwi21dmmsZ upleaf]# firewall-cm…

    2022/2/28 7:23:08 人评论 次浏览
  • iptables与firewalld

    iptables是centos上老款的防火墙 firewalld是centos上新款的防火墙,在centos 7以后的系统上带 firewalld防火墙白名单添加: firewall-cmd --zone=public --add-service=https //临时 firewall-cmd --permanent --zone=public --add-service=https //永久 开启某个端口:…

    2022/2/25 7:25:53 人评论 次浏览
  • HCIA SEC--ip-link

    2022.2.8 Pretty things should be enjoyed--美玉不该蒙尘1、接口配置IP 接口加入安全域 2、路由(策略路由/普通路由) [FW]policy-based-route [FW-policy-pbr]dis this 2022-02-08 11:48:45.540 # policy-based-route rule name vpc1-r3 source-zone trust source…

    2022/2/8 23:13:08 人评论 次浏览
  • 无法识别或代表多个时区。如果想利用时区支持,必须配置服务器或JDBC驱动程序(通过“serverTimezone”配置属性)以使用更特殊的时区值。

    错误码: java.sql.SQLException: The server time zone value �й���׼ʱ�� is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more spec…

    2022/2/8 14:13:41 人评论 次浏览
  • mysql8 安装与配置文件添加时区

    mysql默认时区选择了CST mysql>show variables like %time_zone%;解决办法:(建议通过修改配置文件来解决)通过命令在线修改:mysql> set time_zone=+8:00;再通过select now()来验证时区:配置文件修改[mysqld]default-time_zone = +8:00 #增加时区的设置避免配置…

    2022/1/26 19:09:40 人评论 次浏览
  • 配置 firewalld centos7

    配置 firewalld centos7systemctl systemctl start firewalld systemctl status firewalld systemctl disable firewalld systemctl stop firewalldfirewalld-cmd# 版本 firewall-cmd --version# 帮助 firewall-cmd --help# 状态 firewall-cmd --state# 查看开方的端…

    2022/1/20 7:19:14 人评论 次浏览
  • 配置 firewalld centos7

    配置 firewalld centos7systemctl systemctl start firewalld systemctl status firewalld systemctl disable firewalld systemctl stop firewalldfirewalld-cmd# 版本 firewall-cmd --version# 帮助 firewall-cmd --help# 状态 firewall-cmd --state# 查看开方的端…

    2022/1/20 7:19:14 人评论 次浏览
  • shell脚本实战(第2版)/人民邮电出版社 脚本21 显示不同时区的时间

    zonedir="/usr/share/zoneinfo/posix"if [ $# -eq 0 ];thentimezone="Shanghai"mixedzone="Asia" elif [ "$1" = "list" ];then(echo "All known time zones and regions defined on this system:"cd $zoned…

    2022/1/19 7:05:52 人评论 次浏览
扫一扫关注最新编程教程