zoukankan      html  css  js  c++  java
  • tokumx的安装和使用

    1. Add the Tokutek package signing key.

      $ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-key 505A7412
      

      You can check that the fingerprint is correct:

      $ sudo apt-key finger 505A7412
      /etc/apt/trusted.gpg
      --------------------
      pub   2048R/505A7412 2014-01-27
            Key fingerprint = DA56 C65D 432E DAB1 F183  AA6F 70A4 E325 505A 7412
      uid                  Timothy Callaghan (Tokutek Key) <tim@tokutek.com>
      sub   2048R/46A1A9B9 2014-01-27
      
    2. Add an entry for the TokuMX package repository for your release (wheezy, precise, quantal, raring, saucy, or trusty).

      $ echo "deb [arch=amd64] http://s3.amazonaws.com/tokumx-debs $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/tokumx.list
      
    3. Update apt and install TokuMX.

      $ sudo apt-get update
      $ sudo apt-get install tokumx
      

    Running the server

    If migrating from an existing MongoDB installation, copy any relevant configuration from /etc/mongodb.conf to /etc/tokumx.conf.

    To migrate your existing data to TokuMX, start here: Migrating from MongoDB

    1. To control the mongod data server, use service:

      $ sudo service tokumx start
      $ sudo service tokumx restart
      $ sudo service tokumx stop
      
    2. To enable TokuMX on boot, use chkconfig on Debian:

      $ sudo chkconfig tokumx on
      $ sudo chkconfig tokumx off
      

      or update-rc.d on Ubuntu:

      $ sudo update-rc.d tokumx defaults
      $ sudo update-rc.d tokumx remove
      

    Connecting to TokuMX

    Use the mongo shell:

    $ mongo
    TokuMX mongo shell v1.4.2-mongodb-2.4.10
    connecting to: test
    Welcome to the TokuMX shell.
    For interactive help, type "help".
    For more comprehensive documentation, see
        http://docs.mongodb.org/
    and the TokuMX Users' Guide available at
        http://www.tokutek.com/products/downloads/tokumx-ce-downloads/
    Questions? Try the support group
        http://groups.google.com/group/tokumx-user
    > db.serverBuildInfo().tokumxVersion
    1.4.2
  • 相关阅读:
    使用正则匹配数字
    钻石和玻璃球游戏(钻石位置不固定)
    简单绘图
    未解决问题02
    Sqlite3 实现学生信息增删改查
    【Python】科赫雪花绘制
    【Python爬虫】抖音去水印
    【MATLAB】数学计算软件 MathWorks MATLAB R2020a 中文破解版
    【C语言】用指针作为形参完成数据的升序排列
    【C语言】数组名作函数参数完成数据的升序排列
  • 原文地址:https://www.cnblogs.com/jzssuanfa/p/6960937.html
Copyright © 2011-2022 走看看