Installing on Linux
Depending on which flavour of Linux distribution you are using, choose one of the options below.
Installing the rpm package
Run the following command on the server:
sudo rpm -Uvh /files/asset-server/unity_asset_server-2.0.1.i386.rpm
If this is a new installation, you will also have to supply an initial password for the admin user:
sudo /opt/unity_asset_server/bin/reset_admin_password
When prompted, please supply a new password for the admin user.
You should now be able to fire up Unity and use it to create projects and users on the newly installed Asset Server.
Note on upgrading from 1.0.x: Since the Asset Server is now built from a new version of PostgreSQL which is not binary compatible with the version used in 1.0, the installer will have to perform a full dump and restore when upgrading for the first time. If you are upgrading a large installation, the installer postprocessing step might take a while to complete. (A huge installation could take up to a couple of hours.)
During the upgrade, the existing installation will be moved to /opt/unity_asset_server.bak. The upgrade will require at least the same amount of additional disk space as the size of that folder.
Installing the deb package
Run the following commands on the server:
wget /files/asset-server/unity-asset-server_2.0.1_i386.deb
sudo dpkg -i unity-asset-server_2.0.1_i386.deb
If this is a new installation, you will also have to supply an initial password for the admin user:
sudo /opt/unity_asset_server/bin/reset_admin_password
When prompted, please supply a new password for the admin user.
You should now be able to fire up Unity and use it to create projects and users on the newly installed Asset Server.
Note: if you don't have wget installed on the server, you should download the tgz file to your local machine and use some other means to transfer it to the server, such as scp or an ftp client.
You could also simply double-click on the deb file after downloading, if you are running a graphical desktop on the machine.
Installing from source
We recommend that you try installing the rpm first. Should that fail, you can try compiling it yourself from the source tarball. Before attempting the installation please make sure you have the following installed on the server machine:
On the server machine, run the following commands as root:
wget /files/asset-server/unity_asset_server-2.0.1.tgz
tar xvzf unity_asset_server-2.0.1.tgz
cd unity_asset_server-2.0.1
./install.sh
When prompted, please supply a new password for the admin user.
You should now be able to fire up Unity and use it to create projects and users on the newly installed Asset Server.
Note: if you don't have wget installed on the server, you should download the tgz file to your local machine and use some other means to transfer it to the server, such as scp or an ftp client.