瀏覽代碼

添加记录

master
SisMaker 4 年之前
父節點
當前提交
89dbf9956a
共有 40 個文件被更改,包括 111 次插入0 次删除
  1. +34
    -0
      arangodb/arandodb初始化配置相关.md
  2. +77
    -0
      arangodb/arangod.conf
  3. 二進制
      神经科学/信号传到1.jpg
  4. 二進制
      神经科学/信号传导.jpg
  5. 二進制
      神经科学/大脑信号动图1.gif
  6. 二進制
      神经科学/大脑信号动图2.gif
  7. 二進制
      神经科学/大脑信号动图3.gif
  8. 二進制
      神经科学/大脑信号动图4.gif
  9. 二進制
      神经科学/大脑信号动图5.gif
  10. 二進制
      神经科学/大脑信号动图6.gif
  11. 二進制
      神经科学/生物发展图.jpg
  12. 二進制
      神经科学/神经元基因与蛋白.png
  13. 二進制
      神经科学/神经元基本形态.png
  14. 二進制
      神经科学/神经元塑造.png
  15. 二進制
      神经科学/神经元塑造1.png
  16. 二進制
      神经科学/神经元塑造2.png
  17. 二進制
      神经科学/神经元塑造3.png
  18. 二進制
      神经科学/神经元结构与形态.png
  19. 二進制
      神经科学/神经元蛋白.png
  20. 二進制
      神经科学/神经元运输.jpg
  21. 二進制
      神经科学/神经元运输.png
  22. 二進制
      神经科学/神经元连接.jpg
  23. 二進制
      神经科学/神经纤维束1.jpg
  24. 二進制
      神经科学/神经纤维束10.jpg
  25. 二進制
      神经科学/神经纤维束11.jpg
  26. 二進制
      神经科学/神经纤维束2.jpg
  27. 二進制
      神经科学/神经纤维束3.jpg
  28. 二進制
      神经科学/神经纤维束4.gif
  29. 二進制
      神经科学/神经纤维束5.jpg
  30. 二進制
      神经科学/神经纤维束6.jpg
  31. 二進制
      神经科学/神经纤维束7.jpg
  32. 二進制
      神经科学/神经纤维束8.jpg
  33. 二進制
      神经科学/神经纤维束9.jpg
  34. 二進制
      神经科学/神经细胞连接图.jpg
  35. 二進制
      神经科学/色盲检查图1.jpg
  36. 二進制
      神经科学/色盲检查图2.jpg
  37. 二進制
      神经科学/色盲检查图3.jpg
  38. 二進制
      神经科学/色盲检查图5.jpg
  39. 二進制
      神经科学/色盲检查图6.jpg
  40. 二進制
      神经科学/色盲检查图7.jpg

+ 34
- 0
arangodb/arandodb初始化配置相关.md 查看文件

@ -0,0 +1,34 @@
Updating / installing...
1:arangodb3e-3.5.3-1.0 ################################# [100%]
ArangoDB 3 (https://www.arangodb.com)
The multi-model NoSQL database: distributed free and open-source database
with a flexible data model for documents, graphs, and key-values. Build
high performance applications using a convenient SQL-like query language
or JavaScript extensions.
First Steps with ArangoDB:
https://docs.arangodb.com/latest/Manual/GettingStarted/
Configuring the storage Engine:
https://docs.arangodb.com/latest/Manual/Administration/Configuration/GeneralArangod.html#storage-engine
Configuration file:
/etc/arangodb3/arangod.conf
Start ArangoDB shell client:
> /usr/bin/arangosh
Start ArangoDB service:
> systemctl start arangodb3.service
Enable ArangoDB service:
> systemctl enable arangodb3.service
SECURITY HINT:
run 'arango-secure-installation' to set a root password
the current password is '7c8329a66d35a624bcfedfae0c944938'
(You should do this for a FRESH install! For an UPGRADE the password does not need to be changed)
2019-12-13T15:41:20Z [1134] INFO [a1c60] {syscall} file-descriptors (nofiles) hard limit is 65535, soft limit is 65535
2019-12-13T15:41:21Z [1134] INFO [7da27] {startup} server will now shut down due to upgrade, database initialization or admin restoration.

+ 77
- 0
arangodb/arangod.conf 查看文件

@ -0,0 +1,77 @@
# ArangoDB configuration file
#
# Documentation:
# https://docs.arangodb.com/latest/Manual/Administration/Configuration/
#
[database]
directory = /var/lib/arangodb3
# maximal-journal-size = 33554432
[server]
# Specify the iendpoint for HTTP requests by clients.
# tcp://ipv4-address:port
# tcp://[ipv6-address]:port
# ssl://ipv4-address:port
# ssl://[ipv6-address]:port
# unix:///path/to/socket
#
# Examples:
endpoint = tcp://0.0.0.0:8529
# endpoint = tcp://171.221.139.17:8529
# endpoint = tcp://localhost:8529
# endpoint = tcp://myserver.arangodb.com:8529
# endpoint = tcp://[::]:8529
# endpoint = tcp://[fe80::21a:5df1:aede:98cf]:8529
#
# endpoint = tcp://127.0.0.1:8529
storage-engine = rocksdb
# reuse a port on restart or wait until it is freed by the operating system
# reuse-address = false
authentication = true
# number of maximal server threads. use 0 to make arangod determine the
# number of threads automatically, based on available CPUs
# maximal-threads = 0
# gather server statistics
statistics = true
# the user and group are normally set in the start script
# uid = arangodb
# gid = arangodb
uid = arangodb
[javascript]
startup-directory = /usr/share/arangodb3/js
app-path = /var/lib/arangodb3-apps
# app-path = //arangodb3/apps
# number of V8 contexts available for JavaScript execution. use 0 to
# make arangod determine the number of contexts automatically.
# v8-contexts = 0
[foxx]
# enable Foxx queues in the server
# queues = true
# interval (seconds) to use for polling jobs in Foxx queues
# queues-poll-interval = 1
[log]
level = info
file = /var/log/arangodb3/arangod.log
[cluster]
[rocksdb]
# encryption-keyfile=/your-encryption-file
#
[http]
keep-alive-timeout = 5000000
hide-product-header = true

二進制
神经科学/信号传到1.jpg 查看文件

Before After
Width: 910  |  Height: 754  |  Size: 120 KiB

二進制
神经科学/信号传导.jpg 查看文件

Before After
Width: 910  |  Height: 751  |  Size: 110 KiB

二進制
神经科学/大脑信号动图1.gif 查看文件

Before After
Width: 640  |  Height: 290  |  Size: 2.0 MiB

二進制
神经科学/大脑信号动图2.gif 查看文件

Before After
Width: 400  |  Height: 250  |  Size: 1.3 MiB

二進制
神经科学/大脑信号动图3.gif 查看文件

Before After
Width: 500  |  Height: 335  |  Size: 1.8 MiB

二進制
神经科学/大脑信号动图4.gif 查看文件

Before After
Width: 500  |  Height: 300  |  Size: 654 KiB

二進制
神经科学/大脑信号动图5.gif 查看文件

Before After
Width: 340  |  Height: 217  |  Size: 1.1 MiB

二進制
神经科学/大脑信号动图6.gif 查看文件

Before After
Width: 500  |  Height: 335  |  Size: 2.2 MiB

二進制
神经科学/生物发展图.jpg 查看文件

Before After
Width: 440  |  Height: 1668  |  Size: 158 KiB

二進制
神经科学/神经元基因与蛋白.png 查看文件

Before After
Width: 1120  |  Height: 749  |  Size: 165 KiB

二進制
神经科学/神经元基本形态.png 查看文件

Before After
Width: 1080  |  Height: 1920  |  Size: 538 KiB

二進制
神经科学/神经元塑造.png 查看文件

Before After
Width: 1173  |  Height: 745  |  Size: 201 KiB

二進制
神经科学/神经元塑造1.png 查看文件

Before After
Width: 1163  |  Height: 753  |  Size: 187 KiB

二進制
神经科学/神经元塑造2.png 查看文件

Before After
Width: 1004  |  Height: 751  |  Size: 129 KiB

二進制
神经科学/神经元塑造3.png 查看文件

Before After
Width: 1080  |  Height: 1920  |  Size: 793 KiB

二進制
神经科学/神经元结构与形态.png 查看文件

Before After
Width: 983  |  Height: 752  |  Size: 157 KiB

二進制
神经科学/神经元蛋白.png 查看文件

Before After
Width: 1080  |  Height: 1920  |  Size: 355 KiB

二進制
神经科学/神经元运输.jpg 查看文件

Before After
Width: 980  |  Height: 748  |  Size: 131 KiB

二進制
神经科学/神经元运输.png 查看文件

Before After
Width: 977  |  Height: 749  |  Size: 145 KiB

二進制
神经科学/神经元连接.jpg 查看文件

Before After
Width: 1200  |  Height: 1200  |  Size: 364 KiB

二進制
神经科学/神经纤维束1.jpg 查看文件

Before After
Width: 1004  |  Height: 635  |  Size: 537 KiB

二進制
神经科学/神经纤维束10.jpg 查看文件

Before After
Width: 500  |  Height: 375  |  Size: 52 KiB

二進制
神经科学/神经纤维束11.jpg 查看文件

Before After
Width: 500  |  Height: 396  |  Size: 94 KiB

二進制
神经科学/神经纤维束2.jpg 查看文件

Before After
Width: 922  |  Height: 733  |  Size: 502 KiB

二進制
神经科学/神经纤维束3.jpg 查看文件

Before After
Width: 500  |  Height: 334  |  Size: 64 KiB

二進制
神经科学/神经纤维束4.gif 查看文件

Before After
Width: 400  |  Height: 225  |  Size: 1.1 MiB

二進制
神经科学/神经纤维束5.jpg 查看文件

Before After
Width: 500  |  Height: 334  |  Size: 57 KiB

二進制
神经科学/神经纤维束6.jpg 查看文件

Before After
Width: 500  |  Height: 334  |  Size: 49 KiB

二進制
神经科学/神经纤维束7.jpg 查看文件

Before After
Width: 600  |  Height: 600  |  Size: 76 KiB

二進制
神经科学/神经纤维束8.jpg 查看文件

Before After
Width: 500  |  Height: 334  |  Size: 55 KiB

二進制
神经科学/神经纤维束9.jpg 查看文件

Before After
Width: 500  |  Height: 334  |  Size: 38 KiB

二進制
神经科学/神经细胞连接图.jpg 查看文件

Before After
Width: 807  |  Height: 1280  |  Size: 119 KiB

二進制
神经科学/色盲检查图1.jpg 查看文件

Before After
Width: 640  |  Height: 457  |  Size: 71 KiB

二進制
神经科学/色盲检查图2.jpg 查看文件

Before After
Width: 640  |  Height: 496  |  Size: 60 KiB

二進制
神经科学/色盲检查图3.jpg 查看文件

Before After
Width: 640  |  Height: 465  |  Size: 76 KiB

二進制
神经科学/色盲检查图5.jpg 查看文件

Before After
Width: 640  |  Height: 448  |  Size: 69 KiB

二進制
神经科学/色盲检查图6.jpg 查看文件

Before After
Width: 640  |  Height: 433  |  Size: 72 KiB

二進制
神经科学/色盲检查图7.jpg 查看文件

Before After
Width: 640  |  Height: 480  |  Size: 65 KiB

Loading…
取消
儲存