上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: !/bin/sh export ORACLE_BASE=/opt/appexport ORACLE_HOME=$ORACLE_BASE/oracle/product/11.2.0.4/dbhome_1export ORACLE_SID=ora11gexport NLS_LANG='AMERICAN_ 阅读全文
posted @ 2020-04-22 10:22 奥义,三千世界 阅读(239) 评论(0) 推荐(0) 编辑
摘要: ##查看docker容器版本docker version##查看docker容器信息docker info ##列出本地imagesdocker images docker inspect 镜像ID //查看镜像详细信息 docker tag nginx:latest nginx:17 //镜像改标 阅读全文
posted @ 2020-03-13 22:13 奥义,三千世界 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 一、安装docker 安装依赖环境 yum -y install yum-utils device-mapper-persistent-data lvm21 准备镜像源 curl https://download.docker.com/linux/centos/docker-ce.repo -o / 阅读全文
posted @ 2020-03-12 22:07 奥义,三千世界 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 查看数据库 show databases;1 进入切换数据库 use 数据库名use crushlinux;12 查看表 show tables;1 新建数据库,新建表 create database 库名; create database yi;create table 表名(字段一,字段2);c 阅读全文
posted @ 2020-03-05 11:04 奥义,三千世界 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 查看数据库 show databases; 使用数据库 use 数据库名;创建数据库 CREATE DATABASE 数据库名;删除数据库 DROP DATABASE 数据库名;创建表 create table 表名( 列名1 类型(长度) [约束], 列名2 类型(长度) [约束], ……);长度 阅读全文
posted @ 2020-02-18 19:07 奥义,三千世界 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 常用配置详解 1 目录结构 /bin:脚本文件目录。 /common/lib:存放所有web项目都可以访问的公共jar包(使用Common类加载器加载)。 /conf:存放配置文件,最重要的是server.xml。 /logs:存放日志文件。 /server/webapps:来管理Tomcat-we 阅读全文
posted @ 2019-12-20 10:41 奥义,三千世界 阅读(727) 评论(0) 推荐(0) 编辑
摘要: 1.环境准备: centos7:192.168.200.112 server.com centos7:192.168.200.113 agent.com Windows:192.168.100.164 windows10 hostname server.com 更改主机名 hostname agen 阅读全文
posted @ 2019-11-30 08:47 奥义,三千世界 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 实验环境: MySQL amoeba:192.168.200.116 MySQL-master:192.168.200.111 MySQL-slave1:192.168.200.112 MySQL-slave2:192.168.200.113 MySQL client:192.168.200.100 阅读全文
posted @ 2019-10-16 22:18 奥义,三千世界 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 实验环境 三台虚拟机 一主两从 主: 192.168.200.111 从1: 192.168.200.112 从2: 192.168.200.113 [root@localhost ~]# iptables -F[root@localhost ~]# systemctl stop firewalld 阅读全文
posted @ 2019-10-16 21:44 奥义,三千世界 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 数据库的基本概念 数据 l 描述事物的符号记录称为数据(Data) l 包括数字,文字、图形、图像、声音、档案记录等 l 以“记录”形式按统一的格式进行存储 数据表 l 将不同的记录组织在一起,就形成了 “表” l 是用来存储具体数据的 数据库 l 数据库就是表的集合,是存储数据表的仓库 l 以一定 阅读全文
posted @ 2019-10-15 09:38 奥义,三千世界 阅读(205) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页