分类: 数据库
thumbnail

Centos 6.5 安装 mysql 5.7

下载 mysql57-community-release-el6-9.noarch.rpm及mysql-community-server-5.7.17-1.el6.x86_64.rpm两个软件包 1.安装mysql57-community-release-el6-9.noar……
thumbnail

ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

在mysql 5.7 中,进入mysql执行操作时 ,出现以下提示 Shell mysql> select version(); ERROR 1820 (HY000): You must reset your……
thumbnail

ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

  Shell mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '123456'; ERROR 1819 (HY000): Your password does not sati……
thumbnail

libnuma.so.1()(64bit) is needed by mysql-community-server-5.7.17-1.el6.x86_64

Shell [root@play ~]# rpm -ivh mysql-community-server-5.7.17-1.el6.x86_64.rpm error: Failed dependencies: libnuma.so.1()(……
thumbnail

ORACLE 一个监听开启多个实例

现有一台机器,需要oracle自动启动多个数据实例,并监听 Shell SID_LIST_LISTENER_orcl = (SID_LIST = (SID_DESC = ……
thumbnail

ORACLE 使用DBCA静默创建数据库

Shell [oracle@a ~]$ dbca -silent -createDatabase -templateName General_Purpose.dbc -gdbname test1 -sid test1 -responseFile N……
thumbnail

oracle 11gR2 for Linux 静默安装

此文档是应用于在没有图形界面Linux下Oracle 11g安装方式。 一、环境配备 1.oracle 11g R2 安装包一份,在官网下载会有两个安装包,分别为linux.x64_11gR2_dat……
thumbnail

mysql 基础命令(一)

创建数据库 Shell create database db; 1 create database db; 创建用户 ……
thumbnail

mysql 编码问题

mysql的默认编码是latin1,不支持中文。怎么修改mysql的默认编码?本文以utf-8默认编码修改为例来介绍。 创建数据库并指定编码方式: Shell ……
thumbnail

mysql 双机热备

环境说明 1.MySQL主服务器 系统:CentOS 6.5 IP:192.168.178.3 主机名:oracle.com MySQL版本:14.14 2.MySQL从服务器 系统:CentOS 6.5 IP:192.168.178.5 主……