亚洲欧美精品沙发,日韩在线精品视频,亚洲Av每日更新在线观看,亚洲国产另类一区在线5

<pre id="hdphd"></pre>

  • <div id="hdphd"><small id="hdphd"></small></div>
      學(xué)習(xí)啦 > 學(xué)習(xí)電腦 > 操作系統(tǒng) > Linux教程 > Linux虛擬環(huán)境下怎么搭建DB2數(shù)據(jù)庫DPF(2)

      Linux虛擬環(huán)境下怎么搭建DB2數(shù)據(jù)庫DPF(2)

      時(shí)間: 孫勝龍652 分享

      Linux虛擬環(huán)境下怎么搭建DB2數(shù)據(jù)庫DPF

        三、配置rsh

        rsh是遠(yuǎn)程運(yùn)行shell的服務(wù).db2使用rsh服務(wù)運(yùn)行啟動(dòng)和停止數(shù)據(jù)庫服務(wù)器的命令,以及大部分管理命令。

        1、安裝rsh

        #yum install rsh*

        2、配置rsh的安全文件

        #vi /etc/securetty

        #add the content

        #------------------

        #rsh

        #rlogin

        #rexec

        #------------------

        3、修改rsh的配置參數(shù)/etc/xinetd.d/rsh ##在生產(chǎn)環(huán)境建議配置ssh免密登錄

        #vi /etc/xinetd.d/rsh

        service shell

        {

        socket_type = stream

        wait = no

        user = root

        log_on_success += USERID

        log_on_failure += USERID

        server = /usr/sbin/in.rshd

        disable = no

        }

        4、修改rsh的配置文件rlogin

        #vi /etc/xinetd.d/rlogin

        service login

        {

        disable = no

        socket_type = stream

        wait = no

        user = root

        log_on_success += USERID

        log_on_failure += USERID

        server = /usr/sbin/in.rlogind

        }

        4、免密登陸,實(shí)例用戶db2inst1的家目錄中創(chuàng)建.rhosts文件

        cat $HOME/.rhosts

        cbusdb01 db2inst1

        cbusdb02 db2inst1

        5、CentOS7.0需要單獨(dú)下載xinetd

        yum install xinetd #低于此版本可不下載

        6、重啟rsh服務(wù)

        service xinetd restart

        7、驗(yàn)證rsh服務(wù)

        rsh cbusdb01 date

        rsh cbusdb02 date

        #db2_all echo hi 沒有返回

        yum install ksh

        四、配置時(shí)鐘服務(wù)器

        1、安裝ntp服務(wù)器

        #yum install ntp*

        # ntpdate -u 202.112.10.36

        #ntpdate cn.pool.ntp.org

        #service ntpd start

        #chkconfig ntpd on

        2、修改ntp配置

        #允許內(nèi)網(wǎng)其他機(jī)器同步時(shí)間

        restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

        #互聯(lián)網(wǎng)時(shí)間服務(wù)器

        server 210.72.145.44 perfer # 中國(guó)國(guó)家受時(shí)中心server 202.112.10.36

        # 1.cn.pool.ntp.orgserver 59.124.196.83

        # 0.asia.pool.ntp.org#允許上層時(shí)間服務(wù)器主動(dòng)修改本機(jī)時(shí)間

        restrict 210.72.145.44 nomodify notrap noquery

        restrict 202.112.10.36 nomodify notrap noquery

        restrict 59.124.196.83 nomodify notrap noquery

        #外部時(shí)間服務(wù)器不可用時(shí),以本地時(shí)間作為時(shí)間服務(wù)

        server 127.0.0.1

        fudge 127.0.0.1 stratum 10

        3、修改時(shí)區(qū)

        cp -f /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

        clock -w

        4、在節(jié)點(diǎn)2上配置時(shí)鐘服務(wù)器

        */5 * * * * /usr/sbin/ntpdate cbusdb01

        五、配置nfs服務(wù)

        1、yum install nfs*

        # yum install portmap rpcbind #安裝nfs客戶端

        2、配置需要共享的資源

        #vi /etc/exports

        /cbusdb *(rw,sync,no_root_squash)

        /cbusdblog *(rw,sync)

        3、啟動(dòng)nfs server

        service rpcbind start

        service nfs start

        service nfslock restart

        4、導(dǎo)出資源

        exportfs -rv

        5、顯示NFS Server上所有的共享卷

        showmount -e

        6、在客戶端掛載共享目錄

        #mount 192.168.1.122:/cbusdb /cbusdb

        #vi /etc/fstab

        cbusdb01:/cbusdb /cbusdb nfs rw,timeo=300,retrans=5,hard,intr,bg,nolock,suid

        六、關(guān)閉selinux

        vim /etc/sysconfig/selinux

        #SELINUX=disabled

        七、測(cè)試、創(chuàng)建數(shù)據(jù)庫

        1、啟動(dòng)數(shù)據(jù)庫

        #db2start

        2、創(chuàng)建數(shù)據(jù)庫

        #db2 “create db cbusdb on /cbusdblog using codeset gbk territory cn”

        上面就是在Linux虛擬化環(huán)境中搭建DB2數(shù)據(jù)庫DPF的方法介紹了,本文詳細(xì)介紹了DB2的安裝過程及搭建,不知道如何搭建的朋友趕緊學(xué)習(xí)一下吧。

      307960