Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
54594d14
Commit
54594d14
authored
11 years ago
by
Konstantin Osipov
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/reformat-readme'
parents
beef5908
ab8979a1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+17
-21
17 additions, 21 deletions
README.md
with
17 additions
and
21 deletions
README.md
+
17
−
21
View file @
54594d14
...
@@ -42,21 +42,20 @@ a stack trace after a crash.
...
@@ -42,21 +42,20 @@ a stack trace after a crash.
Please follow these steps to compile Tarantool:
Please follow these steps to compile Tarantool:
tarantool $ git submodule init; git submodule update # if compiling from git
# If compiling from git
tarantool $ git submodule init
tarantool $ git submodule update
tarantool $ cmake .
tarantool $ cmake .
tarantool $ make
tarantool $ make
To use a different release type, say, RelWithDebugInfo, use:
To use a different release type, say, RelWithDebugInfo, use:
tarantool $ cmake . -DCMAKE_BUILD_TYPE=RelWithDebugInfo
tarantool $ cmake . -DCMAKE_BUILD_TYPE=RelWithDebugInfo
Additional build options can be set similarly:
Additional build options can be set similarly:
tarantool $ cmake . -DCMAKE_BUILD_TYPE=RelWithDebugInfo -DENABLE_CLIENT=true
tarantool $ cmake . -DCMAKE_BUILD_TYPE=RelWithDebugInfo -DENABLE_CLIENT=true # builds the command line client.
-- builds the command line client.
'make' creates tarantool_box executable in directory
'make' creates tarantool_box executable in directory
src/box and tarantool executable in client/tarantool.
src/box and tarantool executable in client/tarantool.
...
@@ -71,29 +70,26 @@ additional Python modules:
...
@@ -71,29 +70,26 @@ additional Python modules:
Once all pre-requisites are installed, try:
Once all pre-requisites are installed, try:
tarantool $ cd test && ./test-run.py --suite box --start-and-exit
tarantool $ cd test
tarantool $ ./test-run.py --suite box --start-and-exit
This will create a 'var' subdirectory in directory 'test',
This will create a 'var' subdirectory in directory 'test',
populate it with necessary files, and
populate it with necessary files, and
start the server. To connect, you could use
start the server. To connect, you could use
a simple command-line client:
a simple command-line client:
'''
tarantool $ ./test/tarantool
tarantool $ ./test/tarantool
'''
Alternatively, if a customized server configuration is required,
Alternatively, if a customized server configuration is required,
you could follow these steps:
you could follow these steps:
```
tarantool $ emacs cfg/tarantool.cfg # edit the configuration
tarantool $ emacs cfg/tarantool.cfg # edit the configuration
# Initialize the storage directory, path to this directory
# Initialize the storage directory, path to this directory
# is specified in the configuration file:
# is specified in the configuration file:
tarantool $ src/box/tarantool_box --config cfg/tarantool.cfg --init-storage
tarantool $ src/box/tarantool_box --config cfg/tarantool.cfg --init-storage
#
# Run tarantool
# run
tarantool $ src/box/tarantool_box --config cfg/tarantool.cfg
tarantool $ src/box/tarantool_box --config cfg/tarantool.cfg
```
Please report bugs at http://bugs.launchpad.net/tarantool or
Please report bugs at http://bugs.launchpad.net/tarantool or
http://github.com/tarantool/tarantool/issues
http://github.com/tarantool/tarantool/issues
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment