2017-05-18 14:56:23 +09:00
|
|
|
Misskey Setup and Installation Guide
|
|
|
|
================================================================
|
|
|
|
|
2017-11-12 20:25:18 +09:00
|
|
|
We thank you for your interest in setting up your Misskey server!
|
2017-05-18 15:05:48 +09:00
|
|
|
This guide describes how to install and setup Misskey.
|
2017-05-18 14:56:23 +09:00
|
|
|
|
2017-05-19 00:55:06 +09:00
|
|
|
[Japanese version also available - 日本語版もあります](./setup.ja.md)
|
2017-05-18 14:56:23 +09:00
|
|
|
|
2017-05-19 00:52:50 +09:00
|
|
|
----------------------------------------------------------------
|
2017-05-18 14:56:23 +09:00
|
|
|
|
2018-07-15 08:26:23 +09:00
|
|
|
*1.* Create Misskey user
|
2017-05-18 14:56:23 +09:00
|
|
|
----------------------------------------------------------------
|
2018-11-16 22:31:53 +09:00
|
|
|
Running misskey as root is not a good idea so we create a user for that.
|
2018-07-15 08:26:23 +09:00
|
|
|
In debian for exemple :
|
2017-05-18 14:56:23 +09:00
|
|
|
|
2018-07-15 09:43:16 +09:00
|
|
|
```
|
2018-07-15 08:26:23 +09:00
|
|
|
adduser --disabled-password --disabled-login misskey
|
2017-11-23 05:43:00 +09:00
|
|
|
```
|
|
|
|
|
2018-03-27 12:55:58 +09:00
|
|
|
*2.* Install dependencies
|
2017-05-18 14:56:23 +09:00
|
|
|
----------------------------------------------------------------
|
2017-05-19 00:52:50 +09:00
|
|
|
Please install and setup these softwares:
|
2017-05-18 14:56:23 +09:00
|
|
|
|
2017-05-19 00:52:50 +09:00
|
|
|
#### Dependencies :package:
|
2018-11-05 10:48:40 +09:00
|
|
|
* **[Node.js](https://nodejs.org/en/)** >= 10.0.0
|
2018-07-15 08:26:23 +09:00
|
|
|
* **[MongoDB](https://www.mongodb.com/)** >= 3.6
|
2017-05-19 00:52:50 +09:00
|
|
|
|
|
|
|
##### Optional
|
2018-10-11 15:50:27 +09:00
|
|
|
* [Redis](https://redis.io/)
|
|
|
|
* Redis is optional, but we strongly recommended to install it
|
2018-10-17 22:42:45 +09:00
|
|
|
* [Elasticsearch](https://www.elastic.co/) - required to enable the search feature
|
2017-05-19 00:52:50 +09:00
|
|
|
|
2018-07-23 20:48:55 +09:00
|
|
|
*3.* Setup MongoDB
|
2018-04-02 11:32:27 +09:00
|
|
|
----------------------------------------------------------------
|
2018-11-16 22:31:53 +09:00
|
|
|
As root:
|
2018-07-15 08:26:23 +09:00
|
|
|
1. `mongo` Go to the mongo shell
|
|
|
|
2. `use misskey` Use the misskey database
|
|
|
|
3. `db.users.save( {dummy:"dummy"} )` Write dummy data to initialize the db.
|
|
|
|
4. `db.createUser( { user: "misskey", pwd: "<password>", roles: [ { role: "readWrite", db: "misskey" } ] } )` Create the misskey user.
|
|
|
|
5. `exit` You're done !
|
|
|
|
|
|
|
|
*4.* Install Misskey
|
|
|
|
----------------------------------------------------------------
|
|
|
|
1. `su - misskey` Connect to misskey user.
|
|
|
|
2. `git clone -b master git://github.com/syuilo/misskey.git` Clone the misskey repo from master branch.
|
|
|
|
3. `cd misskey` Navigate to misskey directory
|
|
|
|
4. `git checkout $(git tag -l | grep -v 'rc[0-9]*$' | sort -V | tail -n 1)` Checkout to the [latest release](https://github.com/syuilo/misskey/releases/latest)
|
|
|
|
5. `npm install` Install misskey dependencies.
|
2018-04-02 11:32:27 +09:00
|
|
|
|
2018-11-16 22:31:53 +09:00
|
|
|
*(optional)* Generate VAPID keys
|
2018-07-15 08:26:23 +09:00
|
|
|
----------------------------------------------------------------
|
2018-09-03 18:58:26 +09:00
|
|
|
If you want to enable ServiceWorker, you need to generate VAPID keys:
|
2018-11-16 22:31:53 +09:00
|
|
|
Unless you have set your global node_modules location elsewhere, you need to run this as root.
|
2018-07-15 08:26:23 +09:00
|
|
|
|
|
|
|
``` shell
|
|
|
|
npm install web-push -g
|
|
|
|
web-push generate-vapid-keys
|
|
|
|
```
|
|
|
|
|
2018-11-16 22:31:53 +09:00
|
|
|
*5.* Configure Misskey
|
2018-07-15 08:26:23 +09:00
|
|
|
----------------------------------------------------------------
|
|
|
|
1. `cp .config/example.yml .config/default.yml` Copy the `.config/example.yml` and rename it to `default.yml`.
|
2018-07-15 09:43:16 +09:00
|
|
|
2. Edit `default.yml`
|
2017-05-18 14:56:23 +09:00
|
|
|
|
2018-07-19 00:04:09 +09:00
|
|
|
*6.* Build Misskey
|
2018-04-02 11:32:27 +09:00
|
|
|
----------------------------------------------------------------
|
2018-04-15 19:52:16 +09:00
|
|
|
|
2018-06-02 03:52:47 +09:00
|
|
|
Build misskey with the following:
|
|
|
|
|
|
|
|
`npm run build`
|
|
|
|
|
2018-11-11 14:47:53 +09:00
|
|
|
If you're on Debian, you will need to install the `build-essential`, `python` package.
|
2018-06-02 03:24:30 +09:00
|
|
|
|
2018-06-02 03:52:47 +09:00
|
|
|
If you're still encountering errors about some modules, use node-gyp:
|
2018-06-02 03:24:30 +09:00
|
|
|
|
2018-06-02 03:52:47 +09:00
|
|
|
1. `npm install -g node-gyp`
|
|
|
|
2. `node-gyp configure`
|
|
|
|
3. `node-gyp build`
|
|
|
|
4. `npm run build`
|
2017-05-18 14:56:23 +09:00
|
|
|
|
2018-07-19 00:04:09 +09:00
|
|
|
*7.* That is it.
|
2017-05-18 14:56:23 +09:00
|
|
|
----------------------------------------------------------------
|
2017-05-19 07:49:16 +09:00
|
|
|
Well done! Now, you have an environment that run to Misskey.
|
2017-05-18 14:56:23 +09:00
|
|
|
|
2018-07-15 08:26:23 +09:00
|
|
|
### Launch normally
|
|
|
|
Just `npm start`. GLHF!
|
|
|
|
|
|
|
|
### Launch with systemd
|
|
|
|
|
|
|
|
1. Create a systemd service here: `/etc/systemd/system/misskey.service`
|
|
|
|
2. 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
|
|
|
|
TimeoutSec=60
|
|
|
|
StandardOutput=syslog
|
|
|
|
StandardError=syslog
|
|
|
|
SyslogIdentifier=misskey
|
|
|
|
Restart=always
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|
|
|
|
```
|
|
|
|
|
|
|
|
3. `systemctl daemon-reload ; systemctl enable misskey` Reload systemd and enable the misskey service.
|
|
|
|
4. `systemctl start misskey` Start the misskey service.
|
|
|
|
|
|
|
|
You can check if the service is running with `systemctl status misskey`.
|
2017-05-18 14:56:23 +09:00
|
|
|
|
2018-11-16 22:31:53 +09:00
|
|
|
### How to update your Misskey server to the latest version
|
2018-07-15 08:26:23 +09:00
|
|
|
1. `git fetch`
|
|
|
|
2. `git checkout $(git tag -l | grep -v 'rc[0-9]*$' | sort -V | tail -n 1)`
|
|
|
|
3. `npm install`
|
|
|
|
4. `npm run build`
|
2018-09-01 18:42:46 +09:00
|
|
|
5. Check [ChangeLog](../CHANGELOG.md) for migration information
|
2018-07-25 04:15:22 +09:00
|
|
|
|
|
|
|
----------------------------------------------------------------
|
|
|
|
|
|
|
|
If you have any questions or troubles, feel free to contact us!
|