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

广州讯博网络科技有限公司seo管理与优化期末试题

广州讯博网络科技有限公司,seo管理与优化期末试题,韩国网站设计风格,凌风wordpress 百度云目录 1. 概述2. 参考3. 环境4. 部署4.1 操作系统4.1.1 修改系统参数4.1.2 关闭透明大页内存4.1.3 修改系统限制 4.2 安装Redis4.2.1 下载Redis4.2.2 创建redis账号4.2.3 添加Redis环境变量4.2.4 创建Redis使用目录4.2.5 安装Redis4.2.6 手动修改配置文件#xff08;**可跳过**可跳过直接使用4.2.7命令修改**4.2.7 命令修改配置文件4.2.8 Redis使用目录赋权4.2.9 启动Redis验证4.2.10 目录结构 4.3 配置systemd管理4.3.1 编译安装时未使用systemd4.3.2 编译安装时使用了systemd方式4.3.3 加载并验证服务 4.3 部署常见问题4.3.1 编译时环境问题4.3.2 编译时缺少文件 1. 概述 之前一直使用Redis最近遇到一些问题整理Redis的单例安装部署过程记录如下。 2. 参考 链接: Install Redis链接: github-Redis链接: gitcode-Redis 3. 环境 虚机Virtual-Machine-203Ubuntu 22.04Centos7.9也可以Redis 7.2.5 4. 部署 4.1 操作系统 4.1.1 修改系统参数 添加以下系统参数必须 cat /etc/sysctl.conf EOF # Redis 必须使用参数 #定义了系统中每一个端口最大的监听队列的长度默认4096 可调整到8192/16384/32768 net.core.somaxconn 32768# Redis 必须使用参数 # 1表示内核允许分配所有的物理内存而不管当前的内存状态如何,默认0。 vm.overcommit_memory 1# Redis 建议使用参数 # 物理内存使用90%才开始使用swap,默认60也可以设置为0优先使用100%物理内存 vm.swappiness 10# 大于100将更积极的回收cache默认100 vm.vfs_cache_pressure 100EOF添加以下系统参数可选 cat /etc/sysctl.conf EOF # 系统调优参数 # 允许存在time_wait状态的最大数值超过则立刻被清除并且警告 # 默认是262144, ubuntu默认8192防止过多的time_wait导致端口资源被耗尽 net.ipv4.tcp_max_tw_buckets 30000# 开启SYN Cookies当出现SYN 等待队列溢出时启用cookies 来处理。 net.ipv4.tcp_syncookies 1# 该参数决定了,每个网络接口接收数据包的速率比内核处理这些包的速率快时允许送到队列的数据包的最大数目默认1000 net.core.netdev_max_backlog 32768# 表示SYN队列的长度默认2048 net.ipv4.tcp_max_syn_backlog 32768# 建立连接synack 与syn 包重试次数 net.ipv4.tcp_synack_retries 2 net.ipv4.tcp_syn_retries 2EOF参数生效 sysctl -p4.1.2 关闭透明大页内存 关闭透明大页内存动态分配需要关闭让 redis 或 mongo 负责内存管理 cat /etc/rc.local EOF # Redis Mongo建议参数 # Disable Transparent Huge Pages, redis and mongo configure echo never /sys/kernel/mm/transparent_hugepage/enabled echo never /sys/kernel/mm/transparent_hugepage/defrag EOF加载生效 source /etc/rc.local4.1.3 修改系统限制 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 655350# ubuntu 需要针对账号设置 root soft nproc 655350 root hard nproc 655350 root soft nofile 655350 root hard nofile 655350 EOF重启或重新登录生效 或修改当前设置生效 ulimit -n 655350 ulimit -u 655350 4.2 安装Redis 4.2.1 下载Redis 从官网或 github下载需要看一下版本选择没有重大安全问题的版本 https://github.com/redis/redis/releaseshttp://download.redis.io/releases/redis-7.2.5.tar.gz wget http://download.redis.io/releases/redis-7.2.5.tar.gz4.2.2 创建redis账号 useradd -s /sbin/nologin redis4.2.3 添加Redis环境变量 确定Redis安装路径例如/usr/local/redis7.2.5增加环境变量 REDIS_HOME 不要与已有路径冲突 cat /etc/profileEOFexport REDIS_HOME/usr/local/redis7.2.5 PATH\$REDIS_HOME/bin:\$PATH export PATH EOF加载生效查看路径 source /etc/profile echo $PATH4.2.4 创建Redis使用目录 创建Redis使用目录 /usr/local/redis7.2.5REDIS_HOME程序存放目录/var/log/redis日志存放目录/var/run/redis服务PID存放目录/etc/redis配置文件存放目录可选当前默认存放在“程序存放目录”下 mkdir -p ${REDIS_HOME} chown -R redis:redis ${REDIS_HOME} mkdir -p /var/log/redis chown redis:redis /var/log/redis mkdir -p /var/run/redis chown -R redis:redis /var/run/redis # mkdir -p /etc/redis chown -R redis:redis /etc/redis4.2.5 安装Redis 安装可以根据Redis服务启动管理选择安装方式。可提供以下几种方式供选择 使用systemctl命令管理(Centos7、Ubuntu)编译安装时指定 USE_SYSTEMDyes 选项配置systemd服务管理文件时Type使用notify使用systemctl命令管理(Centos7、Ubuntu)编译安装配置systemd服务管理文件时Type使用simple使用service命令管理(Centos6)编译安装配置/etc/init.d下启动文件 Ubuntu支持systemd方式编译安装能够支持Typenotify PREFIX 指定安装路径USE_SYSTEMD 支持systemd # Ubuntu 安装 tar -zxvf redis-7.2.5.tar.gz cd redis-7.2.5 # 安装依赖包 apt install -y libsystemd-dev pkg-config # 可以使用支持systemd方式编译安装能够支持Typenotify make PREFIX${REDIS_HOME} USE_SYSTEMDyes installCentos支持systemd方式编译安装能够支持Typenotify PREFIX 指定安装路径USE_SYSTEMD 支持systemd # Centos 安装 tar -zxvf redis-7.2.5.tar.gz cd redis-7.2.5 # 安装依赖包 yum install -y systemd-notify-devel # 可以使用支持systemd方式编译安装能够支持Typenotify make PREFIX${REDIS_HOME} USE_SYSTEMDyes install其他编译安装可用于service命令如Centos6或systemd的simple PREFIX 指定安装路径 tar -zxvf redis-6.2.9.tar.gz cd redis-6.2.9 make PREFIX${REDIS_HOME} install验证安装版本 ${REDIS_HOME}/bin/redis-server --version4.2.6 手动修改配置文件可跳过直接使用4.2.7命令修改 拷贝配置文件到安装路径下并修改。 cp ./redis.conf ${REDIS_HOME}/ cd ${REDIS_HOME}修改监听地址IPv4和IPv6均监听 #bind 127.0.0.1 -::1 bind * -::*根据需要修改监听端口 # Accept connections on the specified port, default is 6379 (IANA #815344). # If port 0 is specified Redis will not listen on a TCP socket. port 6379修改监听队列长度小于sysctl.conf文件中的somaxconn 设置 # In high requests-per-second environments you need a high backlog in order # to avoid slow clients connection issues. Note that the Linux kernel # will silently truncate it to the value of /proc/sys/net/core/somaxconn so # make sure to raise both the value of somaxconn and tcp_max_syn_backlog # in order to get the desired effect. #tcp-backlog 511 tcp-backlog 4096timeout保持不变配合应用程序保持长连接。 注意它不是超时连接它是空闲后等待多久后关闭。 # Close the connection after a client is idle for N seconds (0 to disable) timeout 0tcp-keepalive保持不变 服务端于探测客户端的检测时间周期。可根据需要调整 tcp-keepalive 300启动后台运行 #daemonize no daemonize yes修改pid文件路径 #pidfile /var/run/redis_6379.pid pidfile /var/run/redis/redis_6379.pid修改日志文件路径 #logfile logfile /var/log/redis/redis_6379.log修改snapshotting配置 需要综合考虑数据是否允许丢失和写入rdb的频率。 这里是允许数据丢失的而且变更的频次不高所以只修改了900秒内有500个变更的值 ################################ SNAPSHOTTING ################################# Save the DB to disk. # # You can set these explicitly by uncommenting the following line. # # save 3600 1 300 100 60 10000 save 3600 1 900 500 60 10000修改了dump.rdb的文件名称 # The filename where to dump the DBdbfilename dump_6379.rdb修改了dump.rdb的存储路径 注意路径是否有足够的磁盘空间。最合理方式应该存储在单独的数据分区创建目录并给redis账号赋权 # dir ./ dir /usr/local/redis/修改连接密码 # requirepass foobaredrequirepass yourpassword重命名危险命令 config命令使用别名其它命令被禁用 # rename-command CONFIG rename-command CONFIG kkconfigrename-command FLUSHALL rename-command FLUSHDB rename-command DEBUG 修改最大客户端连接数 # maxclients 10000 maxclients 50000修改最大内存限制 如果是redis专用服务器建议不超过物理内存的3/4 # maxmemory bytes maxmemory 32GB保持淘汰策略不变-不淘汰 通常情况下应该选择一个淘汰策略而不是不淘汰 # maxmemory-policy noeviction打开异步操作防止单线程阻塞 lazyfree-lazy-eviction表示当 Redis 运行内存超过 maxmeory 时是否开启 lazy free 机制删除lazyfree-lazy-expire表示设置了过期时间的键值当过期之后是否开启 lazy free 机制删除lazyfree-lazy-server-del有些指令在处理已存在的键时会带有一个隐式的 del 键的操作比如 rename 命令当目标键已存在Redis 会先删除目标键如果这些目标键是一个 big key就会造成阻塞删除的问题此配置表示在这种场景中是否开启 lazy free 机制删除slave-lazy-flush针对 slave(从节点) 进行全量数据同步slave 在加载 master 的 RDB 文件前会运行 flushall 来清理自己的数据它表示此时是否开启 lazy free 机制删除。lazyfree-lazy-user-del表示是否将 DEL 指令的默认行为替换成 lazy free 机制删除效果就跟 UNLINK 一样。 ############################# LAZY FREEING #################################### lazyfree-lazy-eviction yes lazyfree-lazy-expire yes lazyfree-lazy-server-del yes replica-lazy-flush yes lazyfree-lazy-user-del yes修改慢查询日志设置 ################################## SLOW LOG ################################### # 修改为20000微秒默认是10000微秒 slowlog-log-slower-than 20000 # 修改为保存1000条记录默认128条 slowlog-max-len 10004.2.7 命令修改配置文件 拷贝配置文件到安装路径下并修改。 cp ./redis.conf ${REDIS_HOME}/ cd ${REDIS_HOME}先定义以下变量 PORT Redis服务监听端口MAXMEMORYRedis服务最大内存限制YPWDRedis服务密码 cd ${REDIS_HOME} PORT6379 MAXMEMORY32GB YPWDyourpassword sed -i s|bind 127.0.0.1 -::1| bind * -::* | ./redis.conf \sed -i s|port 6379| port ${PORT}| ./redis.conf \sed -i s|tcp-backlog 511| tcp-backlog 4096| ./redis.conf \sed -i s|daemonize no| daemonize yes| ./redis.conf \sed -i s|pidfile /var/run/redis_6379.pid| pidfile /var/run/redis/redis_${PORT}.pid| ./redis.conf \sed -i s|logfile \\| logfile \/var/log/redis/redis_${PORT}.log\| ./redis.conf \sed -i s|# save 3600 1 300 100 60 10000| save 3600 1 900 500 60 10000| ./redis.conf \sed -i s|# save 3600 1| save 3600 1| ./redis.conf \sed -i s|# save 300 100| save 900 500| ./redis.conf \sed -i s|# save 60 10000| save 60 10000| ./redis.conf \sed -i s|dbfilename dump.rdb| dbfilename dump_${PORT}.rdb| ./redis.conf \sed -i s|dir ./| dir ${REDIS_HOME}/| ./redis.conf \sed -i s|# requirepass foobared| requirepass ${YPWD}| ./redis.conf \sed -i /# rename-command CONFIG \\/ a\\ rename-command CONFIG xkconfig\n rename-command FLUSHALL \n rename-command FLUSHDB \n rename-command DEBUG \n ./redis.conf \sed -i s|# maxclients 10000| maxclients 50000| ./redis.conf \sed -i s|# maxmemory bytes| maxmemory ${MAXMEMORY}| ./redis.conf \sed -i s|lazyfree-lazy-eviction no| lazyfree-lazy-eviction yes| ./redis.conf \sed -i s|lazyfree-lazy-expire no| lazyfree-lazy-expire yes| ./redis.conf \sed -i s|lazyfree-lazy-server-del no| lazyfree-lazy-server-del yes| ./redis.conf \sed -i s|replica-lazy-flush no| replica-lazy-flush yes| ./redis.conf \sed -i s|lazyfree-lazy-user-del no| lazyfree-lazy-user-del yes| ./redis.conf \sed -i s|slowlog-log-slower-than 10000| slowlog-log-slower-than 20000| ./redis.conf \sed -i s|slowlog-max-len 128| slowlog-max-len 1000| ./redis.conf \验证修改配置 cat ${REDIS_HOME}/redis.conf | grep -E ^[^;#]4.2.8 Redis使用目录赋权 # 日志目录赋权 chown -R redis:redis /var/log/redis # 程序目录赋权 chown -R redis:redis /usr/local/redis # pid文件目录赋权 chown -R redis:redis /var/run/redis # 数据目录赋权如果单独指定了数据目录,与配置文件中rdb存储路径一致 #chown -R redis:redis /data/redis/chown -R redis:redis /var/log/redis \chown -R redis:redis /var/run/redis \chown -R redis:redis ${REDIS_HOME} \4.2.9 启动Redis验证 使用普通用户启动Redis sudo -u redis /usr/local/redis/bin/redis-server /usr/local/redis/redis.conf Redis已经监听6379端口 rootVirtual-Machine-203:~# netstat -ntlp| grep redis tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTEN 19821/redis-server tcp6 0 0 ::1:6379 :::* LISTEN 19821/redis-server rootVirtual-Machine-203:~# redis-cli 127.0.0.1:6379 auth yourpassword OK 127.0.0.1:6379 select 0 OK 127.0.0.1:6379 dbsize (integer) 0 127.0.0.1:6379 kkconfig get save 1) save 2) 3600 1 900 500 60 10000 127.0.0.1:6379 4.2.10 目录结构 Redis安装目录 ${REDIS_HOME} /etc/usr/redis7.2.5 bin 程序目录已添加到系统环境变量PATH中dump_port.rdb 持久化rdb文件每个对应一个节点redis.conf 单例服务配置文件 [rootlocalhost redis7.2.5]# tree . ├── bin │ ├── redis-benchmark │ ├── redis-check-aof - redis-server │ ├── redis-check-rdb - redis-server │ ├── redis-cli │ ├── redis-sentinel - redis-server │ └── redis-server ├── dump_6379.rdb └── redis.confRedis日志目录 /var/log/redis 每个Redis服务实例对应一个日志文件 [rootlocalhost redis]# tree . └── redis_6379.logRedis PID目录 /var/run/redis 每个Redis服务实例对应一个PID文件 [rootlocalhost redis]# tree . └── redis_6379.pid4.3 配置systemd管理 4.3.1 编译安装时未使用systemd 非正规做法正常应该编译时指定使用systemd https://github.com/redis/redis/commit/129d14e1431e913426485526663e1a9aac67838c vim /etc/systemd/system/redis-server.service# example systemd service unit file for redis-server # # In order to use this as a template for providing a redis service in your # environment, _at the very least_ make sure to adapt the redis configuration # file you intend to use as needed (make sure to set supervised systemd), and # to set sane TimeoutStartSec and TimeoutStopSec property values in the units # [Service] section to fit your needs. # # Some properties, such as User and Group, are highly desirable for virtually # all deployments of redis, but cannot be provided in a manner that fits all # expectable environments. Some of these properties have been commented out in # this example service unit file, but you are highly encouraged to set them to # fit your needs. # # Please refer to systemd.unit(5), systemd.service(5), and systemd.exec(5) for # more information.[Unit] DescriptionRedis data structure server Documentationhttps://redis.io/documentation #Beforeyour_application.service another_example_application.service #AssertPathExists/var/lib/redis Wantsnetwork-online.target Afternetwork-online.target[Service] # 配置正确的服务和配置文件路径 ExecStart/usr/local/redis/bin/redis-server /usr/local/redis/redis.conf --supervised systemd --daemonize no ## Alternatively, have redis-server load a configuration file: #ExecStart/usr/local/bin/redis-server /path/to/your/redis.conf ExecStop/bin/kill -s TERM $MAINPID LimitNOFILE65535 NoNewPrivilegesyes #OOMScoreAdjust-900 PrivateTmpyes #Typenotify # 默认 simple TimeoutStartSecinfinity TimeoutStopSecinfinity UMask0077 Userredis Groupredis WorkingDirectory/usr/local/redis[Install] WantedBymulti-user.target替换配置文件中Redis路径 如果使用默认路径/usr/local/redis不用执行 # sed -i s|/usr/local/redis|${REDIS_HOME}|g /etc/systemd/system/redis-server.service 4.3.2 编译安装时使用了systemd方式 vim /etc/systemd/system/redis-server.service# example systemd service unit file for redis-server # # In order to use this as a template for providing a redis service in your # environment, _at the very least_ make sure to adapt the redis configuration # file you intend to use as needed (make sure to set supervised systemd), and # to set sane TimeoutStartSec and TimeoutStopSec property values in the units # [Service] section to fit your needs. # # Some properties, such as User and Group, are highly desirable for virtually # all deployments of redis, but cannot be provided in a manner that fits all # expectable environments. Some of these properties have been commented out in # this example service unit file, but you are highly encouraged to set them to # fit your needs. # # Please refer to systemd.unit(5), systemd.service(5), and systemd.exec(5) for # more information.[Unit] DescriptionRedis data structure server Documentationhttps://redis.io/documentation #Beforeyour_application.service another_example_application.service #AssertPathExists/var/lib/redis Wantsnetwork-online.target Afternetwork-online.target[Service] # 配置正确的服务和配置文件路径 ExecStart/usr/local/redis/bin/redis-server /usr/local/redis/redis.conf --supervised systemd --daemonize no ## Alternatively, have redis-server load a configuration file: #ExecStart/usr/local/bin/redis-server /path/to/your/redis.conf LimitNOFILE65535 NoNewPrivilegesyes #OOMScoreAdjust-900 PrivateTmpyes Typenotify #TimeoutStartSecinfinity #TimeoutStopSecinfinity TimeoutStartSec180 TimeoutStopSec180 UMask0077 Userredis Groupredis WorkingDirectory/usr/local/redis[Install] WantedBymulti-user.target替换配置文件中Redis路径 如果使用默认路径/usr/local/redis不用执行 # sed -i s|/usr/local/redis|${REDIS_HOME}|g /etc/systemd/system/redis-server.service 4.3.3 加载并验证服务 加载systemd配置文件每次修改后都需要重新加载 systemctl daemon-reload验证服务启动 # 启动 systemctl start redis-server # 查看进程 netstat -ntlp | grep redis验证服务重启 # 测试重启 systemctl restart redis-server # 查看进程ID是否变更 netstat -ntlp | grep redis验证服务停止 # 测试重启 systemctl stop redis-server # 查看进程ID是否变更 netstat -ntlp | grep redis4.3 部署常见问题 4.3.1 编译时环境问题 现象Ubuntu 没装 GCC make[1]: Entering directory /root/redis-7.2.5/src sh: 1: cc: not found /bin/sh: 1: pkg-config: not found /bin/sh: 1: pkg-config: not found /bin/sh: 1: pkg-config: not foundCC Makefile.dep sh: 1: cc: not foundmake[3]: 离开目录“/public/redis-7.2.5/deps/jemalloc” make[2]: 离开目录“/public/redis-7.2.5/deps”CC adlist.oCC quicklist.oCC ae.oCC anet.oCC dict.oCC server.o In file included from server.c:30:0: server.h:58:31: 致命错误systemd/sd-daemon.h没有那个文件或目录#include systemd/sd-daemon.h^ 编译中断。 make[1]: *** [server.o] 错误 1 make[1]: 离开目录“/public/redis-7.2.5/src” make: *** [install] 错误 2处理Ubuntu 22.04 安装 apt install build-essential pkg-config -y处理如果是CentOS 7.9参考安装 yum install make automake gcc gcc-c kernel-devel systemd-devel -y4.3.2 编译时缺少文件 现象编译时缺文件 /usr/bin/ld: cannot find ../deps/hiredis/libhiredis.a: No such file or directory /usr/bin/ld: cannot find ../deps/lua/src/liblua.a: No such file or directory /usr/bin/ld: cannot find ../deps/hdr_histogram/libhdrhistogram.a: No such file or directory /usr/bin/ld: cannot find ../deps/fpconv/libfpconv.a: No such file or directory /usr/bin/ld: cannot find ../deps/jemalloc/lib/libjemalloc.a: No such file or directory collect2: error: ld returned 1 exit status make[1]: *** [Makefile:403: redis-server] Error 1 make[1]: Leaving directory /root/redis-7.2.5/src make: *** [Makefile:9: install] Error 2处理先编译缺少的文件 rootVirtual-Machine-203:~# cd deps/ rootVirtual-Machine-203:~# make hiredis lua hdr_histogram fpconv jemalloc linenoise# 如果jemalloc仍然不行可以试试以下方式 #rootVirtual-Machine-203:~# cd deps/jemalloc/ #rootVirtual-Machine-203:~# ./configure #rootVirtual-Machine-203:~# make make install_bin install_include install_lib
http://www.w-s-a.com/news/594834/

相关文章:

  • 鹿泉专业网站建设做网站为什么要建站点
  • 加强网站建设和维护工作新闻大全
  • 红鱼洞水库建设管理局网站左右左布局网站建设
  • 手机网站建设地址做网站公
  • 贵州建设厅网站首页网络公司除了做网站
  • 运动鞋建设网站前的市场分析wordpress 搜索框代码
  • app开发网站开发教程平台网站开发的税率
  • 百度网站优化排名加强服务保障满足群众急需i
  • 宁夏建设职业技术学院网站安徽网站优化建设
  • 四川关于工程建设网站硬盘做网站空间
  • 桂林网站制作培训学校外包seo公司
  • 莱州网站建设方案北京装修公司口碑
  • 大型网站建设济南兴田德润团队怎么样韩国女足出线了吗
  • 南通做网站找谁重庆网络推广网站推广
  • ps网站主页按钮怎么做怎样做网站的用户分析
  • 哪个网站做黑色星期五订酒店活动公司网络营销推广软件
  • 岳阳新网网站建设有限公司网页设计基础考试题目
  • 辽宁响应式网站费用海外平台有哪些
  • 杨凌规划建设局网站网站后台建设怎么进入
  • 有赞商城网站建设企业管理咨询是做什么的
  • 提供衡水网站建设中国石化工程建设有限公司邮政编码
  • 大芬地铁站附近做网站工业设计公司报价
  • 建设网站最强永年网站建设
  • 网站分站代理加盟wordpress国内工作室主题
  • 东营远见网站建设公司服装网站建设内容
  • 互助平台网站建设费用百度seo优化怎么做
  • lol英雄介绍网站模板工商局网上注册
  • 电商网站运营策划什么样的网站容易做seo
  • 网站备案需要什么流程怎么创建小程序卖东西
  • 陇西网站建设 室内设计持啊传媒企业推广