随笔分类 -  linux

摘要:1. 下载: 官网下载: MySQL :: Download MySQL Community Server 2. 解压 将下载好的tar文件放到centos中,目录文件夹名称自定义,解压后得到: [root@localhost mysql]# tar -xvf mysql-8.0.26-1.el7. 阅读全文
posted @ 2023-01-03 22:38 yang7527 阅读(822) 评论(0) 推荐(0)
摘要:进入本地仓库访问位置之后执行命令 1) 远程仓库相关命令 检出仓库:$ git clone git://github.com/jquery/jquery.git 查看远程仓库:$ git remote -v 添加远程仓库:$ git remote add [name] [url] 删除远程仓库:$ 阅读全文
posted @ 2021-04-22 16:05 yang7527 阅读(295) 评论(0) 推荐(0)
摘要:一、查看mariadb的相关包并卸 1.使用 rpm -qa | grep mariadb 命令查看;显示为:mariadb-libs-5.5.56-2.el7.x86_642.使用 rpm -e --nodeps mariadb-libs-5.5.56-2.el7.x86_64 命令卸载; 二、安 阅读全文
posted @ 2020-11-22 22:20 yang7527 阅读(2012) 评论(0) 推荐(0)
摘要:1、安装redis步骤 至此,redis安装完毕,我们可以利用以下两个命令测试 2、修改redis.conf配置文件 (1)、#bind 127.0.0.1 将这里前面加上#否则远程无法连接redis或者只能连接ip为127.0.0.1的本地回环地址,无法连接真实的ip. (2)、daemonize 阅读全文
posted @ 2019-08-14 11:32 yang7527 阅读(137) 评论(0) 推荐(0)