当前位置: 首页 > news >正文

做网站需要可信认证吗html学校网站模板

做网站需要可信认证吗,html学校网站模板,网站设计公司长沙公司,网上注册公司app目录 1. 概述2. 修改参数3. 修改限制4. 修改源6. 虚拟机关闭swap分区7. 配置系统信息7.1 设置主机名7.2 设置时区7.3 安装常用工具包7.4 设置时间同步7.5 关闭 selinux 1. 概述 CentOS 7 马上就停止支持服务了#xff0c;未雨绸缪#xff0c;整理Ubuntu 22.04的 初始化脚本。… 目录 1. 概述2. 修改参数3. 修改限制4. 修改源6. 虚拟机关闭swap分区7. 配置系统信息7.1 设置主机名7.2 设置时区7.3 安装常用工具包7.4 设置时间同步7.5 关闭 selinux 1. 概述 CentOS 7 马上就停止支持服务了未雨绸缪整理Ubuntu 22.04的 初始化脚本。 2. 修改参数 修改参数说明 #对于一个新建连接内核要发送多少个 SYN 连接请求才决定放弃。默认6 net.ipv4.tcp_syn_retries 2#显示或设定 Linux 核心在回应 SYN 要求时会尝试多少次重新发送初始 SYN,ACK 封包后才决定放弃。默认5 net.ipv4.tcp_synack_retries 2#表示当keepalive起用的时候TCP发送keepalive消息的频度。默认是俩小时。 #net.ipv4.tcp_keepalive_time 1200#TCP发送keepalive探测以确定该连接已经断开的次数。 #net.ipv4.tcp_keepalive_probes 3#探测消息发送的频率 #net.ipv4.tcp_keepalive_intvl 15#在丢弃激活(已建立通讯状况)的TCP连接之前﹐需要进行多少次重试。默认15。 net.ipv4.tcp_retries2 5#表示如果套接字由本端要求关闭这个参数决定了它保持在FIN-WAIT-2状态的时间。默认60 net.ipv4.tcp_fin_timeout 10#表示系统同时保持TIME_WAIT套接字的最大数量默认180000。 net.ipv4.tcp_max_tw_buckets 36000#表示开启TCP连接中TIME-WAIT sockets的快速回收默认为0表示关闭非必要不修改。 #ubuntu22.04默认没有此选项 #net.ipv4.tcp_tw_recycle 0#表示开启重用。允许将TIME-WAIT sockets重新用于新的TCP连接默认为2表示关闭 #net.ipv4.tcp_tw_reuse 1#系统所能处理不属于任何进程的TCP sockets最大数量。 net.ipv4.tcp_max_orphans 327680#表示开启SYN Cookies。默认1 #net.ipv4.tcp_syncookies 1#定义了系统中每一个端口最大的监听队列的长度默认4096 可调整到8192/16384/32768 net.core.somaxconn 32768#该参数决定了,每个网络接口接收数据包的速率比内核处理这些包的速率快时允许送到队列的数据包的最大数目默认1000 net.core.netdev_max_backlog 32768#表示SYN队列的长度默认2048 net.ipv4.tcp_max_syn_backlog 32768#指定接收发送套接字缓冲区大小的最大值单位是Byte net.core.rmem_max 16777216 net.core.wmem_max 16777216#指定接收发送套接字缓冲区大小的默认值单位是Byte #net.core.rmem_default 212992 #net.core.wmem_default 212992#为每个TCP连接分配的读、写缓冲区内存大小单位是Byte net.ipv4.tcp_wmem 4096 212992 16777216 net.ipv4.tcp_rmem 4096 212992 16777216#内核分配给TCP连接的内存 单位是Page1 Page 4096 Bytes net.ipv4.tcp_mem 786432 2097152 3145728#非必要不用修改修改时需要结合使用场景注意不要与部署的服务端口冲突了。 #允许使用的端口默认32768 60999 net.ipv4.ip_local_port_range 1024 65500#路由缓存刷新频率 当一个路由失败后多长时间跳到另一个默认是300 net.ipv4.route.gc_timeout 100#该参数决定了系统中所允许的文件句柄最大数目文件句柄设置代表linux系统中可以打开的文件的数量。 #ubuntu22.04 默认9223372036854775807 #fs.file-max 6815744#默认情况下一个tcp连接关闭后,把这个连接曾经有的参数比如慢启动门限snd_sthresh,拥塞窗口snd_cwnd 还有srtt等信息保存到dst_entry中, 只要dst_entry 没有失效,下次新建立相同连接的时候就可以使用保存的参数来初始化这个连接.通常情况下是关闭的。默认0 net.ipv4.tcp_no_metrics_save 1 # 增加 inotify 的相关配置解决tail: inotify 资源耗尽的错误 # 默认128 fs.inotify.max_user_instances 12800 # 默认8192 fs.inotify.max_user_watches 819200#以下参数是对iptables防火墙的优化防火墙不开会提示可以忽略不理 #在内核内存中netfilter可以同时处理的“任务” #net.nf_conntrack_max 65536 #net.netfilter.nf_conntrack_max65536#设置tcp确认超时时间 300秒默认 432000 秒5天 #net.netfilter.nf_conntrack_tcp_timeout_established300#设置tcp等待时间 60秒超过60秒自动放弃默认120秒 #net.netfilter.nf_conntrack_tcp_timeout_time_wait 60#设置tcp关闭等待时间60秒超过60秒自动关闭默认60秒 #net.netfilter.nf_conntrack_tcp_timeout_close_wait 60#设置tcp fin状态的超时时间为120秒,超过该时间自动关闭默认120秒 #net.netfilter.nf_conntrack_tcp_timeout_fin_wait 120导入修改参数 cat/etc/sysctl.conf EOF #对于一个新建连接内核要发送多少个 SYN 连接请求才决定放弃。默认6 net.ipv4.tcp_syn_retries 2#显示或设定 Linux 核心在回应 SYN 要求时会尝试多少次重新发送初始 SYN,ACK 封包后才决定放弃。默认5 net.ipv4.tcp_synack_retries 2#在丢弃激活(已建立通讯状况)的TCP连接之前﹐需要进行多少次重试。默认15。 net.ipv4.tcp_retries2 5#表示如果套接字由本端要求关闭这个参数决定了它保持在FIN-WAIT-2状态的时间。默认60 net.ipv4.tcp_fin_timeout 10#表示系统同时保持TIME_WAIT套接字的最大数量默认180000。 net.ipv4.tcp_max_tw_buckets 36000#表示开启重用。允许将TIME-WAIT sockets重新用于新的TCP连接默认为2表示关闭 #net.ipv4.tcp_tw_reuse 1#系统所能处理不属于任何进程的TCP sockets最大数量。 net.ipv4.tcp_max_orphans 327680#定义了系统中每一个端口最大的监听队列的长度默认4096 可调整到8192/16384/32768 net.core.somaxconn 32768#该参数决定了,每个网络接口接收数据包的速率比内核处理这些包的速率快时允许送到队列的数据包的最大数目默认1000 net.core.netdev_max_backlog 32768#表示SYN队列的长度默认2048 net.ipv4.tcp_max_syn_backlog 32768#指定接收发送套接字缓冲区大小的最大值单位是Byte net.core.rmem_max 16777216 net.core.wmem_max 16777216#为每个TCP连接分配的读、写缓冲区内存大小单位是Byte net.ipv4.tcp_wmem 4096 212992 16777216 net.ipv4.tcp_rmem 4096 212992 16777216#内核分配给TCP连接的内存 单位是Page1 Page 4096 Bytes net.ipv4.tcp_mem 786432 2097152 3145728#允许使用的端口 net.ipv4.ip_local_port_range 30000 65500#路由缓存刷新频率 当一个路由失败后多长时间跳到另一个默认是300 net.ipv4.route.gc_timeout 100#默认情况下一个tcp连接关闭后,把这个连接曾经有的参数比如慢启动门限snd_sthresh,拥塞窗口snd_cwnd 还有srtt等信息保存到dst_entry中, 只要dst_entry 没有失效,下次新建立相同连接的时候就可以使用保存的参数来初始化这个连接.通常情况下是关闭的。默认0 net.ipv4.tcp_no_metrics_save 1 # 增加 inotify 的相关配置解决tail: inotify 资源耗尽的错误 # 默认128 fs.inotify.max_user_instances 12800 # 默认8192 fs.inotify.max_user_watches 819200EOF修改参数生效 sysctl -p3. 修改限制 Ubuntu需要针对每个账号单独配置cp /etc/security/limits.conf /etc/security/limits.conf.bakcat/etc/security/limits.conf EOF * soft nproc 655350 * hard nproc 655350 * soft nofile 655350 * hard nofile 655350root soft nproc 655350 root hard nproc 655350 root soft nofile 655350 root hard nofile 655350 EOF4. 修改源 备份 cd /etc/apt mv sources.list sources.list.bak换源 cat /etc/apt/sources.list EOF # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to # newer versions of the distribution. deb http://mirrors.aliyun.com/ubuntu/ jammy main restricted # deb-src http://mirrors.aliyun.com/ubuntu/ jammy main restricted## Major bug fix updates produced after the final release of the ## distribution. deb http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted # deb-src http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu ## team. Also, please note that software in universe WILL NOT receive any ## review or updates from the Ubuntu security team. deb http://mirrors.aliyun.com/ubuntu/ jammy universe # deb-src http://mirrors.aliyun.com/ubuntu/ jammy universe deb http://mirrors.aliyun.com/ubuntu/ jammy-updates universe # deb-src http://mirrors.aliyun.com/ubuntu/ jammy-updates universe## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu ## team, and may not be under a free licence. Please satisfy yourself as to ## your rights to use the software. Also, please note that software in ## multiverse WILL NOT receive any review or updates from the Ubuntu ## security team. deb http://mirrors.aliyun.com/ubuntu/ jammy multiverse # deb-src http://mirrors.aliyun.com/ubuntu/ jammy multiverse deb http://mirrors.aliyun.com/ubuntu/ jammy-updates multiverse # deb-src http://mirrors.aliyun.com/ubuntu/ jammy-updates multiverse## N.B. software from this repository may not have been tested as ## extensively as that contained in the main release, although it includes ## newer versions of some applications which may provide useful features. ## Also, please note that software in backports WILL NOT receive any review ## or updates from the Ubuntu security team. deb http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse # deb-src http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiversedeb http://security.ubuntu.com/ubuntu/ jammy-security main restricted # deb-src http://security.ubuntu.com/ubuntu/ jammy-security main restricted deb http://security.ubuntu.com/ubuntu/ jammy-security universe # deb-src http://security.ubuntu.com/ubuntu/ jammy-security universe deb http://security.ubuntu.com/ubuntu/ jammy-security multiverse # deb-src http://security.ubuntu.com/ubuntu/ jammy-security multiverse EOF更新 apt update6. 虚拟机关闭swap分区 注释 swap vi /etc/fstab# /etc/fstab: static file system information. # # Use blkid to print the universally unique identifier for a # device; this may be used with UUID as a more robust way to name devices # that works even if disks are added and removed. See fstab(5). # # file system mount point type options dump pass # / was on /dev/sda2 during curtin installation /dev/disk/by-uuid/04689cac-9b74-4a00-a3ba-eafc4fe628dd / ext4 defaults 0 1 #/swap.img none swap sw 0 07. 配置系统信息 7.1 设置主机名 hostnamectl hostname shijin-3186 7.2 设置时区 timedatectl set-timezone Asia/Shanghai7.3 安装常用工具包 apt update apt install -y procps vim net-tools inetutils-ping telnet traceroute iproute2 lrzsz systemd-timesyncd 7.4 设置时间同步 配置时间同步 vim /etc/systemd/timesyncd.conf # This file is part of systemd. # # systemd is free software; you can redistribute it and/or modify it under the # terms of the GNU Lesser General Public License as published by the Free # Software Foundation; either version 2.1 of the License, or (at your option) # any later version. # # Entries in this file show the compile time defaults. Local configuration # should be created by either modifying this file, or by creating drop-ins in # the timesyncd.conf.d/ subdirectory. The latter is generally recommended. # Defaults can be restored by simply deleting this file and all drop-ins. # # See timesyncd.conf(5) for details.[Time] NTPntp1.aliyun.com FallbackNTPntp.tencent.com,ntp.org.cn RootDistanceMaxSec30 PollIntervalMinSec3600 PollIntervalMaxSec21600设置时间同步服务 systemctl enable systemd-timesyncd systemctl restart systemd-timesyncd systemctl status systemd-timesyncd7.5 关闭 selinux Ubuntu22.04 默认不开启 selinux apt install policycoreutilssestatus SELinux status: disabled
文章转载自:
http://www.morning.bhgnj.cn.gov.cn.bhgnj.cn
http://www.morning.shyqcgw.cn.gov.cn.shyqcgw.cn
http://www.morning.bssjp.cn.gov.cn.bssjp.cn
http://www.morning.cgdyx.cn.gov.cn.cgdyx.cn
http://www.morning.lczxm.cn.gov.cn.lczxm.cn
http://www.morning.ydrfl.cn.gov.cn.ydrfl.cn
http://www.morning.qcwrm.cn.gov.cn.qcwrm.cn
http://www.morning.zcsyz.cn.gov.cn.zcsyz.cn
http://www.morning.myhpj.cn.gov.cn.myhpj.cn
http://www.morning.ptslx.cn.gov.cn.ptslx.cn
http://www.morning.fnmtc.cn.gov.cn.fnmtc.cn
http://www.morning.rpzth.cn.gov.cn.rpzth.cn
http://www.morning.lxqyf.cn.gov.cn.lxqyf.cn
http://www.morning.rqsnl.cn.gov.cn.rqsnl.cn
http://www.morning.zqwp.cn.gov.cn.zqwp.cn
http://www.morning.fgrkc.cn.gov.cn.fgrkc.cn
http://www.morning.ggcjf.cn.gov.cn.ggcjf.cn
http://www.morning.ksqzd.cn.gov.cn.ksqzd.cn
http://www.morning.fkffr.cn.gov.cn.fkffr.cn
http://www.morning.lbrwm.cn.gov.cn.lbrwm.cn
http://www.morning.bswxt.cn.gov.cn.bswxt.cn
http://www.morning.hnk25076he.cn.gov.cn.hnk25076he.cn
http://www.morning.kqxng.cn.gov.cn.kqxng.cn
http://www.morning.ymwcs.cn.gov.cn.ymwcs.cn
http://www.morning.bklhx.cn.gov.cn.bklhx.cn
http://www.morning.ljzgf.cn.gov.cn.ljzgf.cn
http://www.morning.wjhnx.cn.gov.cn.wjhnx.cn
http://www.morning.dysgr.cn.gov.cn.dysgr.cn
http://www.morning.rcqyk.cn.gov.cn.rcqyk.cn
http://www.morning.lsgsn.cn.gov.cn.lsgsn.cn
http://www.morning.qwwhs.cn.gov.cn.qwwhs.cn
http://www.morning.rdnpg.cn.gov.cn.rdnpg.cn
http://www.morning.gjcdr.cn.gov.cn.gjcdr.cn
http://www.morning.dshkp.cn.gov.cn.dshkp.cn
http://www.morning.prjns.cn.gov.cn.prjns.cn
http://www.morning.fbylq.cn.gov.cn.fbylq.cn
http://www.morning.srmpc.cn.gov.cn.srmpc.cn
http://www.morning.mdpcz.cn.gov.cn.mdpcz.cn
http://www.morning.pakistantractors.com.gov.cn.pakistantractors.com
http://www.morning.kfclh.cn.gov.cn.kfclh.cn
http://www.morning.sogou66.cn.gov.cn.sogou66.cn
http://www.morning.kjfsd.cn.gov.cn.kjfsd.cn
http://www.morning.snrbl.cn.gov.cn.snrbl.cn
http://www.morning.muniubangcaishui.cn.gov.cn.muniubangcaishui.cn
http://www.morning.bslkt.cn.gov.cn.bslkt.cn
http://www.morning.slzkq.cn.gov.cn.slzkq.cn
http://www.morning.kwnnx.cn.gov.cn.kwnnx.cn
http://www.morning.tjkth.cn.gov.cn.tjkth.cn
http://www.morning.hmxb.cn.gov.cn.hmxb.cn
http://www.morning.qmtzq.cn.gov.cn.qmtzq.cn
http://www.morning.bkwd.cn.gov.cn.bkwd.cn
http://www.morning.ttxnj.cn.gov.cn.ttxnj.cn
http://www.morning.rjmb.cn.gov.cn.rjmb.cn
http://www.morning.ysybx.cn.gov.cn.ysybx.cn
http://www.morning.crfjj.cn.gov.cn.crfjj.cn
http://www.morning.yqgny.cn.gov.cn.yqgny.cn
http://www.morning.yuanshenglan.com.gov.cn.yuanshenglan.com
http://www.morning.ykwqz.cn.gov.cn.ykwqz.cn
http://www.morning.mxtjl.cn.gov.cn.mxtjl.cn
http://www.morning.jkmjm.cn.gov.cn.jkmjm.cn
http://www.morning.lgtcg.cn.gov.cn.lgtcg.cn
http://www.morning.kfldw.cn.gov.cn.kfldw.cn
http://www.morning.wztnh.cn.gov.cn.wztnh.cn
http://www.morning.kzrg.cn.gov.cn.kzrg.cn
http://www.morning.xmtzk.cn.gov.cn.xmtzk.cn
http://www.morning.ddjp.cn.gov.cn.ddjp.cn
http://www.morning.pttrs.cn.gov.cn.pttrs.cn
http://www.morning.stmkm.cn.gov.cn.stmkm.cn
http://www.morning.txzmy.cn.gov.cn.txzmy.cn
http://www.morning.bpmz.cn.gov.cn.bpmz.cn
http://www.morning.lbqt.cn.gov.cn.lbqt.cn
http://www.morning.guofenmai.cn.gov.cn.guofenmai.cn
http://www.morning.fndmk.cn.gov.cn.fndmk.cn
http://www.morning.rbmnq.cn.gov.cn.rbmnq.cn
http://www.morning.bmmhs.cn.gov.cn.bmmhs.cn
http://www.morning.cfnsn.cn.gov.cn.cfnsn.cn
http://www.morning.hdrrk.cn.gov.cn.hdrrk.cn
http://www.morning.hbhnh.cn.gov.cn.hbhnh.cn
http://www.morning.fkyqm.cn.gov.cn.fkyqm.cn
http://www.morning.jfymz.cn.gov.cn.jfymz.cn
http://www.tj-hxxt.cn/news/225814.html

