【DB2】If ‘db2‘ is not a typo you can run the following command to lookup the package that contains the binary: command-not-found db2 bash: db2: command not found

数据库安装以后,db2报错如下:

If ‘db2‘ is not a typo you can run the following command to lookup the package that contains the binary:
    command-not-found db2
bash: db2: command not found

问题处理:

①首先编辑/etc/profile

vim /etc/profile

②然后在该文件最后一行添加

PATH=$PATH:/opt/ibm/db2/V10.1_01/bin:/home/db2inst1/sqllib/bin:/home/db2inst1/sqllib/adm:/home/db2inst1/sqllib/misc
export PATH

③使用source命令让更改配置生效

source /etc/profile

原文地址:https://www.cnblogs.com/OliverQin/p/9276775.html

时间: 2024-11-05 16:01:59

【DB2】If ‘db2‘ is not a typo you can run the following command to lookup the package that contains the binary: command-not-found db2 bash: db2: command not found的相关文章

【SVN】总结:svn“Previous operation has not finished; run 'cleanup' if it was interrupted“

svn执行clean up命令时报错"Previous operation has not finished; run 'cleanup' if it was interrupted".无论你到那个父层次的目录执行"clean up ",都是报一样的错.执行cleanup时候,提示要cleanup. svn的operation是存放在"work queue'"里的.而"work queue'是在内嵌数据库wc.db的work_queue

【转】vsftp 遇到错误 500 OOPS: vsftpd: refusing to run with writable root inside chroot()--不错

原文网址:http://linux.it.net.cn/e/server/ftp/2015/0227/13554.html 当我们限定了用户不能跳出其主目录之后,使用该用户登录FTP时往往会遇到这个错误: 500 OOPS: vsftpd: refusing to run with writable root inside chroot () 这个问题发生在最新的这是由于下面的更新造成的:  IT网,http://www.it.net.cn - Add stronger checks for t

利用FbinstTool+大白菜u盘工具,制作多系统启动U盘【转】

一般制作多系统启动盘的教程都会要用到rub4dos+grubinst+ultraiso+msgdiyerl等等工具,一大串的工具列表让人望而生畏.其实大白菜里已经对这些工具做了非常好的封装,利用大白菜+FbinstTool,我们就可以方便的制作出功能丰富的启动U盘. 一.准备工作 1.足够大的U盘一个(我用的是Kingston 8GB U盘,就本文来说2G就够了) 2.大白菜4.6 3.FbinstTool 4.Ubuntu和CDLinux的live CD 二.制作过程 1.打开大白菜4.6,点

【DB2】表空间相关详细说明

-.创建表空间 1.创建用户表空间 声明:在指定表空间创建路径的时候,需要指定空文件夹,非空文件夹会导致创建报错!!!如果文件夹不存在,那么在创建表空间的时候会自动创建文件夹! 1.1 创建SMS表空间 CREATE TABLESPACE <NAME> MANAGED BY SYSTEM USING ('<path>') 例子:db2 "create tablespace tbs1 managed by system using ('/db2home/db2inst1/d

【db2】 db2数据库还原,备份

将整个文件夹(JMAM_DQ.0)放到D:\db_bak\开始-运行,输入db2cmd:1.创建数据库db2 create db dbname on d: (数据库在D盘,这时系统会自动新增SQL0000*目录,结果目录如:D:\DB2\NODE0000\SQL0000*\....;如果远程连接数据库创建,则在执行create 前先执行 db2 attach to servernode user ...using...) 2.还原数据库(重新指向)db2 restore db JMAM_DQ f

【转】DB2 的命令行处理器和脚本编写

命令行处理器是 DB2 的接口,它最佳地体现了 DB2 的威力,以及 DB2 的简单性和通用性.作者通过例子对其进行了详细的论述. 0 评论: Blair Adamache, DB2 Technology Development, IBM 关闭 [x] Blair Adamache 是 IBM 多伦多实验室里的一名有 17 年工作经验的老员工.他拥有修辞学(Rhetoric)的硕士学位,但是承诺只将自己的能力应用于好的服务.Blair 当前的职责是管理 DB2 服务小组,这个小组负责确保客户能够

【db2】体系结构概述

 ************************************************************************   ****原文:blog.csdn.net/clark_xu 徐长亮的专栏 ************************************************************************                               系统环境变量:                 全局注册变量:d

【DB2】监控临时表空间使用

在我们使用数据库的时候,我们都知道应用程序在DB2上运行时,会产生临时表空间,我们想要监测这些临时表空间的使用情况,可以使用以下步骤: (1)打开monitor switches 中的table监视器: [email protected]:/qinys> db2 update monitor switches using table on DB20000I  The UPDATE MONITOR SWITCHES command completed successfully. (2)对数据库抓取

【锁】Oracle锁系列

[锁]Oracle锁系列 1  BLOG文档结构图 2  前言部分 2.1  导读和注意事项 各位技术爱好者,看完本文后,你可以掌握如下的技能,也可以学到一些其它你所不知道的知识,~O(∩_∩)O~: ① 锁的概念.分类.及其模拟 ② 查询锁的视图及视图之间的关联 ③ 锁的参数(DML_LOCKS.DDL_LOCK_TIMEOUT) ④ FOR UPDATE及FOR UPDATE OF系列 ⑤ 带ONLINE和不带ONLINE创建索引的锁情况(是否阻塞DML操作) ⑥ 包或存过不能编译的解决方法