overte-HifiExperiments/pkg-scripts
2021-06-25 01:45:49 -04:00
..
docker-entrypoint.sh Migration progressed far enough to get a .deb file out of this, installation has not yet been tested on any machine 2020-06-05 23:34:32 -07:00
docker-vircadia-supervisor.conf Add --get-temp-name to domain-server invocation in creation of Docker 2020-08-20 16:33:30 -07:00
Dockerfile.templ Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
make-deb-server Update pkg-scripts. 2021-02-21 19:41:44 -05:00
make-docker-server Migration progressed far enough to get a .deb file out of this, installation has not yet been tested on any machine 2020-06-05 23:34:32 -07:00
make-rpm-server Update make-rpm-server 2021-02-23 23:08:14 -05:00
new-server Initial code pass: 2020-06-05 23:34:32 -07:00
README.md Update pkg-scripts. 2021-02-21 19:41:44 -05:00
server-control Get most 'project-athena' -> 'vircadia' references. 2020-12-13 04:42:34 -05:00
server-postinst Smoketesting AWS Linux install/uninstall/upgrade actions 2020-06-07 04:46:04 +00:00
server-postrm Migration progressed far enough to get a .deb file out of this, installation has not yet been tested on any machine 2020-06-05 23:34:32 -07:00
server-prerm First attempt at updating the AWS Linux installation scripts. Ubuntu scripts should restart on upgrade and shutdown on uninstall 2020-06-07 02:10:41 +00:00
server-rules Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
vircadia-assignment-client.service Update vircadia-assignment-client.service 2021-06-25 01:45:31 -04:00
vircadia-assignment-client@.service Update vircadia-assignment-client@.service 2021-06-25 01:45:49 -04:00
vircadia-domain-server.service Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
vircadia-domain-server@.service Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
vircadia-ice-server.service Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
vircadia-ice-server@.service Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
vircadia-server.spec Update 'kasenvr' -> 'vircadia' 2020-12-10 18:56:57 -05:00
vircadia-server.target Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
vircadia-server@.target Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00

Vircadia Server Packaging Scripts

Collection of scripts to create server distribution packages. Most of these scripts assume use of the build script at https://github.com/vircadia/vircadia-builder, specifically that the following directory structure exists:

base folder/
	source/		git checkout
	build/		result of cmake build
	qt5-install/	installed or built Qt5 installation

These scripts assume that the current directory is the pkg-scripts folder inside of the source directory and that the base folder can be reached by going to ../... This may not work if pkg-scripts is a symlink; adding an VIRCADIA=~/Vircadia to the beginning of the commandline will override where it looks for the base folder.

Ubuntu

DEBVERSION="Semver e.g. 2021.1.0" DEBEMAIL="your-email@somewhere.com" DEBFULLNAME="Your Full Name" ./make-deb-server

This script will retrieve the current git commit date and hash and append it to your specified version. It will attempt construct a .deb file in the pkg-scripts folder

Amazon Linux 2

You will need to install rpm-build if you have not already.

sudo yum install rpm-build

Then, run the build script.

RPMVERSION="Semver e.g. 2021.1.0" ./make-rpm-server

This script will retrieve the current git commit date and hash and append it to your specified version. It will attempt construct an .rpm file in the pkg-scripts folder

Docker

./make-docker-server

This script will attempt to create a docker container.

Results

Binaries

The following directory structure is created for binaries:

/opt/vircadia - executables
/opt/vircadia/lib - private shared libraries required for executables
/opt/vircadia/resources - files required by domain-server administrative website
/opt/vircadia/plugins - files required by assignment-client, mainly for audio codecs

Services

The following systemd services are installed in /usr/lib/systemd/system:

vircadia-assignment-client.service
vircadia-domain-server.service
vircadia-server.target - used to launch/shutdown the two prior services
vircadia-assignment-client@.service
vircadia-domain-server@.service
vircadia-server@.target - used to launch/shutdown the two prior services

The top three services in this list are the "normal" services that launch Vircadia in the typical fashion. The bottom three services are "template" services designed to permit multiple services to be installed and running on a single machine.

The script /opt/vircadia/new-server serverName basePort will do the necessary setup for a new domain with the specified server name and port. Upon installation the package will create and launch a domain named "default" at base port 40100. The domain name here has nothing to do with the name people will use to find your domain and has nothing to do with "place names", it is only used to locate the files used to configure and run the domain on your server.

Stored Files

The server stores its files in the following locations:

/var/lib/vircadia/.local - "unnamed" services (the default location for Vircadia servers)
/var/lib/vircadia/serverName - "named" (template) domains
/etc/opt/vircadia - environment variables when launching named domains