echo "Acquire::ForceIPv4 true;" >> /etc/apt/apt.conf.d/99force-ipv4
- We need to install supervisor daemon
- Create /etc/supervisor/conf.d/mysql.conf config file
- Restart supervisor
apt-get install supervisor -y
echo "[program:mysqld]
command=/usr/bin/pidproxy /var/run/mysqld/mysqld.pid /usr/sbin/mysqld --pid-file=/var/run/mysqld/mysqld.pid
stdout_logfile=/var/log/supervisor/%(program_name)s.log
In order to set up software raid we need to install mdadm tools (Ubuntu/Debian)
apt-get install mdadm
Now for setting up raid one using two drives for example /dev/sdd and /dev/sdc we are issuing the following command
mdadm --create /dev/md2 --level=1 --raid-devices=2 /dev/sdc /dev/sdd
mkfs.ext4 /dev/md2
sudo apt-get update && sudo apt-get install apt-transport-https ca-certificates curl -y
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
echo "deb https://apt.dockerproject.org/repo ubuntu-xenial main" | sudo tee /etc/apt/sources.list.d/docker.list
sudo apt-get update
Setting IPv6 for HOST machine working on Debian jessi and GUEST VM using Proxmox 4.3 installation from ovh template
Installation process is giving us ready to use machine which we can access via SSH (port 22) or web interface (port 8006) with setup network interfaces. Unfortunately during the process of testing IPv6 on vanilla Proxmox 4.3 delivered by OVH doesn't work out of the box.
ping6 ipv6.google.com
connect: Network is unreachable