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
OpenEdx
configuration
Commits
36572c3c
Commit
36572c3c
authored
8 years ago
by
Fred Smith
Committed by
GitHub
8 years ago
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3325 from edx/derf/neo4j_3_fixes
neo4j_3_fixes
parents
bc406b57
f4336071
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
17 deletions
+7
-17
playbooks/roles/neo4j/defaults/main.yml
+4
-4
playbooks/roles/neo4j/tasks/main.yml
+3
-13
No files found.
playbooks/roles/neo4j/defaults/main.yml
View file @
36572c3c
...
@@ -21,11 +21,11 @@ NEO4J_SERVER_NAME: "localhost"
...
@@ -21,11 +21,11 @@ NEO4J_SERVER_NAME: "localhost"
neo4j_gpg_key_url
:
https://debian.neo4j.org/neotechnology.gpg.key
neo4j_gpg_key_url
:
https://debian.neo4j.org/neotechnology.gpg.key
neo4j_apt_repository
:
"
deb
http://debian.neo4j.org/repo
stable/"
neo4j_apt_repository
:
"
deb
http://debian.neo4j.org/repo
stable/"
neo4j_version
:
"
3.0.3"
neo4j_version
:
"
3.0.3"
neo4j_server_config_file
:
"
/etc/neo4j/neo4j
-server.properties
"
neo4j_server_config_file
:
"
/etc/neo4j/neo4j
.conf
"
neo4j_https_port
:
7473
# default in package is 7473
neo4j_https_port
:
7473
# default in package is 7473
neo4j_http_port
:
7474
# default in package is 7474
neo4j_http_port
:
7474
# default in package is 7474
neo4j_listen_address
:
"
0.0.0.0"
# Properties file settings
# Properties file settings
neo4j_address_settings_key
:
"
org.neo4j.server.webserver.address"
neo4j_https_settings_key
:
"
dbms.connector.https.address"
neo4j_https_settings_key
:
"
org.neo4j.server.webserver.https.port"
neo4j_http_settings_key
:
"
dbms.connector.http.address"
neo4j_http_settings_key
:
"
org.neo4j.server.webserver.port"
This diff is collapsed.
Click to expand it.
playbooks/roles/neo4j/tasks/main.yml
View file @
36572c3c
...
@@ -45,21 +45,11 @@
...
@@ -45,21 +45,11 @@
-
install
-
install
-
install:base
-
install:base
-
name
:
set to listen on all IPs
lineinfile
:
dest
:
"
{{
neo4j_server_config_file
}}"
regexp
:
"
{{
neo4j_address_settings_key
}}="
line
:
"
{{
neo4j_address_settings_key
}}=0.0.0.0"
state
:
present
tags
:
-
install
-
install:configuration
-
name
:
set to listen on specific port for https
-
name
:
set to listen on specific port for https
lineinfile
:
lineinfile
:
dest
:
"
{{
neo4j_server_config_file
}}"
dest
:
"
{{
neo4j_server_config_file
}}"
regexp
:
"
{{
neo4j_https_settings_key
}}="
regexp
:
"
{{
neo4j_https_settings_key
}}="
line
:
"
{{
neo4j_https_settings_key
}}={{
neo4j_https_port
}}"
line
:
"
{{
neo4j_https_settings_key
}}={{
neo4j_
listen_address
}}:{{
neo4j_
https_port
}}"
tags
:
tags
:
-
install
-
install
-
install:configuration
-
install:configuration
...
@@ -68,14 +58,14 @@
...
@@ -68,14 +58,14 @@
lineinfile
:
lineinfile
:
dest
:
"
{{
neo4j_server_config_file
}}"
dest
:
"
{{
neo4j_server_config_file
}}"
regexp
:
"
{{
neo4j_http_settings_key
}}="
regexp
:
"
{{
neo4j_http_settings_key
}}="
line
:
"
{{
neo4j_http_settings_key
}}={{
neo4j_http_port
}}"
line
:
"
{{
neo4j_http_settings_key
}}={{
neo4j_
listen_address
}}:{{
neo4j_
http_port
}}"
tags
:
tags
:
-
install
-
install
-
install:configuration
-
install:configuration
-
name
:
restart neo4j
-
name
:
restart neo4j
service
:
service
:
name
:
neo4j
-service
name
:
neo4j
state
:
restarted
state
:
restarted
tags
:
tags
:
-
manage
-
manage
...
...
This diff is collapsed.
Click to expand it.
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