Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
configuration
Commits
7ebb6d4c
Commit
7ebb6d4c
authored
Jan 26, 2017
by
Fred Smith
Committed by
GitHub
Jan 26, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3621 from edx/derf/Neo4j_heap_size_override
Neo4j heap size override
parents
d27dbf3c
2d9dd97b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
playbooks/roles/neo4j/defaults/main.yml
+2
-0
playbooks/roles/neo4j/tasks/main.yml
+9
-0
No files found.
playbooks/roles/neo4j/defaults/main.yml
View file @
7ebb6d4c
...
...
@@ -22,9 +22,11 @@ neo4j_gpg_key_url: https://debian.neo4j.org/neotechnology.gpg.key
neo4j_apt_repository
:
"
deb
http://debian.neo4j.org/repo
stable/"
neo4j_version
:
"
3.0.3"
neo4j_server_config_file
:
"
/etc/neo4j/neo4j.conf"
neo4j_wrapper_config_file
:
"
/etc/neo4j/neo4j-wrapper.conf"
neo4j_https_port
:
7473
# default in package is 7473
neo4j_http_port
:
7474
# default in package is 7474
neo4j_listen_address
:
"
0.0.0.0"
neo4j_heap_max_size
:
"
3000"
# Properties file settings
neo4j_https_settings_key
:
"
dbms.connector.https.address"
...
...
playbooks/roles/neo4j/tasks/main.yml
View file @
7ebb6d4c
...
...
@@ -45,6 +45,15 @@
-
install
-
install:base
-
name
:
set neo4j heap size
lineinfile
:
dest
:
"
{{
neo4j_wrapper_config_file
}}"
regexp
:
"
dbms.memory.heap.max_size="
line
:
"
dbms.memory.heap.max_size={{
neo4j_heap_max_size
}}"
tags
:
-
install
-
install:configuration
-
name
:
set to listen on specific port for https
lineinfile
:
dest
:
"
{{
neo4j_server_config_file
}}"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment