2017-05-17 22:56:23 -07:00
|
|
|
Misskey Setup and Installation Guide
|
|
|
|
================================================================
|
|
|
|
|
2017-11-12 03:25:18 -08:00
|
|
|
We thank you for your interest in setting up your Misskey server!
|
2017-05-17 23:05:48 -07:00
|
|
|
This guide describes how to install and setup Misskey.
|
2017-05-17 22:56:23 -07:00
|
|
|
|
2017-05-18 08:55:06 -07:00
|
|
|
[Japanese version also available - 日本語版もあります](./setup.ja.md)
|
2017-05-17 22:56:23 -07:00
|
|
|
|
2017-05-18 08:52:50 -07:00
|
|
|
----------------------------------------------------------------
|
2017-05-17 22:56:23 -07:00
|
|
|
|
2018-07-14 16:26:23 -07:00
|
|
|
*1.* Create Misskey user
|
2017-05-17 22:56:23 -07:00
|
|
|
----------------------------------------------------------------
|
2018-11-16 05:31:53 -08:00
|
|
|
Running misskey as root is not a good idea so we create a user for that.
|
2018-07-14 16:26:23 -07:00
|
|
|
In debian for exemple :
|
2017-05-17 22:56:23 -07:00
|
|
|
|
2018-07-14 17:43:16 -07:00
|
|
|
```
|
2018-07-14 16:26:23 -07:00
|
|
|
adduser --disabled-password --disabled-login misskey
|
2017-11-22 12:43:00 -08:00
|
|
|
```
|
|
|
|
|
2018-03-26 20:55:58 -07:00
|
|
|
*2.* Install dependencies
|
2017-05-17 22:56:23 -07:00
|
|
|
----------------------------------------------------------------
|
2017-05-18 08:52:50 -07:00
|
|
|
Please install and setup these softwares:
|
2017-05-17 22:56:23 -07:00
|
|
|
|
2017-05-18 08:52:50 -07:00
|
|
|
#### Dependencies :package:
|
2019-04-07 05:50:36 -07:00
|
|
|
* **[Node.js](https://nodejs.org/en/)** >= 11.7.0
|
|
|
|
* **[PostgreSQL](https://www.postgresql.org/)** >= 10
|
2019-04-13 03:19:32 -07:00
|
|
|
* **[Redis](https://redis.io/)**
|
2017-05-18 08:52:50 -07:00
|
|
|
|
|
|
|
##### Optional
|
2019-07-15 05:32:09 -07:00
|
|
|
* [Yarn](https://yarnpkg.com/) *Optional but recommended for security reason. If you won't install it, use `npx yarn` instead of `yarn`.*
|
2018-10-17 06:42:45 -07:00
|
|
|
* [Elasticsearch](https://www.elastic.co/) - required to enable the search feature
|
2019-02-04 21:24:10 -08:00
|
|
|
* [FFmpeg](https://www.ffmpeg.org/)
|
2017-05-18 08:52:50 -07:00
|
|
|
|
2019-04-13 03:19:32 -07:00
|
|
|
*3.* Install Misskey
|
2018-07-14 16:26:23 -07:00
|
|
|
----------------------------------------------------------------
|
2019-04-16 10:15:27 -07:00
|
|
|
1. Connect to misskey user.
|
|
|
|
|
|
|
|
`su - misskey`
|
|
|
|
|
|
|
|
2. Clone the misskey repo from master branch.
|
|
|
|
|
|
|
|
`git clone -b master git://github.com/syuilo/misskey.git`
|
|
|
|
|
|
|
|
3. Navigate to misskey directory
|
|
|
|
|
|
|
|
`cd misskey`
|
|
|
|
|
|
|
|
4. Checkout to the [latest release](https://github.com/syuilo/misskey/releases/latest)
|
|
|
|
|
|
|
|
`git checkout master`
|
|
|
|
|
|
|
|
5. Install misskey dependencies.
|
|
|
|
|
2019-07-15 05:32:09 -07:00
|
|
|
`yarn`
|
2018-04-01 19:32:27 -07:00
|
|
|
|
2019-04-13 03:19:32 -07:00
|
|
|
*4.* Configure Misskey
|
2018-07-14 16:26:23 -07:00
|
|
|
----------------------------------------------------------------
|
2019-04-16 10:15:27 -07:00
|
|
|
1. Copy the `.config/example.yml` and rename it to `default.yml`.
|
|
|
|
|
|
|
|
`cp .config/example.yml .config/default.yml`
|
|
|
|
|
2018-07-14 17:43:16 -07:00
|
|
|
2. Edit `default.yml`
|
2017-05-17 22:56:23 -07:00
|
|
|
|
2019-04-13 03:19:32 -07:00
|
|
|
*5.* Build Misskey
|
2018-04-01 19:32:27 -07:00
|
|
|
----------------------------------------------------------------
|
2018-04-15 03:52:16 -07:00
|
|
|
|
2018-06-01 11:52:47 -07:00
|
|
|
Build misskey with the following:
|
|
|
|
|
2019-07-15 05:32:09 -07:00
|
|
|
`NODE_ENV=production yarn build`
|
2018-06-01 11:52:47 -07:00
|
|
|
|
2018-11-10 21:47:53 -08:00
|
|
|
If you're on Debian, you will need to install the `build-essential`, `python` package.
|
2018-06-01 11:24:30 -07:00
|
|
|
|
2018-06-01 11:52:47 -07:00
|
|
|
If you're still encountering errors about some modules, use node-gyp:
|
2018-06-01 11:24:30 -07:00
|
|
|
|
2019-07-15 05:32:09 -07:00
|
|
|
1. `npx node-gyp configure`
|
|
|
|
2. `npx node-gyp build`
|
|
|
|
3. `NODE_ENV=production yarn build`
|
2017-05-17 22:56:23 -07:00
|
|
|
|
2019-04-13 03:19:32 -07:00
|
|
|
*6.* Init DB
|
2019-04-07 05:50:36 -07:00
|
|
|
----------------------------------------------------------------
|
|
|
|
``` shell
|
2019-07-15 05:32:09 -07:00
|
|
|
yarn run init
|
2019-04-07 05:50:36 -07:00
|
|
|
```
|
|
|
|
|
2019-04-13 03:19:32 -07:00
|
|
|
*7.* That is it.
|
2017-05-17 22:56:23 -07:00
|
|
|
----------------------------------------------------------------
|
2017-05-18 15:49:16 -07:00
|
|
|
Well done! Now, you have an environment that run to Misskey.
|
2017-05-17 22:56:23 -07:00
|
|
|
|
2018-07-14 16:26:23 -07:00
|
|
|
### Launch normally
|
2019-02-21 21:18:05 -08:00
|
|
|
Just `NODE_ENV=production npm start`. GLHF!
|
2018-07-14 16:26:23 -07:00
|
|
|
|
|
|
|
### Launch with systemd
|
|
|
|
|
2019-04-16 10:15:27 -07:00
|
|
|
1. Create a systemd service here
|
|
|
|
|
|
|
|
`/etc/systemd/system/misskey.service`
|
|
|
|
|
2018-07-14 16:26:23 -07:00
|
|
|
2. Edit it, and paste this and save:
|
|
|
|
|
2019-04-16 10:15:27 -07:00
|
|
|
```
|
|
|
|
[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
|
|
|
|
```
|
|
|
|
|
|
|
|
3. Reload systemd and enable the misskey service.
|
|
|
|
|
|
|
|
`systemctl daemon-reload ; systemctl enable misskey`
|
|
|
|
|
|
|
|
4. Start the misskey service.
|
2018-07-14 16:26:23 -07:00
|
|
|
|
2019-04-16 10:15:27 -07:00
|
|
|
`systemctl start misskey`
|
2018-07-14 16:26:23 -07:00
|
|
|
|
|
|
|
You can check if the service is running with `systemctl status misskey`.
|
2017-05-17 22:56:23 -07:00
|
|
|
|
2018-11-16 05:31:53 -08:00
|
|
|
### How to update your Misskey server to the latest version
|
2019-04-16 10:15:27 -07:00
|
|
|
1. `git checkout master`
|
|
|
|
2. `git pull`
|
2019-07-15 05:32:09 -07:00
|
|
|
3. `yarn install`
|
|
|
|
4. `NODE_ENV=production yarn build`
|
|
|
|
5. `yarn migrate`
|
2019-01-20 03:11:44 -08:00
|
|
|
6. Restart your Misskey process to apply changes
|
2019-01-20 03:13:08 -08:00
|
|
|
7. Enjoy
|
2018-07-24 12:15:22 -07:00
|
|
|
|
2019-07-09 01:06:12 -07:00
|
|
|
If you encounter any problems with updating, please try the following:
|
2019-07-15 05:32:09 -07:00
|
|
|
1. `yarn clean` or `yarn cleanall`
|
|
|
|
2. Retry update (Don't forget `yarn install`
|
2019-07-09 01:06:12 -07:00
|
|
|
|
2018-07-24 12:15:22 -07:00
|
|
|
----------------------------------------------------------------
|
|
|
|
|
|
|
|
If you have any questions or troubles, feel free to contact us!
|