mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-02-12 11:01:52 +00:00
Merge pull request #5374 from Ylianst/update-links-docs
Update links docs
This commit is contained in:
commit
0a147a18d4
2 changed files with 6 additions and 6 deletions
|
@ -13,7 +13,7 @@ That's it. MeshCentral will set itself up and start managing computers on your l
|
||||||
|
|
||||||
For Windows users, you can download the MeshCentral Installer that will automate installation of NodeJS and provide basic configuration of the server. This option is not recommended for advanced users.
|
For Windows users, you can download the MeshCentral Installer that will automate installation of NodeJS and provide basic configuration of the server. This option is not recommended for advanced users.
|
||||||
|
|
||||||
[Win32 MeshCentral Installer](https://meshcentral.com/info/tools/MeshCentralInstaller.exe)
|
[Win32 MeshCentral Installer](https://meshcentral.com/tools/MeshCentralInstaller.exe)
|
||||||
|
|
||||||
By default, MeshCentral will use NeDB as this is the built-in database. For more advanced users, it's recommended to switch to using MongoDB. MeshCentral can be installed on a very small server. A [Raspberry Pi](https://www.raspberrypi.org/) or [AWS t3.nano running Amazon Linux 2 instance](https://aws.amazon.com/ec2/pricing/on-demand/) for 5$ a month will do just fine for managing up to a few hundred devices.
|
By default, MeshCentral will use NeDB as this is the built-in database. For more advanced users, it's recommended to switch to using MongoDB. MeshCentral can be installed on a very small server. A [Raspberry Pi](https://www.raspberrypi.org/) or [AWS t3.nano running Amazon Linux 2 instance](https://aws.amazon.com/ec2/pricing/on-demand/) for 5$ a month will do just fine for managing up to a few hundred devices.
|
||||||
|
|
||||||
|
@ -23,10 +23,10 @@ You can run the MeshCentral Server with --help to get options for background ins
|
||||||
|
|
||||||
Once you get MeshCentral installed, the first user account that is created will be the server administrator. So, don't delay and navigate to the login page and create a new account. You can then start using your server right away. A lot of the fun with MeshCentral is the 100's of configuration options that are available in the config.json file. You can put your own branding on the web pages, setup a SMTP email server, SMS services and much more.
|
Once you get MeshCentral installed, the first user account that is created will be the server administrator. So, don't delay and navigate to the login page and create a new account. You can then start using your server right away. A lot of the fun with MeshCentral is the 100's of configuration options that are available in the config.json file. You can put your own branding on the web pages, setup a SMTP email server, SMS services and much more.
|
||||||
|
|
||||||
You can look [here for simple config.json](https://raw.githubusercontent.com/Ylianst/MeshCentral/master/sample-config.json), [here for a more advanced configuration](https://raw.githubusercontent.com/Ylianst/MeshCentral/master/sample-config-advanced.json) and [here for all possible configuration options](https://raw.githubusercontent.com/Ylianst/MeshCentral/master/meshcentral-config-schema.json). You can also take a look at the [MeshCentral User's Guide](https://meshcentral.com/info/docs/MeshCentral2InstallGuide.pdf) and [tutorial videos](https://meshcentral.com/info/tutorials.html) for additional help.
|
You can look [here for simple config.json](https://raw.githubusercontent.com/Ylianst/MeshCentral/master/sample-config.json), [here for a more advanced configuration](https://raw.githubusercontent.com/Ylianst/MeshCentral/master/sample-config-advanced.json) and [here for all possible configuration options](https://raw.githubusercontent.com/Ylianst/MeshCentral/master/meshcentral-config-schema.json). You can also take a look at the [MeshCentral User's Guide](https://meshcentral.com/docs/MeshCentral2InstallGuide.pdf) and [tutorial videos](https://www.youtube.com/@MeshCentral/videos) for additional help.
|
||||||
|
|
||||||
## Video Walkthru
|
## Video Walkthru
|
||||||
|
|
||||||
<div class="video-wrapper">
|
<div class="video-wrapper">
|
||||||
<iframe width="320" height="180" src="https://www.youtube.com/embed/LSiWuu71k_U" frameborder="0" allowfullscreen></iframe>
|
<iframe width="320" height="180" src="https://www.youtube.com/embed/LSiWuu71k_U" frameborder="0" allowfullscreen></iframe>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -13,7 +13,7 @@ For some who want to skip this document entirely, there are quick install script
|
||||||
For Amazon EC2 users, that want to manage 100 devices or less. Launch a t3.nano or t3.micro EC2 instance with Amazon Linux 2 with TCP ports 22 (SSH), 80 (HTTP), 443 (HTTPS) and 4433 (CIRA) open. Then login as `ec2-user` and enter the following commands:
|
For Amazon EC2 users, that want to manage 100 devices or less. Launch a t3.nano or t3.micro EC2 instance with Amazon Linux 2 with TCP ports 22 (SSH), 80 (HTTP), 443 (HTTPS) and 4433 (CIRA) open. Then login as `ec2-user` and enter the following commands:
|
||||||
|
|
||||||
```
|
```
|
||||||
wget http://info.meshcentral.com/scripts/mc-aws-linux2.sh
|
wget https://meshcentral.com/scripts/mc-aws-linux2.sh
|
||||||
chmod 755 mc-aws-linux2.sh
|
chmod 755 mc-aws-linux2.sh
|
||||||
./mc-aws-linux2.sh
|
./mc-aws-linux2.sh
|
||||||
```
|
```
|
||||||
|
@ -21,7 +21,7 @@ chmod 755 mc-aws-linux2.sh
|
||||||
This will download the fast install script and once run, will install nodejs, meshcentral, setup systemd and start the server. For a larger instance like a t3.small, t3.medium or larger you can run the following that does the same but also installs MongoDB.
|
This will download the fast install script and once run, will install nodejs, meshcentral, setup systemd and start the server. For a larger instance like a t3.small, t3.medium or larger you can run the following that does the same but also installs MongoDB.
|
||||||
|
|
||||||
```
|
```
|
||||||
wget http://info.meshcentral.com/scripts/mc-aws-linux2-mongo.sh
|
wget https://meshcentral.com/scripts/mc-aws-linux2-mongo.sh
|
||||||
chmod 755 mc-aws-linux2-mongo.sh
|
chmod 755 mc-aws-linux2-mongo.sh
|
||||||
./mc-aws-linux2-mongo.sh
|
./mc-aws-linux2-mongo.sh
|
||||||
```
|
```
|
||||||
|
@ -33,7 +33,7 @@ After these scripts are run, try accessing the server using a browser. MeshCentr
|
||||||
For 100 devices or less, launch an instance of Ubuntu 18.04 using a small B1s instance. Set the username to `default` in all lower case and open ports 22, 80, 443 and 3389 using the basic network profile. Then start the instance and run the following lines.
|
For 100 devices or less, launch an instance of Ubuntu 18.04 using a small B1s instance. Set the username to `default` in all lower case and open ports 22, 80, 443 and 3389 using the basic network profile. Then start the instance and run the following lines.
|
||||||
|
|
||||||
```
|
```
|
||||||
wget http://info.meshcentral.com/scripts/mc-azure-ubuntu1804.sh
|
wget https://meshcentral.com/scripts/mc-azure-ubuntu1804.sh
|
||||||
chmod 755 mc-azure-ubuntu1804.sh
|
chmod 755 mc-azure-ubuntu1804.sh
|
||||||
./mc-azure-ubuntu1804.sh
|
./mc-azure-ubuntu1804.sh
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue