search
HomeDatabaseMysql TutorialLinux下DB2的安装手把手教学篇

今天安装了db2,忙了好一阵子,上网找资料等,终于装好了,下面就把我的步骤跟大家分享一下。 第一步:检查程序包及其版本

  今天安装了db2,忙了好一阵子,上网找资料等,终于装好了,下面就把我的步骤跟大家分享一下。
  第一步:检查程序包及其版本
  compat-libstdc -7.3-2.96.118.i386.rpm
  在linux的安装盘上,找到后使用rpm -icompat-libstdc -7.3-2.96.118.i386.rpm安装即可

  第二步:配置 Linux 内核参数
  /etc/sysctl.conf文件,,添加内核参数
  kernel.msgmni =1024
  kernel.sem = 250 256000 32 1024
  使更改激活:sysctl –p

  第三步:安装
  sh db2_install
  按照提示做

  第四步:创建用户
  /usr/sbin/groupadd db2iadm1
  /usr/sbin/groupadd db2fadm1
  /usr/sbin/useradd –m -g db2iadm1 –d /home/db2inst1 db2inst1
  /usr/sbin/useradd –m -g db2fadm1 –d /home/db2fenc1 db2fenc1

  第五步:创建实例
  /opt/IBM/db2/V8.1/instance/db2icrt –a server –udb2fenc1db2inst1

  第六步:产品许可证
  /opt/IBM/db2/V8.1/adm/db2licm-a/mnt/cdrom/db2/license/db2pe.lic

  第七步:允许SMS的多页分配
  /opt/IBM/db2/V8.1/cfg/db2ln

  第八步:添加DB2端口
  SU - root
  vi /etc/services 加入下面一行
  db2inst1 50000/tcp

  第九步:DB2 配置
  su – db2inst1
  db2set DB2_EXTENDED_OPTIMIZATION=ON
  db2set DB2_DISABLE_FLUSH_LOG=ON
  db2set AUTOSTART=YES
  db2set DB2_STRIPED_CONTAINERS=ON
  db2set DB2_HASH_JOIN=Y
  db2set DB2COMM=tcpip
  db2set DB2_PARALLEL_IO=*
  db2set DB2CODEPAGE=819
  #Update dbm cfg
  db2 update dbm cfg using SVCENAME db2inst1
  db2 update dbm cfg using INDEXREC ACCESS

  第十步:运行DB2
  db2start

  第十一步:创建库
  db2 CREATE DATABASE test1 ALIAS test1 USING CODESETISO8859-1TERRITORY CN
  以后就可以创建表和对表操作了,如 db2 select * from tbl

linux

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
深入理解MySQL索引优化器工作原理深入理解MySQL索引优化器工作原理Nov 09, 2022 pm 02:05 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于索引优化器工作原理的相关内容,其中包括了MySQL Server的组成,MySQL优化器选择索引额原理以及SQL成本分析,最后通过 select 查询总结整个查询过程,下面一起来看一下,希望对大家有帮助。

CentOS安装Sysdig及CentOS安装system_call_fastpathCentOS安装Sysdig及CentOS安装system_call_fastpathFeb 09, 2024 pm 02:24 PM

在CentOS操作系统中,Sysdig是一个强大的系统调试和监视工具,它可以帮助用户深入了解系统的运行情况,并提供详细的性能分析,而system_call_fastpath是一个CentOS内核的特性,它能够加速系统调用的执行,提高系统的性能,本文将介绍如何在CentOS上安装Sysdig和启用system_call_fastpath特性。Sysdig是一个开源的系统调试和监视工具,它可以捕获系统的运行状态,并提供详细的性能分析,下面是在CentOS上安装Sysdig的步骤:1.更新系统软件包:

数据库系统的构成包括哪些数据库系统的构成包括哪些Jul 15, 2022 am 11:58 AM

数据库系统由4个部分构成:1、数据库,是指长期存储在计算机内的,有组织,可共享的数据的集合;2、硬件,是指构成计算机系统的各种物理设备,包括存储所需的外部设备;3、软件,包括操作系统、数据库管理系统及应用程序;4、人员,包括系统分析员和数据库设计人员、应用程序员(负责编写使用数据库的应用程序)、最终用户(利用接口或查询语言访问数据库)、数据库管理员(负责数据库的总体信息控制)。

CentOS安装KDevelopCentOS安装KDevelopFeb 09, 2024 pm 10:24 PM

作为一款开源的操作系统,CentOS广泛应用于服务器和开发环境中,而KDevelop是一款功能强大的集成开发环境,能够提供丰富的开发工具和插件,使开发者更加高效地进行软件开发,在本文中,我们将介绍如何在CentOS上安装KDevelop,并同时介绍如何在CentOS上安装虚拟机。KDevelop是一个基于KDE的集成开发环境,提供了丰富的功能和工具,适用于C、C++、Python等多种编程语言的开发,以下是在CentOS上安装KDevelop的步骤:1.打开终端,使用以下命令安装KDevelop

go语言可以写数据库么go语言可以写数据库么Jan 06, 2023 am 10:35 AM

go语言可以写数据库。Go语言和其他语言不同的地方是,Go官方没有提供数据库驱动,而是编写了开发数据库驱动的标准接口,开发者可以根据定义的接口来开发相应的数据库驱动;这样做的好处在于,只要是按照标准接口开发的代码,以后迁移数据库时,不需要做任何修改,极大方便了后期的架构调整。

数据库的什么是指数据的正确性和相容性数据库的什么是指数据的正确性和相容性Jul 04, 2022 pm 04:59 PM

数据库的“完整性”是指数据的正确性和相容性。完整性是指数据库中数据在逻辑上的一致性、正确性、有效性和相容性。完整性对于数据库系统的重要性:1、数据库完整性约束能够防止合法用户使用数据库时向数据库中添加不合语义的数据;2、合理的数据库完整性设计,能够同时兼顾数据库的完整性和系统的效能;3、完善的数据库完整性有助于尽早发现应用软件的错误。

mysql查询慢的因素除了索引,还有什么?mysql查询慢的因素除了索引,还有什么?Jul 19, 2022 pm 08:22 PM

mysql查询为什么会慢,关于这个问题,在实际开发经常会遇到,而面试中,也是个高频题。遇到这种问题,我们一般也会想到是因为索引。那除开索引之外,还有哪些因素会导致数据库查询变慢呢?

access数据库的结构层次是什么access数据库的结构层次是什么Aug 26, 2022 pm 04:45 PM

结构层次是“数据库→数据表→记录→字段”;字段构成记录,记录构成数据表,数据表构成了数据库。数据库是一个完整的数据的记录的整体,一个数据库包含0到N个表,一个表包含0到N个字段,记录是表中的行。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment