浏览代码

Adds Notes on Troubleshooting VMRay

Fred Damstra [afs macbook] 3 年之前
父节点
当前提交
4cd91e4d29
共有 1 个文件被更改,包括 9 次插入3 次删除
  1. 9 3
      VMRay Notes.md

+ 9 - 3
VMRay Notes.md

@@ -183,10 +183,16 @@ sudo systemctl start vmray-worker
 
 # Ran analysis of pageant.exe as static only.
 "Post processing error Error during post processing: report_engine_result.json not found (possible crash)."
-
-
 ```
 
+# Additional Troubleshooting
 
+In addition to `/opt/vmray/log` on both the worker and the server, check:
+* /opt/vmray/var/analyses - Will contain a zip file with a log of the analysis
+* Generate a support package and download it through the server.
 
-
+Verify permissions. The umask caused issues once, and had to be fixed via:
+```
+sudo find /opt/vmray -type f -exec chmod g+r,o+r {} \;
+sudo find /opt/vmray -type d -exec chmod g+rx,o+rx {} \;
+```