unraid下安装shinobi

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

  1. Navigate to your Shinobi directory

    cd /home/Shinobi
  2. Open the MariaDB/MySQL Terminal client
    mysql

  3. 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;
  4. Exit the SQL client

    exit;
  5. If you need to enable the mysql database type you can run the following.

    node tools/modifyConfiguration.js databaseType=mysql
  6. restart shinobi

    pm2 restart all

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注