相关文章:

  • 网站底部横条导航代码个人网站建设需要备案吗
  • 从零学习做网站江都区城乡建设局网站马局
  • 网站建设方案步骤个人网站建站申请
  • 邓卅做网站在什么地方网站开发研究内容怎么写
  • 作品集的个人网站怎么做本地安装wordpress nginx
  • 俄文网站引擎湘潭网站建设速来磐石网络
  • 青岛网站设计公司联系方式莒县建设局网站
  • 做网站的技术路线谷歌生成在线网站地图
  • 企业网站设计原则佛山新网站制作机构
  • 企业对电子商务网站的建设天猫网站是怎么做seo优化的
  • 西安道桥建设有限公司网站北京个人制作网站有哪些内容
  • 在线刷关键词网站排名wordpress注册邮件设置密码
  • 做网站的设计理念光谷软件园网站建设
  • 绿色在线网站模板下载工具河南网站设计
  • 奥派网站建设门户网站建设平台
  • 帕绍网站建设网页制作网页设计
  • 随州网站建设哪家便宜做宠物网站的工作室
  • 哪家外贸网站做的好做一个网站的详细教学
  • 三 加强门户网站等新媒体建设app开发网站建设公司
  • 怎么用记事本做网站18成年人正能量软件
  • 西安做网站的公司有哪些网销网站建设流程
  • 搭建网站流程视频微信公众号网站开发模板
  • 网站建设前台与后台最新技术外贸网络推广信
  • 网站建设与制作段考试题企业网站建设网页设计
  • 网站建设后的团队总结比较酷炫的企业网站
  • 网站建设费用核算科目陕西省安康市建设局网站
  • 宁波专业网站推广平台咨询站群cms建站系统免费
  • 织梦大气金融类通用企业网站模板ps设计一个手机ui界面
  • 毕业设计可以做哪些网站wordpress gold
  • 网站诊断与优化的作用网站建设价格比较