Running MySQL on Amazon EC2 with EBS (Elastic Block Store)

https://aws.amazon.com/articles/1663 Configuring MySQL to use the EBS volume Now that we have an EBS volume mounted on the instance with a good file system, let’s put the MySQL database on that volume and tell MySQL where it is. Stop the MySQL server. sudo /etc/init.d/mysql stop Move the existing database files to the EBS volume. Point…

How to install ZoneMinder on Raspberry

https://wiki.zoneminder.com/Raspbian https://bkjaya.wordpress.com/2016/11/23/how-to-install-zoneminder-1-29-0-on-raspberry-pi-3-with-raspbian-8-1-jessy-64-bit/ sudo nano  /etc/apt/sources.list Added: deb http://http.debian.net/debian jessie-backports main sudo apt-get update sudo apt-get upgrade sudo apt-get dist-upgrade sudo apt-get install zoneminder mysql -uroot -p < /usr/share/zoneminder/db/zm_create.sql mysql -uroot -p -e “grant all on zm.* to ‘zmuser’@localhost identified by ‘zmpass’;” mysqladmin -uroot -p reload sudo chmod 740 /etc/zm/zm.conf sudo chown root:www-data /etc/zm/zm.conf sudo systemctl…