How to start the tarantool console?

I installed tarantool (tarantool_box) and tarantool-client. I can start tarantool

/usr/bin/tarantool_box --background 

but when I try to connect to the server

 /usr/bin/tarantool 

I see only the admin console

 localhost> 

and can only use some commands and sql-like queries. I can not use any commands from the user manual, and almost all commands starting with lua fail:

 lua console = require('console') --- error: 'Lua error: [string "local console = require(''console'')"]:1: attempt to call global ''require'' (a nil value)' ... 
+5
source share
1 answer

The solution, for pure Debian wheezy, is found on tarantool github https://github.com/tarantool/tarantool

 sudo apt-get update sudo apt-get upgrade 

after update

 sudo apt-get install git sudo apt-get install build-essential sudo apt-get install libreadline-dev sudo apt-get install cmake sudo git clone https://github.com/tarantool/tarantool cd ./tarantool sudo git submodule update --init --recursive sudo cmake . sudo make 

after assembly

 sudo ./tarantool/src/tarantool 
0
source

Source: https://habr.com/ru/post/1235089/


All Articles