Building VitalPBX on Vultr Automatically
-
Super simple, but not the kind of thing that most people think of doing. So here is an easy way to make automating VitalPBX installs super easy.
- Use CentOS 7 from Vultr's normal VM catelogue. Don't use any special ISOs or anything. Keep it simple and fast.
- Set up root keys to have automatically injected. This means you can SSH into your instance the moment that it is set up.
- Create this Startup Script and Vultr will build your PBX automatically.
Here are the contents to make it easy:
#!/bin/sh yum update -y wget https://raw.githubusercontent.com/VitalPBX/VPS/master/vps.sh chmod +x vps.sh ./vps.sh
Your PBX will go from zero to "done" in just a few seconds, and be fully updated.
-
@scottalanmiller said in Building VitalPBX on Vultr Automatically:
Your PBX will go from zero to "done" in just a few seconds
No. It takes minutes for the script to run. Not many. but minutes, not seconds.
-
@scottalanmiller said in Building VitalPBX on Vultr Automatically:
and be fully updated.
I noticed that the defualt CentOS 7 image was pretty much fully up to date before I ran the install script. Only thing that came down when I ran
yum update -y
waswget
. -
@JaredBusch said in Building VitalPBX on Vultr Automatically:
@scottalanmiller said in Building VitalPBX on Vultr Automatically:
and be fully updated.
I noticed that the defualt CentOS 7 image was pretty much fully up to date before I ran the install script. Only thing that came down when I ran
yum update -y
waswget
.Yeah, it is more of a "just in case" something is out of date. I almost never see it not fully up to date when I fire it up.