-
Notifications
You must be signed in to change notification settings - Fork 109
refactor(loader): adjust LoadContext to 1.7.0 version #687
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
c1da411
f4f637f
b36d74c
3eade9c
4c2a1db
1eeb926
0b4b33a
386d669
9444707
7bdd211
77aba59
5259c4b
47c0373
ebb64c9
0b61e7c
05b6e79
1c6fa16
83a0e89
8960879
925e81b
13c67ce
8336872
3f8893d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -41,7 +41,10 @@ mkdir ${HTTPS_SERVER_DIR} | |||||||||
| cp -r apache-hugegraph-*/. ${HTTPS_SERVER_DIR} | ||||||||||
| cd "$(find apache-hugegraph-* | head -1)" | ||||||||||
| # start HugeGraphServer with http protocol | ||||||||||
| bin/init-store.sh || exit 1 | ||||||||||
| sed -i 's|gremlin.graph=org.apache.hugegraph.HugeFactory|gremlin.graph=org.apache.hugegraph.auth.HugeFactoryAuthProxy|' conf/graphs/hugegraph.properties | ||||||||||
| sed -i 's|#auth.authenticator=.*|auth.authenticator=org.apache.hugegraph.auth.StandardAuthenticator|' conf/rest-server.properties | ||||||||||
| sed -i 's|#auth.admin_pa=.*|auth.admin_pa=pa|' conf/rest-server.properties | ||||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 在测试脚本中直接硬编码
建议:
Suggested change
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the username and password are already written in |
||||||||||
| echo -e "pa" | bin/init-store.sh || exit 1 | ||||||||||
| bin/start-hugegraph.sh || exit 1 | ||||||||||
|
|
||||||||||
| cd ../${HTTPS_SERVER_DIR} | ||||||||||
|
|
@@ -53,6 +56,9 @@ sed -i "s/#port: 8182/port: 8282/g" "$GREMLIN_SERVER_CONFIG" | |||||||||
| echo "gremlinserver.url=http://127.0.0.1:8282" >> ${REST_SERVER_CONFIG} | ||||||||||
|
|
||||||||||
| # start HugeGraphServer with https protocol | ||||||||||
| bin/init-store.sh | ||||||||||
| sed -i 's|gremlin.graph=org.apache.hugegraph.HugeFactory|gremlin.graph=org.apache.hugegraph.auth.HugeFactoryAuthProxy|' conf/graphs/hugegraph.properties | ||||||||||
| sed -i 's|#auth.authenticator=.*|auth.authenticator=org.apache.hugegraph.auth.StandardAuthenticator|' conf/rest-server.properties | ||||||||||
| sed -i 's|#auth.admin_pa=.*|auth.admin_pa=pa|' conf/rest-server.properties | ||||||||||
| echo -e "pa" | bin/init-store.sh || exit 1 | ||||||||||
| bin/start-hugegraph.sh | ||||||||||
| cd ../ | ||||||||||
Uh oh!
There was an error while loading. Please reload this page.