上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页
  2018年12月27日
摘要: container(容器) docker(集装箱) 容器的优点 1、 启动速度快 2、 节省资源 兼容性高 启动docker # systemctl start docker 设置开机自启动 # systemctl enable docker 查看本地镜像 # docker images 查询具体的 阅读全文
posted @ 2018-12-27 00:36 阿小杜 阅读(260) 评论(0) 推荐(0)
  2018年12月26日
摘要: container(容器) docker(集装箱) 容器的优点 1、 启动速度快 2、 节省资源 3、 兼容性高 保证机器正常上网 #ping www.baidu.com CPU需要支持虚拟化 # grep -E 'svm|vmx' /proc/cpuinfo 找到flags部分,如果其中输出有SV 阅读全文
posted @ 2018-12-26 21:07 阿小杜 阅读(665) 评论(0) 推荐(0)
  2018年12月23日
摘要: 6、创建表空间和用户授权 (1)、连接数据库 $ sqlplus / as sysdba (2)、创建数据库表空间 SQL> create tablespace test1_teblespacedatafile '/usr/oracle/oradata/orcl/test1_teblespace.d 阅读全文
posted @ 2018-12-23 23:41 阿小杜 阅读(2219) 评论(0) 推荐(0)
摘要: 一、环境准备 1、正确无误的CentOS 7系统环境 虚拟机要求: 内存至少2G 处理器至少2个 根分区要大于20G(安装oracle很占空间,空闲空间要足够) 2、正确的JDK环境 CentOS 7安装JDK:https://www.cnblogs.com/djlsunshine/p/101646 阅读全文
posted @ 2018-12-23 22:33 阿小杜 阅读(1709) 评论(0) 推荐(0)
摘要: 一、安装包准备 1、根据系统下载JDK安装包 下载地址:https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 下载后 2、上传到Linux系统 创建一个Java目录,并剪切到目录 # 阅读全文
posted @ 2018-12-23 16:25 阿小杜 阅读(651) 评论(0) 推荐(0)
  2018年12月18日
摘要: 虚拟机配置信息 内存最好大于或等于4G,之前用2G内存搭建,访问出现502报错信息 不考虑selinux和防火墙问题 搭建之前最好关掉selinux和防火墙 临时调增selinux和关闭防火墙 下载Gitlab安装包 centos 6系统的下载地址:https://mirrors.tuna.tsin 阅读全文
posted @ 2018-12-18 23:15 阿小杜 阅读(547) 评论(0) 推荐(0)
  2018年12月17日
摘要: 添加一块10G的硬盘 查看磁盘大小 # df -Th 查看物理卷组 # vgdisplay 查看逻辑卷 # lvs 查看磁盘信息 # fdisk -l 对添加的10G硬盘分区 # fdisk /dev/sdb 创建物理卷 # pvcreate /dev/sdb1 加入根分区的逻辑卷组 # vgext 阅读全文
posted @ 2018-12-17 20:36 阿小杜 阅读(321) 评论(0) 推荐(0)
  2018年12月1日
摘要: 查看当前用户信息 MariaDB [aa]> select user(); 查看所有存储用户信息 MariaDB [aa]> desc mysql.user; MariaDB [aa]> select user,host,password from mysql.user; user@host 才是完 阅读全文
posted @ 2018-12-01 22:35 阿小杜 阅读(559) 评论(0) 推荐(0)
  2018年11月26日
摘要: 一、MySQL数据库mariadb的安装 关闭防火墙和selinux #systemctl stop firewalld 安装服务端和客户端mariadb # yum install mariadb-server mariadb -y mariadb配置文件位置 # vi /etc/my.cnf 开 阅读全文
posted @ 2018-11-26 23:15 阿小杜 阅读(1143) 评论(2) 推荐(0)
  2018年11月22日
摘要: 一、图形化创建 #nm-connection-editor & 选择桥接 设置桥接网络 点击添加 模式选择以太网 添加上行网卡 # brctl show 删除桥接 # nmcli connection delete Br0 # nmcli connection delete Br0_1 #ip a 阅读全文
posted @ 2018-11-22 21:43 阿小杜 阅读(1966) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页