This page contains the instructions for an all-in-one installation of CloudStack/Vines in Ubuntu Server 18.04 LTS. It is for testing or trial purpose only, so we do not recommend it for a production deployment.
apt-get -y update && apt-get -y upgrade
apt-get -y install bridge-utils openssh-server openntpd genisoimage python3-pip mysql-server nfs-kernel-server qemu-kvm libvirt-bin
/etc/netplan/00-installer-config.yaml
file to /etc/netplan/original-00-installer-config.yaml
to save it as a backup.
mv /etc/netplan/00-installer-config.yaml /etc/netplan/original-00-installer-config.yaml
Use your preferred editor and open a new file /etc/netplan/00-installer-config.yaml
. Add the content below to the file.
network: version: 2 renderer: networkd ethernets: ens3: dhcp4: no dhcp6: no bridges: cloudbr0: interfaces: [ens3] dhcp4: no dhcp6: no addresses: [192.168.122.10/24] gateway4: 192.168.122.1 nameservers: addresses: [8.8.8.8, 8.8.4.4]Apply the changes.
netplan --debbug apply
Associate the IP address with the hostname.
Allow SSH access with root.IP="192.168.122.10"
HOSTNAME=$(hostname -f)
sed -i -e "s/^127.0.1.1.*/$IP $HOSTNAME/" /etc/hosts
sed -i "s/#PermitRootLogin.*/PermitRootLogin yes/" /etc/ssh/sshd_config
wget http://www.inf.ufpr.br/jwvflauzino/vines/binary/cloudstack-deb.tar.gz
Extract files.
tar -zxvf cloudstack-deb.tar.gz
Install cloudstack-common.deb and cloudstack-management.deb
apt -y install ./cloudstack-common_4.15.0.0.deb
apt -y install ./cloudstack-management_4.15.0.0.deb
mysql
Type the commands below to create the root password.
<root-password>
with your real root password.
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '<root-password>';
exit;
Use your preferred editor and open (or create) /etc/mysql/conf.d/cloudstack.cnf
. Add the content below to the file.
innodb_rollback_on_timeout=1 innodb_lock_wait_timeout=600 max_connections=350 server-id=master-01 log-bin=mysql-bin binlog-format = 'ROW'Restart MySQL.
service mysql restart
Deploy the database.
cloudstack-setup-databases cloud:<root-password>@localhost --deploy-as=root:<root-password>
/export/primary
and /export/secondary
directories for the NFS share.
mkdir -p /export/primary /export/secondary
Configure the new directories as NFS exports.
echo "/export *(rw,async,no_root_squash,no_subtree_check)" >> /etc/exports
Export the /export
directory.
exportfs -a
Restart the nfs-kernel-server.
service nfs-kernel-server restart
Create the directories to mount the storages.
mkdir -p /mnt/primary /mnt/secondary
/etc/fstab
file in order to make the mount automatic on system reboot.
Mount the storages.echo "192.168.122.10:/export/primary /mnt/primary nfs rsize=8192,wsize=8192,timeo=14,intr,vers=3,noauto 0 2" >> /etc/fstab
echo "192.168.122.10:/export/secondary /mnt/secondary nfs rsize=8192,wsize=8192,timeo=14,intr,vers=3,noauto 0 2" >> /etc/fstab
mount /mnt/primary
mount /mnt/secondary
apt -y install ./cloudstack-agent_4.15.0.0.deb
Configure and restart the libvirt.
Run the command below to retrieve and decompress the system VM template.sed -i 's/#vnc_listen = "0.0.0.0"/vnc_listen = "0.0.0.0"/' /etc/libvirt/qemu.conf
service libvirt-bin restart
/usr/share/cloudstack-common/scripts/storage/secondary/cloud-install-sys-tmplt -m /mnt/secondary -u http://cloudstack.apt-get.eu/systemvm/4.11/systemvmtemplate-4.11.1-kvm.qcow2.bz2 -h kvm -F
Umount the primary and secondary storages.
umount /mnt/primary
umount /mnt/secondary
Install Primate.apt-key adv --keyserver keys.gnupg.net --recv-keys BDF0E176584DF93F
echo deb https://download.cloudstack.org/primate/testing/preview/debian / > /etc/apt/sources.list.d/cloudstack-primate-tech-preview.list
Reboot the system.apt-get update
apt-get install cloudstack-primate
reboot
192.168.122.10
with the IP of your CloudStack server if need be.
http://192.168.122.10:8080/client/primate
The installation is completed!
You can now access the CloudStack UI (see the Step 9 - Log Into Apache CloudStack) and configure them. In doing so, you must configure your CloudStack Management Server to manage all the resources that were prepared in the previous steps, including each CloudStack host that you have prepared.
If you need more information about it, we recommend see the CloudStack documentation.
Currently, all Vines features are accessed via CloudStack REST API. To learn how to use the Vines features, see the Vines Administration Guide. You can also see more about how the CloudStack REST API works in the Apache CloudStack API Documentation.