1、$ sudo yum install -y yum-utils 2、 $ sudo yum-config-manager \ --add-repo \ https://download.docker.com/linux/centos/docker-ce.repo3、安装最新版本的Docker E ...
分类:
其他好文 时间:
2020-06-26 14:17:31
阅读次数:
82
1、目的 linux 系统中 安装 R ,参考如下链接: https://blog.csdn.net/haijiege/article/details/83828173 a.安装并启动EPEL(如果已经安装,可直接执行第二步) yum install epel-release 发现报错如下: 找度娘 ...
分类:
其他好文 时间:
2020-06-26 01:44:11
阅读次数:
218
前言 本篇文章主要介绍在 CentOS 7 环境下安装 MySQL 8.0。 正文 1. 配置yum源 首先在 https://dev.mysql.com/downloads/repo/yum/ 找到 yum 源 rpm 安装包,但是我那会打开这个网页时有点慢毕竟是国外的网站,所以我分享到百度网盘了 ...
分类:
数据库 时间:
2020-06-25 23:10:43
阅读次数:
101
docker images 查看镜像 docker pill nginx 这是下载nginx docker version 查看版本 docker search centos 搜索有关centos多种镜像 docker export 容器ID >生成新的容器 导出镜像 docker run cent ...
分类:
其他好文 时间:
2020-06-25 23:02:03
阅读次数:
58
用户需求 数据迁移 DMS无法迁移视图,触发器等情况下使用手动迁移 1.创建临时EC2 在目标数据库Region创建临时EC2用于导出数据 2.安装mysqldump yum -y install mysql 3.导出数据 mysqldump导出语句参考 mysqldump -h rds地址 \ - ...
分类:
数据库 时间:
2020-06-25 23:01:12
阅读次数:
83
1、可能大家在安装双系统的时候会遇到这样的问题:在安装Win10的情况下,安装CentOS7,然后重启之后,无法进入到win10,直接进入到Linux系统,你说气不气!不要生气,下面就跟随着小编来看看具体的解决方法。 解决方法: 进入到Linux系统,安装epel-release源,yum inst ...
1.基本配置 下载相关工具(3台) # yum install -y vim 下载vi编译器升级版vim 1.1 修改主机名(3台) # hostnamectl set-hostname 结点名 修改主机名永久修改 # vim /etc/sysconfig/network 内添加 NETWORKIN ...
分类:
其他好文 时间:
2020-06-25 21:12:24
阅读次数:
84
从源码编译安装 # 下载Swoole wget http://pecl.php.net/get/swoole-4.5.2.tgz tar -zxvf swoole-4.5.2.tgz cd swoole-4.5.2 # 安装相关依赖 yum -y install gcc gcc-c++ autoco ...
分类:
系统相关 时间:
2020-06-25 21:09:23
阅读次数:
81
yum -y install openssh openssh-server openssh-clients sshd服务 ssh user@ip ssh -p port user@ip 服务器ssh-keygen生成id_rsa和id_rsa.pub client的.ssh/authorized_k ...
分类:
其他好文 时间:
2020-06-25 19:51:09
阅读次数:
45
SMART是一种磁盘自我分析检测技术 参考:大神博客 1、安装yum install smartmontools smartctl -i :显示设备的身份信息,检查硬盘是否打开了SMART支持 如果为Disabled,使用:smartctl --smart=on --offlineauto=on - ...
分类:
其他好文 时间:
2020-06-25 19:48:39
阅读次数:
88