We thank you for your interest in setting up your Misskey server! This guide describes how to install and setup Misskey.
Running misskey as root is not a good idea so we create a user for that. In debian for exemple :
adduser --disabled-password --disabled-login misskey
Please install and setup these softwares:
- Node.js (12.x, 14.x)
- PostgreSQL (>= 10)
- Redis
- Yarn Optional but recommended for security reason. If you won't install it, use
npx yarninstead ofyarn. - Elasticsearch - required to enable the search feature
- FFmpeg
-
Connect to misskey user.
su - misskey -
Clone the misskey repo from master branch.
git clone -b master git://github.com/misskey-dev/misskey.git -
Navigate to misskey directory
cd misskey -
Checkout to the latest release
git checkout master -
Install misskey dependencies.
yarn
-
Copy the
.config/example.ymland rename it todefault.yml.cp .config/example.yml .config/default.yml -
Edit
default.yml
Build misskey with the following:
NODE_ENV=production yarn build
If you're on Debian, you will need to install the build-essential, python package.
If you're still encountering errors about some modules, use node-gyp:
npx node-gyp configurenpx node-gyp buildNODE_ENV=production yarn build
yarn run initWell done! Now, you have an environment that run to Misskey.
Just NODE_ENV=production npm start. GLHF!
-
Create a systemd service here
/etc/systemd/system/misskey.service -
Edit it, and paste this and save:
[Unit] Description=Misskey daemon [Service] Type=simple User=misskey ExecStart=/usr/bin/npm start WorkingDirectory=/home/misskey/misskey Environment="NODE_ENV=production" TimeoutSec=60 StandardOutput=syslog StandardError=syslog SyslogIdentifier=misskey Restart=always [Install] WantedBy=multi-user.target -
Reload systemd and enable the misskey service.
systemctl daemon-reload ; systemctl enable misskey -
Start the misskey service.
systemctl start misskey
You can check if the service is running with systemctl status misskey.
git checkout mastergit pullyarn installNODE_ENV=production yarn buildyarn migrate- Restart your Misskey process to apply changes
- Enjoy
If you encounter any problems with updating, please try the following:
yarn cleanoryarn cleanall- Retry update (Don't forget
yarn install
If you have any questions or troubles, feel free to contact us!