shinobi是一个nvr服务器,可以自己搭配ipc和各种手机app使使用,结合unraid的存储,就是一台超级存储容量的NVR录像机了,比收费的云存合适多了。
docker:spaceinvaderone/shinobi_pro_unraid:latest
按照默认的配置安装就可以了。
安装后,登陆super账户: xxx:xxx/super,账号是在docker安装时设置的,默认 admin password
登陆后可能会提示mysql没有运行,实际是数据库配置没生效:
https://hub.shinobi.video/articles/view/wcz3OabYEfOhS7h
-
Navigate to your Shinobi directory
cd /home/Shinobi
-
Open the MariaDB/MySQL Terminal client
mysql
-
Load the SQL files. framework.sql is the database architecture. user.sql are the credentials for Shinobi to connect to the database.
source sql/framework.sql; source sql/user.sql;
-
Exit the SQL client
exit;
-
If you need to enable the mysql database type you can run the following.
node tools/modifyConfiguration.js databaseType=mysql
-
restart shinobi
pm2 restart all