Linux
文章平均质量分 61
Linux使用技巧
superSubfn
人言未必犹尽,听话只听三分
展开
-
Linux安装Redis
1. 下载Redis安装包(以6.0.1版本为例)官网地址: Download | RedisRedisYou can download the last Redis source files here. For additional options, see the Redis downloads section below.Stable (6.2)Redis 6.2 …https://redis.io/download2.解压安装包将安装包放到指定目录后执行解压命令:tar -z.原创 2022-04-13 15:06:30 · 922 阅读 · 0 评论 -
CentOS安装MySql8.0
1.下载MySql安装包官网地址: MySQL :: Download MySQL Community Serverhttps://dev.mysql.com/downloads/mysql/2.查看是否有安装 mariaDB,有则卸载rpm -qa | grep mariadb // 查看mariaDB版本rpm -e 文件名 --nodeps // 卸载mariaDB3.通过 rz 命令将安装包上传都指定目录(以 /usr/local/mysql 为例)4....原创 2022-04-13 14:52:08 · 254 阅读 · 0 评论 -
Linux安装iptables防火墙
1. 查询是否有安装打开/etc/sysconfig/目录,查看是否有 iptables文档2. 安装iptables和iptables-serviceservice iptables status // 检查是否安装了iptablesyum install -y iptables // 安装iptablesyum update iptables // 升级iptablesyum install iptables-services // 安装ipt原创 2022-04-13 14:34:04 · 3513 阅读 · 0 评论