<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.ssdcougars.tv/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Setvadmin</id>
		<title>SETV Springfield Technical Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.ssdcougars.tv/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Setvadmin"/>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/Special:Contributions/Setvadmin"/>
		<updated>2026-04-29T23:30:11Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.0</generator>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1911</id>
		<title>Wowza Server/Setup &amp; Install</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1911"/>
				<updated>2018-09-01T23:41:24Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: /* Cross-Domain Access Denied */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
This page is to describe how Wowza was installed.&lt;br /&gt;
&lt;br /&gt;
== Quick Points: ==&lt;br /&gt;
* Linux Debian 8&lt;br /&gt;
* Basic LAMP Installation (Linux, Apache, MySQL, PHP)&lt;br /&gt;
* Wowza Streaming Engine .runpackage&lt;br /&gt;
* Media is stored on external drive &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; is network discoverable via SAMBA sharing&lt;br /&gt;
* FTP access was enabled to two folders on the &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; drive&lt;br /&gt;
&lt;br /&gt;
== Wowza Install instructions ==&lt;br /&gt;
* Navigate to the folder that contains the downloaded Linux package and then execute the following commands, depending on your platform. Then, follow the wizard instructions.&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-install-and-configure-wowza-streaming-engine#installWowza&amp;lt;/ref&amp;gt;&lt;br /&gt;
64-bit Linux systems&lt;br /&gt;
 sudo chmod +x WowzaStreamingEngine-4.7.1-linux-x64-installer.run sudo ./WowzaStreamingEngine-4.7.1-linux-x64-installer.run&lt;br /&gt;
&lt;br /&gt;
During the installation process, you'll be asked:&lt;br /&gt;
* To accept the terms of the license agreement.&lt;br /&gt;
* To enter a valid product license key. If you acquired a new license key, you'll find it in the email that you received from Wowza Sales. If you have a previous version of the Streaming Engine software installed, you may be able to use the license key found in the [install-dir]/conf/Server.license file.&lt;br /&gt;
* To create a user name and password for an Administrator account. You'll use this account to sign in to the browser-based Wowza Streaming Engine Manager. The user name and password values are case-sensitive.&lt;br /&gt;
* To confirm or change the install location. By default, Wowza Streaming Engine installs files in the following directories: '''Linux''': /usr/local/WowzaStreamingEngine-4.7.1/ (as the root user)&lt;br /&gt;
&lt;br /&gt;
=== Start the software as a service (Linux) ===&lt;br /&gt;
To start Wowza software as a service on Linux, you must be the root user with sudo access. If these instructions don't apply to your Linux distribution, consult your Linux manual.&lt;br /&gt;
# In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngine start -OR-  /etc/init.d/WowzaStreamingEngine start&lt;br /&gt;
# Confirm that the engine is running by opening a web browser and entering the following URL: http://[wowza-ip-address]:1935  For [wowza-ip-address], use the IP address or domain of the local or remote Wowza server. For example:  &amp;lt;nowiki&amp;gt;http://localhost:1935&amp;lt;/nowiki&amp;gt;  The browser should display the Wowza Streaming Engine software version number. If not, check to see if the server software installed correctly and that TCP port 1935 is open on your router, firewall, and in your iptables.&lt;br /&gt;
# After the Wowza Streaming Engine server software is running, start Wowza Streaming Engine Manager. In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngineManager start -OR-  /etc/init.d/WowzaStreamingEngineManager start&lt;br /&gt;
&lt;br /&gt;
== Updating Wowza ==&lt;br /&gt;
# SSH Into Server&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-update-your-wowza-streaming-engine-installation&amp;lt;/ref&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd /usr/local/WowzaStreamingEngine/updates&amp;lt;/code&amp;gt;&lt;br /&gt;
# Get download link from wowza.com -- sign in and go to Downloads, Right Click and Copy Link Address&lt;br /&gt;
# &amp;lt;code&amp;gt;wget https://store.wowza.com/downloads/user/5984a69bef0fd/WowzaStreamingEngine-Update-X.X.X.zip&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;unzip WowzaStreamingEngine-Update-X.X.X.zip -d WowzaStreamingEngine-Update-X.X.X&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd WowzaStreamingEngine-Update-X.X.X/linux&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;chmod a+x *.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;./update.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine start&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager start&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== SSH on Wowza ====&lt;br /&gt;
Follow this [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ LINK] and follow the instructions. &amp;lt;ref&amp;gt;https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You MUST have Open-JDK-8 installed and it is a pain in the ass. As of this writing, this has been done, so no need to worry. &lt;br /&gt;
&lt;br /&gt;
== SSL on Wowza ==&lt;br /&gt;
For security JWPlayer now requires HTTPS on all streams and sites with HTTPS enabled. This changes the port number the service streams (from 1935 to 8443) and requires scripting and cron jobs to actively renew it.&lt;br /&gt;
&lt;br /&gt;
A combination of the steps outlined [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ HERE] and [https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server HERE] were used to set it up on the current server. The idea being you install Certbot, download a custom script, run certbot for the wowza.ssdcougars.tv domain, run the custom script to convert the certbot .pem keys into a JKS store (A Java file, Wowza runs entirely in Java). You then enable a cron job to do this automatically before the LetsEncrypt/Certbot keys expire every 3 months.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;s&amp;gt;0 5 * * * root /usr/bin/certbot renew --standalone --pre-hook 'systemctl stop WowzaStreamingEngine' --post-hook '/usr/local/WowzaStreamingEngine/java/bin/java -jar /usr/bin/wowza-letsencrypt-converter-0.1.jar /usr/local/WowzaStreamingEngine/conf/ssl/ /etc/letsencrypt/live/; systemctl start WowzaStreamingEngine'&amp;lt;/s&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Basically, you use Certbot to create the normal SSL certificate.&lt;br /&gt;
&lt;br /&gt;
Then you use &amp;lt;code&amp;gt;/usr/local/WowzaStreamingEngine/lib/wowza-letsencrypt-converter-0.1.jar&amp;lt;/code&amp;gt; to convert the standard certificates into a Java readable format. The &amp;lt;code&amp;gt;jksmap.txt&amp;lt;/code&amp;gt; is a mapping text telling Wowza where to look for the files. The info listed in this TXT file must match what is listed in &amp;lt;code&amp;gt;/usr/local/WowzaStreamingEngine/conf/VHost.xml&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You need to find the SSL attributes and make sure that &amp;lt;code&amp;gt;&amp;lt;SSLConfig&amp;gt;&amp;lt;/code&amp;gt; matches the relevant file paths. (Check the guide liked above for further details and examples)&lt;br /&gt;
&lt;br /&gt;
The Wowza JAVA SSL file is located under &amp;lt;code&amp;gt;/usr/local/WowzaStreamingEngine/conf/wowza.ssdcougars.tv.jks&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the auto renew failed; SSH into the Wowza box and issue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;cd /usr/local/WowzaStreamingEngine/lib&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;java -jar wowza-letsencrypt-converter-0.1.jar -v /usr/local/WowzaStreamingEngine/conf/ /etc/letsencrypt/live/&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Common Issues ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;Loading Player...&amp;quot; ===&lt;br /&gt;
Check the Wowza URL in the Wordpress post. Make sure there is not even a space or new line after &amp;lt;code&amp;gt;.m3u8&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== No incoming streams seen, no videos play after a reboot/power outage ===&lt;br /&gt;
Try to sign into the Wowza Management Portal, and make sure the licences are active. Sign in, if it asks to enter license keys, just press SUBMIT or ACTIVATE&lt;br /&gt;
&lt;br /&gt;
=== Cross-Domain Access Denied ===&lt;br /&gt;
Check the Wowza SSL Certificate, it probably expired and will need to be manually renewed.&lt;br /&gt;
&lt;br /&gt;
If Cert is valid at &amp;quot;https://wowza.ssdcougars.tv&amp;quot; Go to a page with a VOD video; open Chrome Developer Tools and look for any errors that start with CERT_INVALID&lt;br /&gt;
&lt;br /&gt;
If that happens, the cert renewed but was not imported into Wowza. Issue the below commands on Wowza&lt;br /&gt;
&lt;br /&gt;
If the auto renew failed; SSH into the Wowza box and issue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;cd /usr/local/WowzaStreamingEngine/lib&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;java -jar wowza-letsencrypt-converter-0.1.jar -v /usr/local/WowzaStreamingEngine/conf/ /etc/letsencrypt/live/&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;service WowzaStreamingEngine restart&amp;lt;/code&amp;gt;&lt;br /&gt;
== Sources ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1910</id>
		<title>Wowza Server/Setup &amp; Install</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1910"/>
				<updated>2018-08-31T23:15:34Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: /* Cross-Domain Access Denied */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
This page is to describe how Wowza was installed.&lt;br /&gt;
&lt;br /&gt;
== Quick Points: ==&lt;br /&gt;
* Linux Debian 8&lt;br /&gt;
* Basic LAMP Installation (Linux, Apache, MySQL, PHP)&lt;br /&gt;
* Wowza Streaming Engine .runpackage&lt;br /&gt;
* Media is stored on external drive &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; is network discoverable via SAMBA sharing&lt;br /&gt;
* FTP access was enabled to two folders on the &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; drive&lt;br /&gt;
&lt;br /&gt;
== Wowza Install instructions ==&lt;br /&gt;
* Navigate to the folder that contains the downloaded Linux package and then execute the following commands, depending on your platform. Then, follow the wizard instructions.&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-install-and-configure-wowza-streaming-engine#installWowza&amp;lt;/ref&amp;gt;&lt;br /&gt;
64-bit Linux systems&lt;br /&gt;
 sudo chmod +x WowzaStreamingEngine-4.7.1-linux-x64-installer.run sudo ./WowzaStreamingEngine-4.7.1-linux-x64-installer.run&lt;br /&gt;
&lt;br /&gt;
During the installation process, you'll be asked:&lt;br /&gt;
* To accept the terms of the license agreement.&lt;br /&gt;
* To enter a valid product license key. If you acquired a new license key, you'll find it in the email that you received from Wowza Sales. If you have a previous version of the Streaming Engine software installed, you may be able to use the license key found in the [install-dir]/conf/Server.license file.&lt;br /&gt;
* To create a user name and password for an Administrator account. You'll use this account to sign in to the browser-based Wowza Streaming Engine Manager. The user name and password values are case-sensitive.&lt;br /&gt;
* To confirm or change the install location. By default, Wowza Streaming Engine installs files in the following directories: '''Linux''': /usr/local/WowzaStreamingEngine-4.7.1/ (as the root user)&lt;br /&gt;
&lt;br /&gt;
=== Start the software as a service (Linux) ===&lt;br /&gt;
To start Wowza software as a service on Linux, you must be the root user with sudo access. If these instructions don't apply to your Linux distribution, consult your Linux manual.&lt;br /&gt;
# In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngine start -OR-  /etc/init.d/WowzaStreamingEngine start&lt;br /&gt;
# Confirm that the engine is running by opening a web browser and entering the following URL: http://[wowza-ip-address]:1935  For [wowza-ip-address], use the IP address or domain of the local or remote Wowza server. For example:  &amp;lt;nowiki&amp;gt;http://localhost:1935&amp;lt;/nowiki&amp;gt;  The browser should display the Wowza Streaming Engine software version number. If not, check to see if the server software installed correctly and that TCP port 1935 is open on your router, firewall, and in your iptables.&lt;br /&gt;
# After the Wowza Streaming Engine server software is running, start Wowza Streaming Engine Manager. In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngineManager start -OR-  /etc/init.d/WowzaStreamingEngineManager start&lt;br /&gt;
&lt;br /&gt;
== Updating Wowza ==&lt;br /&gt;
# SSH Into Server&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-update-your-wowza-streaming-engine-installation&amp;lt;/ref&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd /usr/local/WowzaStreamingEngine/updates&amp;lt;/code&amp;gt;&lt;br /&gt;
# Get download link from wowza.com -- sign in and go to Downloads, Right Click and Copy Link Address&lt;br /&gt;
# &amp;lt;code&amp;gt;wget https://store.wowza.com/downloads/user/5984a69bef0fd/WowzaStreamingEngine-Update-X.X.X.zip&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;unzip WowzaStreamingEngine-Update-X.X.X.zip -d WowzaStreamingEngine-Update-X.X.X&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd WowzaStreamingEngine-Update-X.X.X/linux&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;chmod a+x *.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;./update.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine start&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager start&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== SSH on Wowza ====&lt;br /&gt;
Follow this [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ LINK] and follow the instructions. &amp;lt;ref&amp;gt;https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You MUST have Open-JDK-8 installed and it is a pain in the ass. As of this writing, this has been done, so no need to worry. &lt;br /&gt;
&lt;br /&gt;
== SSL on Wowza ==&lt;br /&gt;
For security JWPlayer now requires HTTPS on all streams and sites with HTTPS enabled. This changes the port number the service streams (from 1935 to 8443) and requires scripting and cron jobs to actively renew it.&lt;br /&gt;
&lt;br /&gt;
A combination of the steps outlined [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ HERE] and [https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server HERE] were used to set it up on the current server. The idea being you install Certbot, download a custom script, run certbot for the wowza.ssdcougars.tv domain, run the custom script to convert the certbot .pem keys into a JKS store (A Java file, Wowza runs entirely in Java). You then enable a cron job to do this automatically before the LetsEncrypt/Certbot keys expire every 3 months.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;s&amp;gt;0 5 * * * root /usr/bin/certbot renew --standalone --pre-hook 'systemctl stop WowzaStreamingEngine' --post-hook '/usr/local/WowzaStreamingEngine/java/bin/java -jar /usr/bin/wowza-letsencrypt-converter-0.1.jar /usr/local/WowzaStreamingEngine/conf/ssl/ /etc/letsencrypt/live/; systemctl start WowzaStreamingEngine'&amp;lt;/s&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Basically, you use Certbot to create the normal SSL certificate.&lt;br /&gt;
&lt;br /&gt;
Then you use &amp;lt;code&amp;gt;/usr/local/WowzaStreamingEngine/lib/wowza-letsencrypt-converter-0.1.jar&amp;lt;/code&amp;gt; to convert the standard certificates into a Java readable format. The &amp;lt;code&amp;gt;jksmap.txt&amp;lt;/code&amp;gt; is a mapping text telling Wowza where to look for the files. The info listed in this TXT file must match what is listed in &amp;lt;code&amp;gt;/usr/local/WowzaStreamingEngine/conf/VHost.xml&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You need to find the SSL attributes and make sure that &amp;lt;code&amp;gt;&amp;lt;SSLConfig&amp;gt;&amp;lt;/code&amp;gt; matches the relevant file paths. (Check the guide liked above for further details and examples)&lt;br /&gt;
&lt;br /&gt;
The Wowza JAVA SSL file is located under &amp;lt;code&amp;gt;/usr/local/WowzaStreamingEngine/conf/wowza.ssdcougars.tv.jks&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the auto renew failed; SSH into the Wowza box and issue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;cd /usr/local/WowzaStreamingEngine/lib&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;java -jar wowza-letsencrypt-converter-0.1.jar -v /usr/local/WowzaStreamingEngine/conf/ /etc/letsencrypt/live/&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Common Issues ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;Loading Player...&amp;quot; ===&lt;br /&gt;
Check the Wowza URL in the Wordpress post. Make sure there is not even a space or new line after &amp;lt;code&amp;gt;.m3u8&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== No incoming streams seen, no videos play after a reboot/power outage ===&lt;br /&gt;
Try to sign into the Wowza Management Portal, and make sure the licences are active. Sign in, if it asks to enter license keys, just press SUBMIT or ACTIVATE&lt;br /&gt;
&lt;br /&gt;
=== Cross-Domain Access Denied ===&lt;br /&gt;
Check the Wowza SSL Certificate, it probably expired and will need to be manually renewed.&lt;br /&gt;
&lt;br /&gt;
If Cert is valid at &amp;quot;https://wowza.ssdcougars.tv&amp;quot; Go to a page with a VOD video; open Chrome Developer Tools and look for any errors that start with CERT_INVALID&lt;br /&gt;
&lt;br /&gt;
If that happens, the cert renewed but was not imported into Wowza. Issue the below commands on Wowza&lt;br /&gt;
&lt;br /&gt;
If the auto renew failed; SSH into the Wowza box and issue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;cd /usr/local/WowzaStreamingEngine/lib&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;java -jar wowza-letsencrypt-converter-0.1.jar -v /usr/local/WowzaStreamingEngine/conf/ /etc/letsencrypt/live/&amp;lt;/code&amp;gt;&lt;br /&gt;
== Sources ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1909</id>
		<title>Wowza Server/Setup &amp; Install</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1909"/>
				<updated>2018-06-25T17:08:24Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: /* SSL on Wowza */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
This page is to describe how Wowza was installed.&lt;br /&gt;
&lt;br /&gt;
== Quick Points: ==&lt;br /&gt;
* Linux Debian 8&lt;br /&gt;
* Basic LAMP Installation (Linux, Apache, MySQL, PHP)&lt;br /&gt;
* Wowza Streaming Engine .runpackage&lt;br /&gt;
* Media is stored on external drive &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; is network discoverable via SAMBA sharing&lt;br /&gt;
* FTP access was enabled to two folders on the &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; drive&lt;br /&gt;
&lt;br /&gt;
== Wowza Install instructions ==&lt;br /&gt;
* Navigate to the folder that contains the downloaded Linux package and then execute the following commands, depending on your platform. Then, follow the wizard instructions.&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-install-and-configure-wowza-streaming-engine#installWowza&amp;lt;/ref&amp;gt;&lt;br /&gt;
64-bit Linux systems&lt;br /&gt;
 sudo chmod +x WowzaStreamingEngine-4.7.1-linux-x64-installer.run sudo ./WowzaStreamingEngine-4.7.1-linux-x64-installer.run&lt;br /&gt;
&lt;br /&gt;
During the installation process, you'll be asked:&lt;br /&gt;
* To accept the terms of the license agreement.&lt;br /&gt;
* To enter a valid product license key. If you acquired a new license key, you'll find it in the email that you received from Wowza Sales. If you have a previous version of the Streaming Engine software installed, you may be able to use the license key found in the [install-dir]/conf/Server.license file.&lt;br /&gt;
* To create a user name and password for an Administrator account. You'll use this account to sign in to the browser-based Wowza Streaming Engine Manager. The user name and password values are case-sensitive.&lt;br /&gt;
* To confirm or change the install location. By default, Wowza Streaming Engine installs files in the following directories: '''Linux''': /usr/local/WowzaStreamingEngine-4.7.1/ (as the root user)&lt;br /&gt;
&lt;br /&gt;
=== Start the software as a service (Linux) ===&lt;br /&gt;
To start Wowza software as a service on Linux, you must be the root user with sudo access. If these instructions don't apply to your Linux distribution, consult your Linux manual.&lt;br /&gt;
# In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngine start -OR-  /etc/init.d/WowzaStreamingEngine start&lt;br /&gt;
# Confirm that the engine is running by opening a web browser and entering the following URL: http://[wowza-ip-address]:1935  For [wowza-ip-address], use the IP address or domain of the local or remote Wowza server. For example:  &amp;lt;nowiki&amp;gt;http://localhost:1935&amp;lt;/nowiki&amp;gt;  The browser should display the Wowza Streaming Engine software version number. If not, check to see if the server software installed correctly and that TCP port 1935 is open on your router, firewall, and in your iptables.&lt;br /&gt;
# After the Wowza Streaming Engine server software is running, start Wowza Streaming Engine Manager. In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngineManager start -OR-  /etc/init.d/WowzaStreamingEngineManager start&lt;br /&gt;
&lt;br /&gt;
== Updating Wowza ==&lt;br /&gt;
# SSH Into Server&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-update-your-wowza-streaming-engine-installation&amp;lt;/ref&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd /usr/local/WowzaStreamingEngine/updates&amp;lt;/code&amp;gt;&lt;br /&gt;
# Get download link from wowza.com -- sign in and go to Downloads, Right Click and Copy Link Address&lt;br /&gt;
# &amp;lt;code&amp;gt;wget https://store.wowza.com/downloads/user/5984a69bef0fd/WowzaStreamingEngine-Update-X.X.X.zip&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;unzip WowzaStreamingEngine-Update-X.X.X.zip -d WowzaStreamingEngine-Update-X.X.X&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd WowzaStreamingEngine-Update-X.X.X/linux&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;chmod a+x *.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;./update.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine start&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager start&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== SSH on Wowza ====&lt;br /&gt;
Follow this [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ LINK] and follow the instructions. &amp;lt;ref&amp;gt;https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You MUST have Open-JDK-8 installed and it is a pain in the ass. As of this writing, this has been done, so no need to worry. &lt;br /&gt;
&lt;br /&gt;
== SSL on Wowza ==&lt;br /&gt;
For security JWPlayer now requires HTTPS on all streams and sites with HTTPS enabled. This changes the port number the service streams (from 1935 to 8443) and requires scripting and cron jobs to actively renew it.&lt;br /&gt;
&lt;br /&gt;
A combination of the steps outlined [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ HERE] and [https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server HERE] were used to set it up on the current server. The idea being you install Certbot, download a custom script, run certbot for the wowza.ssdcougars.tv domain, run the custom script to convert the certbot .pem keys into a JKS store (A Java file, Wowza runs entirely in Java). You then enable a cron job to do this automatically before the LetsEncrypt/Certbot keys expire every 3 months.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;s&amp;gt;0 5 * * * root /usr/bin/certbot renew --standalone --pre-hook 'systemctl stop WowzaStreamingEngine' --post-hook '/usr/local/WowzaStreamingEngine/java/bin/java -jar /usr/bin/wowza-letsencrypt-converter-0.1.jar /usr/local/WowzaStreamingEngine/conf/ssl/ /etc/letsencrypt/live/; systemctl start WowzaStreamingEngine'&amp;lt;/s&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Basically, you use Certbot to create the normal SSL certificate.&lt;br /&gt;
&lt;br /&gt;
Then you use &amp;lt;code&amp;gt;/usr/local/WowzaStreamingEngine/lib/wowza-letsencrypt-converter-0.1.jar&amp;lt;/code&amp;gt; to convert the standard certificates into a Java readable format. The &amp;lt;code&amp;gt;jksmap.txt&amp;lt;/code&amp;gt; is a mapping text telling Wowza where to look for the files. The info listed in this TXT file must match what is listed in &amp;lt;code&amp;gt;/usr/local/WowzaStreamingEngine/conf/VHost.xml&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You need to find the SSL attributes and make sure that &amp;lt;code&amp;gt;&amp;lt;SSLConfig&amp;gt;&amp;lt;/code&amp;gt; matches the relevant file paths. (Check the guide liked above for further details and examples)&lt;br /&gt;
&lt;br /&gt;
The Wowza JAVA SSL file is located under &amp;lt;code&amp;gt;/usr/local/WowzaStreamingEngine/conf/wowza.ssdcougars.tv.jks&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the auto renew failed; SSH into the Wowza box and issue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;cd /usr/local/WowzaStreamingEngine/lib&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;java -jar wowza-letsencrypt-converter-0.1.jar -v /usr/local/WowzaStreamingEngine/conf/ /etc/letsencrypt/live/&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Common Issues ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;Loading Player...&amp;quot; ===&lt;br /&gt;
Check the Wowza URL in the Wordpress post. Make sure there is not even a space or new line after &amp;lt;code&amp;gt;.m3u8&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== No incoming streams seen, no videos play after a reboot/power outage ===&lt;br /&gt;
Try to sign into the Wowza Management Portal, and make sure the licences are active. Sign in, if it asks to enter license keys, just press SUBMIT or ACTIVATE&lt;br /&gt;
&lt;br /&gt;
=== Cross-Domain Access Denied ===&lt;br /&gt;
Check the Wowza SSL Certificate, it probably expired and will need to be manually renewed.&lt;br /&gt;
== Sources ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Wowza_Server&amp;diff=1908</id>
		<title>Wowza Server</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Wowza_Server&amp;diff=1908"/>
				<updated>2018-06-15T02:59:48Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox custom computer&lt;br /&gt;
| Image          = [[File:Wowza Case.jpg|frameless]]&lt;br /&gt;
| Caption        = Corsair 540 Tower Case&lt;br /&gt;
| Dates          = operational 2015&lt;br /&gt;
| Location       = SETV Main Office - Rack&lt;br /&gt;
| Architecture   = Asus M5A99X EVO R2.0 ATX AM3+ Motherboard AMD FX-8320 3.5GHz 8-Core Processor&lt;br /&gt;
| Memory         = 16.00 GB&lt;br /&gt;
| Storage        = 120GB OS;&amp;lt;br&amp;gt;2.8 TB VOD1 &amp;lt;br&amp;gt; 3.7TB VOD2;&amp;lt;br&amp;gt;500GB Backup&lt;br /&gt;
| Speed          = 3.50GHz (peak)&lt;br /&gt;
| Power          = 650 W&lt;br /&gt;
| OS             = [[Debian]] Jessie 8 64-bit&lt;br /&gt;
| Purpose        = Wowza Streaming and VOD server&lt;br /&gt;
}}&lt;br /&gt;
{{Under Construction}}&lt;br /&gt;
The Wowza Media Server is what is used by the Springfield SETV office to broadcast our live streams online, and provide Video-On-Demand (VOD) content to our users.&lt;br /&gt;
&lt;br /&gt;
== Device Build ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Component&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|CPU&lt;br /&gt;
|AMD FX-8320 3.5GHz 8-Core Processor&lt;br /&gt;
|Cooling: Coolermaster Hyper 212 EVO&lt;br /&gt;
|-&lt;br /&gt;
|Motherboard&lt;br /&gt;
|ASUS M5A99X EVO Rev.2.0 AM3+&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Corsair Vengeance 16GB DDR3-1600 &lt;br /&gt;
|2x8GB&lt;br /&gt;
|-&lt;br /&gt;
|Storage&lt;br /&gt;
|Intel 530 Series 120 GB 2.5&amp;quot; SSD&lt;br /&gt;
|(/dev/sda) Operating System &amp;amp; Wowza Install Root&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Seagate Barracuda 2TB 3.5&amp;quot; 7200RPM HDD&lt;br /&gt;
|(/dev/sdb) Wowza VOD, Live, FTP, WowzaShares&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Hitachi Deskstar 7K3000 3TB 3.5&amp;quot; 7200RPM HDD&lt;br /&gt;
|(/dev/sdc) Wowza OS and VOD Backup Drive&lt;br /&gt;
|-&lt;br /&gt;
|Video Card&lt;br /&gt;
|PNY Quadro K4000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Case&lt;br /&gt;
|Corsair Air 540 ATX Mid Tower&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|PSU&lt;br /&gt;
|Corsair RM 650W 80+ Gold Modular&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Optical Drive&lt;br /&gt;
|ASUS DRW CD/DVD Writer&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Operating System ==&lt;br /&gt;
The chosen operating system for the Wowza Server is Debian 8 64-bit, Codename Jessie. The reason this was chosen was because Linux, overall, is a more stable webserver environment. It is also free compared to RedHat and Windows IIS. Due to it's open-sourced nature, support is only as good as your troubleshooting and Googling.&lt;br /&gt;
&lt;br /&gt;
If all is lost, and you need to start from scratch, visit Setting Up Wowza for the First Time.&lt;br /&gt;
&lt;br /&gt;
=== Ajenti ===&lt;br /&gt;
There is a web-based management panel installed on the Wowza server. It is a free, open-sourced control panel and is a bit limited. It's purpose it to help aid in managing certain settings from a comfortable GUI. The other purpose it to graphically see the status of all important hardware components.&lt;br /&gt;
&lt;br /&gt;
To access this panel, from the school's network only, go to http://wowza.ssdcougars.tv and click &amp;quot;AJENTI PANEL&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Wowza Software ==&lt;br /&gt;
The streaming software we use is called Wowza Streaming Engine. The control panel backend is called Wowza Streaming Engine Manager. Users use the WSE Manager to administer common Wowza settings. Below we will go over the basics of starting, stopping the Wowza Service, Upgrading, and troubleshooting streams.&lt;br /&gt;
&lt;br /&gt;
[[Wowza Streaming Engine]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Wowza Streaming Engine/Manager]]&lt;br /&gt;
&lt;br /&gt;
== Backups ==&lt;br /&gt;
The primary OS and all of it's contents are backed up to &amp;lt;code&amp;gt;/media/osbak&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The system uses &amp;lt;code&amp;gt;rsnapshot&amp;lt;/code&amp;gt; and a &amp;lt;code&amp;gt;cron&amp;lt;/code&amp;gt; job to execute it every night.&lt;br /&gt;
&lt;br /&gt;
This backs up the critical files, to a ''partition'' on the backup drive. The other partition is the off-line backup for the VPS server.&lt;br /&gt;
&lt;br /&gt;
If the system needs to be rebuilt, use &amp;lt;code&amp;gt;setv&amp;lt;/code&amp;gt; as the main user, rebuild from scratch, then copy back the&amp;lt;code&amp;gt;/usr&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;/root&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;/bin&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;/etc&amp;lt;/code&amp;gt; folders.&lt;br /&gt;
&lt;br /&gt;
== Notes to Consider ==&lt;br /&gt;
&lt;br /&gt;
=== Shell Access ===&lt;br /&gt;
Shell access (SSH) has been highly secured. All access attempts to port 22 are blocked except from whitelisted IPs.&lt;br /&gt;
&lt;br /&gt;
All IP's under &amp;lt;code&amp;gt;10.130.0.0/16&amp;lt;/code&amp;gt; are whitelisted, meaning any computer on the SSD Network should have access to the SSH port.&lt;br /&gt;
&lt;br /&gt;
To modify the Whitelist, use the monitor connected to the machine (or use PuTTY with X11 forwarding and Xming) launch &amp;lt;code&amp;gt;firestarter&amp;lt;/code&amp;gt; and click the Policy tab&lt;br /&gt;
&lt;br /&gt;
You can add or remove rules within Firestarter - Leave Ajenti, FTP, HTTP, HTTPS, 8088 and 1935 ALONE! Do not touch these.&lt;br /&gt;
&lt;br /&gt;
All SSH access is authenticated by Certificate. If you lost the cert, you will have to learn how to make a new one for SSH, convert it to a .ppk for PuTTY.&lt;br /&gt;
&lt;br /&gt;
Certs are located on the Archive drives.&lt;br /&gt;
&lt;br /&gt;
=== Black screen on reboot, videos don't play, cannot sign in via Monitor (CAN sign in via SSH/PuTTY) ===&lt;br /&gt;
Check your disk space, chances are during a reboot it did not mount the backup drive for VOD2, which is networked. If a network mount is not ready in time for the backup rsnapshot job, then it will default create the folder under &amp;lt;code&amp;gt;/media/vod2bak&amp;lt;/code&amp;gt; regardless of successful mount. Thus filling the primary OS drive with VOD2 backup data.&lt;br /&gt;
&lt;br /&gt;
To remedy this:&lt;br /&gt;
# SSH into Wowza or Console in at machine (CTRL+ALT+F6)&lt;br /&gt;
# Sign in as Root&lt;br /&gt;
# Issue command &amp;lt;code&amp;gt;df -h&amp;lt;/code&amp;gt; and determine the size of &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; (If &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; % available is 0, you know the drive is full.)&lt;br /&gt;
# Issue command &amp;lt;code&amp;gt;umount /media/vod2bak&amp;lt;/code&amp;gt;&lt;br /&gt;
# Issue command, again &amp;lt;code&amp;gt;df -h&amp;lt;/code&amp;gt;   '''ENSURE THAT YOU &amp;lt;u&amp;gt;''DO NOT''&amp;lt;/u&amp;gt;  see &amp;lt;code&amp;gt;10.130.12.192:/mnt/WowzaVOD2BAK/VOD2BAK&amp;lt;/code&amp;gt; ON THAT LIST, IF YOU DO GO BACK TO STEP 4 -- OTHERWISE, IF YOU IGNORE THIS AND ISSUE THE NEXT COMMAND WHILE &amp;lt;code&amp;gt;10.130.12.192:/mnt/WowzaVOD2BAK/VOD2BAK&amp;lt;/code&amp;gt; IS CONNECTED YOU WILL DELETE THE ENTIRE ARCHIVE!'''&lt;br /&gt;
# Issue command: &amp;lt;code&amp;gt;cd /media &amp;amp;&amp;amp; rm -rf vod2bak&amp;lt;/code&amp;gt;&lt;br /&gt;
# To confirm this worked, issue &amp;lt;code&amp;gt;df -h&amp;lt;/code&amp;gt; again and confirm that &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; does not =0%&lt;br /&gt;
# Reboot &amp;lt;code&amp;gt;shutdown -r now&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Notes to add ==&lt;br /&gt;
fstab&lt;br /&gt;
&lt;br /&gt;
nvidia-smi and it's special love with wowza&lt;br /&gt;
&lt;br /&gt;
Setting up nvidia on this and work with wowza is... a pain in the ASS!!! Follow [https://www.wowza.com/docs/how-to-set-up-wowza-transcoder-nvidia-nvenc-accelerated-encoding-on-ubuntu Wowza's guide]. I KNOW it goes against [https://wiki.debian.org/DontBreakDebian Debian's published best practices], but this is what works.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;****'''NOTE'''**** ''THE LATEST COMPATIBLE DRIVER IS &amp;lt;code&amp;gt;367.27&amp;lt;/code&amp;gt; ANYTHING LATER WILL NOT WORK!!!&amp;lt;ref&amp;gt;https://www.wowza.com/docs/server-specifications-for-nvidia-nvenc-and-nvidia-cuda-acceleration-with-wowza-transcoder&amp;lt;/ref&amp;gt;''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''**NOTE** AS OF 11/02/2017 NVIDIA VERSION 384.59 is WORKING CORRECTLY, AND IS REQUIRED FOR GNOME TO WORK CORRECTLY''' &lt;br /&gt;
&lt;br /&gt;
setting up SSH access, using PPK and PuTTY&lt;br /&gt;
&lt;br /&gt;
users&lt;br /&gt;
&lt;br /&gt;
FTP public, private, management&lt;br /&gt;
&lt;br /&gt;
[[Ajenti]]&lt;br /&gt;
&lt;br /&gt;
rsnapshot&lt;br /&gt;
&lt;br /&gt;
common commands for shell&lt;br /&gt;
&lt;br /&gt;
[[Category:Servers]]&lt;br /&gt;
[[Category:SETV Machines]]&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Wowza_Server&amp;diff=1907</id>
		<title>Wowza Server</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Wowza_Server&amp;diff=1907"/>
				<updated>2018-06-15T02:54:57Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: /* Notes to add */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox custom computer&lt;br /&gt;
| Image          = [[File:Wowza Case.jpg|frameless]]&lt;br /&gt;
| Caption        = Corsair 540 Tower Case&lt;br /&gt;
| Dates          = operational 2015&lt;br /&gt;
| Location       = SETV Main Office - Rack&lt;br /&gt;
| Architecture   = Asus M5A99X EVO R2.0 ATX AM3+ Motherboard AMD FX-8320 3.5GHz 8-Core Processor&lt;br /&gt;
| Memory         = 16.00 GB&lt;br /&gt;
| Storage        = 120GB OS;&amp;lt;br&amp;gt;2TB VOD;&amp;lt;br&amp;gt;3TB Backup&lt;br /&gt;
| Speed          = 3.50GHz (peak)&lt;br /&gt;
| Power          = 650 W&lt;br /&gt;
| OS             = [[Debian]] Jessie 8 64-bit&lt;br /&gt;
| Purpose        = Wowza Streaming and VOD server&lt;br /&gt;
}}&lt;br /&gt;
{{Under Construction}}&lt;br /&gt;
The Wowza Media Server is what is used by the Springfield SETV office to broadcast our live streams online, and provide Video-On-Demand (VOD) content to our users.&lt;br /&gt;
&lt;br /&gt;
== Device Build ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Component&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|CPU&lt;br /&gt;
|AMD FX-8320 3.5GHz 8-Core Processor&lt;br /&gt;
|Cooling: Coolermaster Hyper 212 EVO&lt;br /&gt;
|-&lt;br /&gt;
|Motherboard&lt;br /&gt;
|ASUS M5A99X EVO Rev.2.0 AM3+&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Corsair Vengeance 16GB DDR3-1600 &lt;br /&gt;
|2x8GB&lt;br /&gt;
|-&lt;br /&gt;
|Storage&lt;br /&gt;
|Intel 530 Series 120 GB 2.5&amp;quot; SSD&lt;br /&gt;
|(/dev/sda) Operating System &amp;amp; Wowza Install Root&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Seagate Barracuda 2TB 3.5&amp;quot; 7200RPM HDD&lt;br /&gt;
|(/dev/sdb) Wowza VOD, Live, FTP, WowzaShares&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Hitachi Deskstar 7K3000 3TB 3.5&amp;quot; 7200RPM HDD&lt;br /&gt;
|(/dev/sdc) Wowza OS and VOD Backup Drive&lt;br /&gt;
|-&lt;br /&gt;
|Video Card&lt;br /&gt;
|PNY Quadro K4000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Case&lt;br /&gt;
|Corsair Air 540 ATX Mid Tower&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|PSU&lt;br /&gt;
|Corsair RM 650W 80+ Gold Modular&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Optical Drive&lt;br /&gt;
|ASUS DRW CD/DVD Writer&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Operating System ==&lt;br /&gt;
The chosen operating system for the Wowza Server is Debian 8 64-bit, Codename Jessie. The reason this was chosen was because Linux, overall, is a more stable webserver environment. It is also free compared to RedHat and Windows IIS. Due to it's open-sourced nature, support is only as good as your troubleshooting and Googling.&lt;br /&gt;
&lt;br /&gt;
If all is lost, and you need to start from scratch, visit Setting Up Wowza for the First Time.&lt;br /&gt;
&lt;br /&gt;
=== Ajenti ===&lt;br /&gt;
There is a web-based management panel installed on the Wowza server. It is a free, open-sourced control panel and is a bit limited. It's purpose it to help aid in managing certain settings from a comfortable GUI. The other purpose it to graphically see the status of all important hardware components.&lt;br /&gt;
&lt;br /&gt;
To access this panel, from the school's network only, go to http://wowza.ssdcougars.tv and click &amp;quot;AJENTI PANEL&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Wowza Software ==&lt;br /&gt;
The streaming software we use is called Wowza Streaming Engine. The control panel backend is called Wowza Streaming Engine Manager. Users use the WSE Manager to administer common Wowza settings. Below we will go over the basics of starting, stopping the Wowza Service, Upgrading, and troubleshooting streams.&lt;br /&gt;
&lt;br /&gt;
[[Wowza Streaming Engine]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Wowza Streaming Engine/Manager]]&lt;br /&gt;
&lt;br /&gt;
== Backups ==&lt;br /&gt;
The primary OS and all of it's contents are backed up to &amp;lt;code&amp;gt;/media/osbak&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The system uses &amp;lt;code&amp;gt;rsnapshot&amp;lt;/code&amp;gt; and a &amp;lt;code&amp;gt;cron&amp;lt;/code&amp;gt; job to execute it every night.&lt;br /&gt;
&lt;br /&gt;
This backs up the critical files, while it may not work 100% as a bootable drive for Linux, you can easily copy back most of the folders after rebuilding the system.&lt;br /&gt;
&lt;br /&gt;
If the system needs to be rebuilt, use &amp;lt;code&amp;gt;setv&amp;lt;/code&amp;gt; as the main user. Then copying back the&amp;lt;code&amp;gt;/usr&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;/root&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;/bin&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;/etc&amp;lt;/code&amp;gt; folders will be much easier.&lt;br /&gt;
&lt;br /&gt;
== Notes to Consider ==&lt;br /&gt;
&lt;br /&gt;
=== Shell Access ===&lt;br /&gt;
Shell access (SSH) has been highly secured. All access attempts to port 22 are blocked except from whitelisted IPs.&lt;br /&gt;
&lt;br /&gt;
All IP's under &amp;lt;code&amp;gt;10.130.0.0/16&amp;lt;/code&amp;gt; are whitelisted, meaning any computer on the SSD Network should have access to the SSH port.&lt;br /&gt;
&lt;br /&gt;
To modify the Whitelist, use the monitor connected to the machine (or use PuTTY with X11 forwarding and Xming) launch &amp;lt;code&amp;gt;firestarter&amp;lt;/code&amp;gt; and click the Policy tab&lt;br /&gt;
&lt;br /&gt;
You can add or remove rules within Firestarter - Leave Ajenti, FTP, HTTP, HTTPS, 8088 and 1935 ALONE! Do not touch these.&lt;br /&gt;
&lt;br /&gt;
All SSH access is authenticated by Certificate. If you lost the cert, you will have to learn how to make a new one for SSH, convert it to a .ppk for PuTTY.&lt;br /&gt;
&lt;br /&gt;
Certs are located on the Archive drives.&lt;br /&gt;
&lt;br /&gt;
=== Black screen on reboot, videos don't play, cannot sign in via Monitor (CAN sign in via SSH/PuTTY) ===&lt;br /&gt;
Check your disk space, chances are during a reboot it did not mount the backup drive for VOD2, which is networked. If a network mount is not ready in time for the backup rsnapshot job, then it will default create the folder under &amp;lt;code&amp;gt;/media/vod2bak&amp;lt;/code&amp;gt; regardless of successful mount. Thus filling the primary OS drive with VOD2 backup data.&lt;br /&gt;
&lt;br /&gt;
To remedy this:&lt;br /&gt;
# SSH into Wowza or Console in at machine (CTRL+ALT+F6)&lt;br /&gt;
# Sign in as Root&lt;br /&gt;
# Issue command &amp;lt;code&amp;gt;df -h&amp;lt;/code&amp;gt; and determine the size of &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; (If &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; % available is 0, you know the drive is full.)&lt;br /&gt;
# Issue command &amp;lt;code&amp;gt;umount /media/vod2bak&amp;lt;/code&amp;gt;&lt;br /&gt;
# Issue command, again &amp;lt;code&amp;gt;df -h&amp;lt;/code&amp;gt;   '''ENSURE THAT YOU &amp;lt;u&amp;gt;''DO NOT''&amp;lt;/u&amp;gt;  see &amp;lt;code&amp;gt;10.130.12.192:/mnt/WowzaVOD2BAK/VOD2BAK&amp;lt;/code&amp;gt; ON THAT LIST, IF YOU DO GO BACK TO STEP 4 -- OTHERWISE, IF YOU IGNORE THIS AND ISSUE THE NEXT COMMAND WHILE &amp;lt;code&amp;gt;10.130.12.192:/mnt/WowzaVOD2BAK/VOD2BAK&amp;lt;/code&amp;gt; IS CONNECTED YOU WILL DELETE THE ENTIRE ARCHIVE!'''&lt;br /&gt;
# Issue command: &amp;lt;code&amp;gt;cd /media &amp;amp;&amp;amp; rm -rf vod2bak&amp;lt;/code&amp;gt;&lt;br /&gt;
# To confirm this worked, issue &amp;lt;code&amp;gt;df -h&amp;lt;/code&amp;gt; again and confirm that &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; does not =0%&lt;br /&gt;
# Reboot &amp;lt;code&amp;gt;shutdown -r now&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Notes to add ==&lt;br /&gt;
fstab&lt;br /&gt;
&lt;br /&gt;
nvidia-smi and it's special love with wowza&lt;br /&gt;
&lt;br /&gt;
Setting up nvidia on this and work with wowza is... a pain in the ASS!!! Follow [https://www.wowza.com/docs/how-to-set-up-wowza-transcoder-nvidia-nvenc-accelerated-encoding-on-ubuntu Wowza's guide]. I KNOW it goes against [https://wiki.debian.org/DontBreakDebian Debian's published best practices], but this is what works.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;****'''NOTE'''**** ''THE LATEST COMPATIBLE DRIVER IS &amp;lt;code&amp;gt;367.27&amp;lt;/code&amp;gt; ANYTHING LATER WILL NOT WORK!!!&amp;lt;ref&amp;gt;https://www.wowza.com/docs/server-specifications-for-nvidia-nvenc-and-nvidia-cuda-acceleration-with-wowza-transcoder&amp;lt;/ref&amp;gt;''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''**NOTE** AS OF 11/02/2017 NVIDIA VERSION 384.59 is WORKING CORRECTLY, AND IS REQUIRED FOR GNOME TO WORK CORRECTLY''' &lt;br /&gt;
&lt;br /&gt;
setting up SSH access, using PPK and PuTTY&lt;br /&gt;
&lt;br /&gt;
users&lt;br /&gt;
&lt;br /&gt;
FTP public, private, management&lt;br /&gt;
&lt;br /&gt;
[[Ajenti]]&lt;br /&gt;
&lt;br /&gt;
rsnapshot&lt;br /&gt;
&lt;br /&gt;
common commands for shell&lt;br /&gt;
&lt;br /&gt;
[[Category:Servers]]&lt;br /&gt;
[[Category:SETV Machines]]&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Wowza_Server&amp;diff=1906</id>
		<title>Wowza Server</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Wowza_Server&amp;diff=1906"/>
				<updated>2018-06-15T02:49:34Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: /* Black screen on reboot, videos don't play, cannot sign in via Monitor (CAN sign in via SSH/PuTTY) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox custom computer&lt;br /&gt;
| Image          = [[File:Wowza Case.jpg|frameless]]&lt;br /&gt;
| Caption        = Corsair 540 Tower Case&lt;br /&gt;
| Dates          = operational 2015&lt;br /&gt;
| Location       = SETV Main Office - Rack&lt;br /&gt;
| Architecture   = Asus M5A99X EVO R2.0 ATX AM3+ Motherboard AMD FX-8320 3.5GHz 8-Core Processor&lt;br /&gt;
| Memory         = 16.00 GB&lt;br /&gt;
| Storage        = 120GB OS;&amp;lt;br&amp;gt;2TB VOD;&amp;lt;br&amp;gt;3TB Backup&lt;br /&gt;
| Speed          = 3.50GHz (peak)&lt;br /&gt;
| Power          = 650 W&lt;br /&gt;
| OS             = [[Debian]] Jessie 8 64-bit&lt;br /&gt;
| Purpose        = Wowza Streaming and VOD server&lt;br /&gt;
}}&lt;br /&gt;
{{Under Construction}}&lt;br /&gt;
The Wowza Media Server is what is used by the Springfield SETV office to broadcast our live streams online, and provide Video-On-Demand (VOD) content to our users.&lt;br /&gt;
&lt;br /&gt;
== Device Build ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Component&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|CPU&lt;br /&gt;
|AMD FX-8320 3.5GHz 8-Core Processor&lt;br /&gt;
|Cooling: Coolermaster Hyper 212 EVO&lt;br /&gt;
|-&lt;br /&gt;
|Motherboard&lt;br /&gt;
|ASUS M5A99X EVO Rev.2.0 AM3+&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Corsair Vengeance 16GB DDR3-1600 &lt;br /&gt;
|2x8GB&lt;br /&gt;
|-&lt;br /&gt;
|Storage&lt;br /&gt;
|Intel 530 Series 120 GB 2.5&amp;quot; SSD&lt;br /&gt;
|(/dev/sda) Operating System &amp;amp; Wowza Install Root&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Seagate Barracuda 2TB 3.5&amp;quot; 7200RPM HDD&lt;br /&gt;
|(/dev/sdb) Wowza VOD, Live, FTP, WowzaShares&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Hitachi Deskstar 7K3000 3TB 3.5&amp;quot; 7200RPM HDD&lt;br /&gt;
|(/dev/sdc) Wowza OS and VOD Backup Drive&lt;br /&gt;
|-&lt;br /&gt;
|Video Card&lt;br /&gt;
|PNY Quadro K4000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Case&lt;br /&gt;
|Corsair Air 540 ATX Mid Tower&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|PSU&lt;br /&gt;
|Corsair RM 650W 80+ Gold Modular&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Optical Drive&lt;br /&gt;
|ASUS DRW CD/DVD Writer&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Operating System ==&lt;br /&gt;
The chosen operating system for the Wowza Server is Debian 8 64-bit, Codename Jessie. The reason this was chosen was because Linux, overall, is a more stable webserver environment. It is also free compared to RedHat and Windows IIS. Due to it's open-sourced nature, support is only as good as your troubleshooting and Googling.&lt;br /&gt;
&lt;br /&gt;
If all is lost, and you need to start from scratch, visit Setting Up Wowza for the First Time.&lt;br /&gt;
&lt;br /&gt;
=== Ajenti ===&lt;br /&gt;
There is a web-based management panel installed on the Wowza server. It is a free, open-sourced control panel and is a bit limited. It's purpose it to help aid in managing certain settings from a comfortable GUI. The other purpose it to graphically see the status of all important hardware components.&lt;br /&gt;
&lt;br /&gt;
To access this panel, from the school's network only, go to http://wowza.ssdcougars.tv and click &amp;quot;AJENTI PANEL&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Wowza Software ==&lt;br /&gt;
The streaming software we use is called Wowza Streaming Engine. The control panel backend is called Wowza Streaming Engine Manager. Users use the WSE Manager to administer common Wowza settings. Below we will go over the basics of starting, stopping the Wowza Service, Upgrading, and troubleshooting streams.&lt;br /&gt;
&lt;br /&gt;
[[Wowza Streaming Engine]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Wowza Streaming Engine/Manager]]&lt;br /&gt;
&lt;br /&gt;
== Notes to Consider ==&lt;br /&gt;
&lt;br /&gt;
=== Shell Access ===&lt;br /&gt;
Shell access (SSH) has been highly secured. All access attempts to port 22 are blocked except from whitelisted IPs.&lt;br /&gt;
&lt;br /&gt;
All IP's under &amp;lt;code&amp;gt;10.130.0.0/16&amp;lt;/code&amp;gt; are whitelisted, meaning any computer on the SSD Network should have access to the SSH port.&lt;br /&gt;
&lt;br /&gt;
To modify the Whitelist, use the monitor connected to the machine (or use PuTTY with X11 forwarding and Xming) launch &amp;lt;code&amp;gt;firestarter&amp;lt;/code&amp;gt; and click the Policy tab&lt;br /&gt;
&lt;br /&gt;
You can add or remove rules within Firestarter - Leave Ajenti, FTP, HTTP, HTTPS, 8088 and 1935 ALONE! Do not touch these.&lt;br /&gt;
&lt;br /&gt;
All SSH access is authenticated by Certificate. If you lost the cert, you will have to learn how to make a new one for SSH, convert it to a .ppk for PuTTY.&lt;br /&gt;
&lt;br /&gt;
Certs are located on the Archive drives.&lt;br /&gt;
&lt;br /&gt;
=== Black screen on reboot, videos don't play, cannot sign in via Monitor (CAN sign in via SSH/PuTTY) ===&lt;br /&gt;
Check your disk space, chances are during a reboot it did not mount the backup drive for VOD2, which is networked. If a network mount is not ready in time for the backup rsnapshot job, then it will default create the folder under &amp;lt;code&amp;gt;/media/vod2bak&amp;lt;/code&amp;gt; regardless of successful mount. Thus filling the primary OS drive with VOD2 backup data.&lt;br /&gt;
&lt;br /&gt;
To remedy this:&lt;br /&gt;
# SSH into Wowza or Console in at machine (CTRL+ALT+F6)&lt;br /&gt;
# Sign in as Root&lt;br /&gt;
# Issue command &amp;lt;code&amp;gt;df -h&amp;lt;/code&amp;gt; and determine the size of &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; (If &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; % available is 0, you know the drive is full.)&lt;br /&gt;
# Issue command &amp;lt;code&amp;gt;umount /media/vod2bak&amp;lt;/code&amp;gt;&lt;br /&gt;
# Issue command, again &amp;lt;code&amp;gt;df -h&amp;lt;/code&amp;gt;   '''ENSURE THAT YOU &amp;lt;u&amp;gt;''DO NOT''&amp;lt;/u&amp;gt;  see &amp;lt;code&amp;gt;10.130.12.192:/mnt/WowzaVOD2BAK/VOD2BAK&amp;lt;/code&amp;gt; ON THAT LIST, IF YOU DO GO BACK TO STEP 4 -- OTHERWISE, IF YOU IGNORE THIS AND ISSUE THE NEXT COMMAND WHILE &amp;lt;code&amp;gt;10.130.12.192:/mnt/WowzaVOD2BAK/VOD2BAK&amp;lt;/code&amp;gt; IS CONNECTED YOU WILL DELETE THE ENTIRE ARCHIVE!'''&lt;br /&gt;
# Issue command: &amp;lt;code&amp;gt;cd /media &amp;amp;&amp;amp; rm -rf vod2bak&amp;lt;/code&amp;gt;&lt;br /&gt;
# To confirm this worked, issue &amp;lt;code&amp;gt;df -h&amp;lt;/code&amp;gt; again and confirm that &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; does not =0%&lt;br /&gt;
# Reboot &amp;lt;code&amp;gt;shutdown -r now&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Notes to add ==&lt;br /&gt;
fstab&lt;br /&gt;
&lt;br /&gt;
nvidia-smi and it's special love with wowza&lt;br /&gt;
&lt;br /&gt;
Setting up nvidia on this and work with wowza is... a pain in the ASS!!! Follow [https://www.wowza.com/docs/how-to-set-up-wowza-transcoder-nvidia-nvenc-accelerated-encoding-on-ubuntu Wowza's guide]. I KNOW it goes against [https://wiki.debian.org/DontBreakDebian Debian's published best practices], but this is what works. ****'''NOTE'''**** ''THE LATEST COMPATIBLE DRIVER IS &amp;lt;code&amp;gt;367.27&amp;lt;/code&amp;gt; ANYTHING LATER WILL NOT WORK!!!&amp;lt;ref&amp;gt;https://www.wowza.com/docs/server-specifications-for-nvidia-nvenc-and-nvidia-cuda-acceleration-with-wowza-transcoder&amp;lt;/ref&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
'''**NOTE** AS OF 11/02/2017 NVIDIA VERSION 384.59 is WORKING CORRECTLY, AND IS REQUIRED FOR GNOME TO WORK CORRECTLY''' &lt;br /&gt;
&lt;br /&gt;
setting up SSH access, using PPK and PuTTY&lt;br /&gt;
&lt;br /&gt;
users&lt;br /&gt;
&lt;br /&gt;
FTP public, private, management&lt;br /&gt;
&lt;br /&gt;
[[Ajenti]]&lt;br /&gt;
&lt;br /&gt;
rsnapshot&lt;br /&gt;
&lt;br /&gt;
common commands for shell&lt;br /&gt;
&lt;br /&gt;
[[Category:Servers]]&lt;br /&gt;
[[Category:SETV Machines]]&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Wowza_Streaming_Engine/Manager&amp;diff=1905</id>
		<title>Wowza Streaming Engine/Manager</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Wowza_Streaming_Engine/Manager&amp;diff=1905"/>
				<updated>2018-06-15T02:45:35Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Under Construction}}This is a guide for the Wowza Streaming Engine Manager backend&lt;br /&gt;
&lt;br /&gt;
You can access the Wowza Manager at http://wowza.ssdcougars.tv:8088/enginemanager/&lt;br /&gt;
&lt;br /&gt;
This is the graphical portal to manage the Wowza Service. &lt;br /&gt;
&lt;br /&gt;
== Common Problems ==&lt;br /&gt;
No streams coming in?&lt;br /&gt;
&lt;br /&gt;
In terminal, connect to server.&lt;br /&gt;
&lt;br /&gt;
Run &amp;lt;code&amp;gt;nvidia-smi&amp;lt;/code&amp;gt; and make sure you see &amp;quot;java&amp;quot; in the list of running processes.&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Adding_VOD_Content&amp;diff=1904</id>
		<title>Adding VOD Content</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Adding_VOD_Content&amp;diff=1904"/>
				<updated>2018-06-15T02:43:16Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: /* SD Videos (i.e. Board Meetings) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== How to add media to Wowza, the correct way. ==&lt;br /&gt;
[[File:Add2wowza.png|thumb|Screenshot of the add2wowza script interface. User is adding a board meeting to the Wowza list.]]&lt;br /&gt;
The &amp;lt;code&amp;gt;add2wowza&amp;lt;/code&amp;gt; command is a custom written bash script written by Nathan Kadish. It simply automates the SMIL file creation for each new video. HD videos require four encoded versions, while SD requires 3.&lt;br /&gt;
&lt;br /&gt;
HD: 1080x720, 1920x1080, 854x480, 640x360&lt;br /&gt;
&lt;br /&gt;
SD:  480x360, 640x480, 720x540&lt;br /&gt;
&lt;br /&gt;
The SMIL file simply lists the links to each encoded file, so this script takes the &amp;lt;code&amp;gt;BASE_NAME&amp;lt;/code&amp;gt; and turns that into the given filename for the encodings. Ex - if the Board meeting file coming from LGX is &amp;quot;Board20170724&amp;quot; then when you create the encodings in Adobe Media Encoder you will want to add &amp;quot;_540p&amp;quot; &amp;quot;_480p&amp;quot; and &amp;quot;_360p&amp;quot; to the file names so when they are done, they look like &amp;quot;Board20170724_480p&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== HD Videos (i.e Sports) ===&lt;br /&gt;
# Open Adobe Media Encoder&lt;br /&gt;
# Load the HD file you want added to Wowza&lt;br /&gt;
# Under the Encoding Presets look for the '''Wowza HD (16:9)''' folder&lt;br /&gt;
# Set the duration of the video under default preset&lt;br /&gt;
# Drag and drop the four presets under the '''Wowza HD (16:9)''' Folder&lt;br /&gt;
# Set the export path to \\10.130.10.50\WowzaShare\SETVOD\{CategoryFolder}\&lt;br /&gt;
# Open PuTTY&lt;br /&gt;
# Connect to Wowza Server&lt;br /&gt;
# type &amp;lt;code&amp;gt;add2wowza&amp;lt;/code&amp;gt;&lt;br /&gt;
# Follow the prompts and copy the resulting link into wordpress&lt;br /&gt;
&lt;br /&gt;
=== SD Videos (i.e. Board Meetings) ===&lt;br /&gt;
# Open Adobe Media Encoder&lt;br /&gt;
# Load the SD file you want added to Wowza&lt;br /&gt;
# Under the Encoding Presets look for the '''Wowza SD (4:3)''' folder&lt;br /&gt;
# Set the duration of the video under default preset&lt;br /&gt;
# Drag and drop the four presets under the '''Wowza SD (4:3)''' Folder&lt;br /&gt;
# Set the export path to \\10.130.10.50\WowzaShare\SETVOD\{CategoryFolder}\&lt;br /&gt;
# Open PuTTY&lt;br /&gt;
# Connect to Wowza Server&lt;br /&gt;
# type &amp;lt;code&amp;gt;add2wowza&amp;lt;/code&amp;gt;&lt;br /&gt;
# Follow the prompts and copy the resulting link into wordpress&lt;br /&gt;
&lt;br /&gt;
=== About add2wowza ===&lt;br /&gt;
&amp;lt;code&amp;gt;add2wowza&amp;lt;/code&amp;gt; is a custom script that resides in &amp;lt;code&amp;gt;/bin&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Originally it was going to be designed to work with &amp;lt;code&amp;gt;ffmpeg&amp;lt;/code&amp;gt; to automate the upload and conversion of any given video file. Due to some awkward complexities with ffmpeg and our workflows, this idea was scrapped and the core of the script remained.&lt;br /&gt;
&lt;br /&gt;
The script is written in an elementary form of bash using basic command and &amp;lt;code&amp;gt;if&amp;lt;/code&amp;gt; statements.&lt;br /&gt;
&lt;br /&gt;
There are 6 steps:&lt;br /&gt;
# Choose vod drive. &amp;lt;code&amp;gt;vod1&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;vod2&amp;lt;/code&amp;gt; these drives are found in &amp;lt;code&amp;gt;/media&amp;lt;/code&amp;gt;&lt;br /&gt;
# HD or SD - you're selecting which smil template to build from. These templates are stored in &amp;lt;code&amp;gt;media/vod1/add2wowza&amp;lt;/code&amp;gt; it is best not to move these unless you update the &amp;lt;code&amp;gt;SMIL_ROOT&amp;lt;/code&amp;gt; variable in the bash script&lt;br /&gt;
# Base Name: This is the name built upon the naming convention i.e. &amp;lt;code&amp;gt;BBB20180102&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;Board20180604&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;Event_SHS_Commencement_2018&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;Concert_SHS_20181205&amp;lt;/code&amp;gt;&lt;br /&gt;
# Display Name: This is just a clear text name placed in the SMIL file i.e. &amp;lt;code&amp;gt;Board Meeting 06/04/2018&amp;lt;/code&amp;gt;&lt;br /&gt;
# VOD Folder: the specific vod folder to choose &amp;lt;code&amp;gt;events&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;athletics&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;board&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;concerts&amp;lt;/code&amp;gt;&lt;br /&gt;
# Confirm the correct location of the SMIL file&lt;br /&gt;
# Copy link from PuTTY and paste into Wordpress. '''Make sure there are no spaces or line breaks after &amp;lt;code&amp;gt;m3u8&amp;lt;/code&amp;gt; in wordpress'''&lt;br /&gt;
&lt;br /&gt;
=== Problems ===&lt;br /&gt;
* I encoded the files, and created the SMIL file via add2wowza but the player says &amp;quot;404: File Not Found&amp;quot; or there's a black screen with nothing playing&lt;br /&gt;
** Check the file names in the Wowza VOD folder,and that they have the &amp;quot;_720p&amp;quot;... appended&lt;br /&gt;
*The player doesn't play at all, just black screen&lt;br /&gt;
**Check the Wowza File section of the VOD wordpress entry and ensure there are no spaces or line breaks after &amp;lt;code&amp;gt;m3u8&amp;lt;/code&amp;gt;&lt;br /&gt;
[[Category:SETV Guides]]&lt;br /&gt;
[[Category:Wowza]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Adding_VOD_Content&amp;diff=1903</id>
		<title>Adding VOD Content</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Adding_VOD_Content&amp;diff=1903"/>
				<updated>2018-06-15T02:42:27Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: /* How to add media to Wowza, the correct way. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== How to add media to Wowza, the correct way. ==&lt;br /&gt;
[[File:Add2wowza.png|thumb|Screenshot of the add2wowza script interface. User is adding a board meeting to the Wowza list.]]&lt;br /&gt;
The &amp;lt;code&amp;gt;add2wowza&amp;lt;/code&amp;gt; command is a custom written bash script written by Nathan Kadish. It simply automates the SMIL file creation for each new video. HD videos require four encoded versions, while SD requires 3.&lt;br /&gt;
&lt;br /&gt;
HD: 1080x720, 1920x1080, 854x480, 640x360&lt;br /&gt;
&lt;br /&gt;
SD:  480x360, 640x480, 720x540&lt;br /&gt;
&lt;br /&gt;
The SMIL file simply lists the links to each encoded file, so this script takes the &amp;lt;code&amp;gt;BASE_NAME&amp;lt;/code&amp;gt; and turns that into the given filename for the encodings. Ex - if the Board meeting file coming from LGX is &amp;quot;Board20170724&amp;quot; then when you create the encodings in Adobe Media Encoder you will want to add &amp;quot;_540p&amp;quot; &amp;quot;_480p&amp;quot; and &amp;quot;_360p&amp;quot; to the file names so when they are done, they look like &amp;quot;Board20170724_480p&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== HD Videos (i.e Sports) ===&lt;br /&gt;
# Open Adobe Media Encoder&lt;br /&gt;
# Load the HD file you want added to Wowza&lt;br /&gt;
# Under the Encoding Presets look for the '''Wowza HD (16:9)''' folder&lt;br /&gt;
# Set the duration of the video under default preset&lt;br /&gt;
# Drag and drop the four presets under the '''Wowza HD (16:9)''' Folder&lt;br /&gt;
# Set the export path to \\10.130.10.50\WowzaShare\SETVOD\{CategoryFolder}\&lt;br /&gt;
# Open PuTTY&lt;br /&gt;
# Connect to Wowza Server&lt;br /&gt;
# type &amp;lt;code&amp;gt;cd /media/vod2/SETVOD&amp;lt;/code&amp;gt;&lt;br /&gt;
# type &amp;lt;code&amp;gt;add2wowza&amp;lt;/code&amp;gt;&lt;br /&gt;
# Follow the prompts and copy the resulting link into wordpress&lt;br /&gt;
&lt;br /&gt;
=== SD Videos (i.e. Board Meetings) ===&lt;br /&gt;
# Open Adobe Media Encoder&lt;br /&gt;
# Load the SD file you want added to Wowza&lt;br /&gt;
# Under the Encoding Presets look for the '''Wowza SD (4:3)''' folder&lt;br /&gt;
# Set the duration of the video under default preset&lt;br /&gt;
# Drag and drop the four presets under the '''Wowza SD (4:3)''' Folder&lt;br /&gt;
# Set the export path to \\10.130.10.50\WowzaShare\SETVOD\{CategoryFolder}\&lt;br /&gt;
# Open PuTTY&lt;br /&gt;
# Connect to Wowza Server&lt;br /&gt;
# type &amp;lt;code&amp;gt;cd /media/vod2/SETVOD&amp;lt;/code&amp;gt;&lt;br /&gt;
# type &amp;lt;code&amp;gt;add2wowza&amp;lt;/code&amp;gt;&lt;br /&gt;
# Follow the prompts and copy the resulting link into wordpress&lt;br /&gt;
&lt;br /&gt;
=== About add2wowza ===&lt;br /&gt;
&amp;lt;code&amp;gt;add2wowza&amp;lt;/code&amp;gt; is a custom script that resides in &amp;lt;code&amp;gt;/bin&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Originally it was going to be designed to work with &amp;lt;code&amp;gt;ffmpeg&amp;lt;/code&amp;gt; to automate the upload and conversion of any given video file. Due to some awkward complexities with ffmpeg and our workflows, this idea was scrapped and the core of the script remained.&lt;br /&gt;
&lt;br /&gt;
The script is written in an elementary form of bash using basic command and &amp;lt;code&amp;gt;if&amp;lt;/code&amp;gt; statements.&lt;br /&gt;
&lt;br /&gt;
There are 6 steps:&lt;br /&gt;
# Choose vod drive. &amp;lt;code&amp;gt;vod1&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;vod2&amp;lt;/code&amp;gt; these drives are found in &amp;lt;code&amp;gt;/media&amp;lt;/code&amp;gt;&lt;br /&gt;
# HD or SD - you're selecting which smil template to build from. These templates are stored in &amp;lt;code&amp;gt;media/vod1/add2wowza&amp;lt;/code&amp;gt; it is best not to move these unless you update the &amp;lt;code&amp;gt;SMIL_ROOT&amp;lt;/code&amp;gt; variable in the bash script&lt;br /&gt;
# Base Name: This is the name built upon the naming convention i.e. &amp;lt;code&amp;gt;BBB20180102&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;Board20180604&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;Event_SHS_Commencement_2018&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;Concert_SHS_20181205&amp;lt;/code&amp;gt;&lt;br /&gt;
# Display Name: This is just a clear text name placed in the SMIL file i.e. &amp;lt;code&amp;gt;Board Meeting 06/04/2018&amp;lt;/code&amp;gt;&lt;br /&gt;
# VOD Folder: the specific vod folder to choose &amp;lt;code&amp;gt;events&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;athletics&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;board&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;concerts&amp;lt;/code&amp;gt;&lt;br /&gt;
# Confirm the correct location of the SMIL file&lt;br /&gt;
# Copy link from PuTTY and paste into Wordpress. '''Make sure there are no spaces or line breaks after &amp;lt;code&amp;gt;m3u8&amp;lt;/code&amp;gt; in wordpress'''&lt;br /&gt;
&lt;br /&gt;
=== Problems ===&lt;br /&gt;
* I encoded the files, and created the SMIL file via add2wowza but the player says &amp;quot;404: File Not Found&amp;quot; or there's a black screen with nothing playing&lt;br /&gt;
** Check the file names in the Wowza VOD folder,and that they have the &amp;quot;_720p&amp;quot;... appended&lt;br /&gt;
*The player doesn't play at all, just black screen&lt;br /&gt;
**Check the Wowza File section of the VOD wordpress entry and ensure there are no spaces or line breaks after &amp;lt;code&amp;gt;m3u8&amp;lt;/code&amp;gt;&lt;br /&gt;
[[Category:SETV Guides]]&lt;br /&gt;
[[Category:Wowza]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Cougar_Cloud_Server&amp;diff=1902</id>
		<title>Cougar Cloud Server</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Cougar_Cloud_Server&amp;diff=1902"/>
				<updated>2018-06-15T01:46:18Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: /* Device Build */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Under Construction}}{{infobox custom computer&lt;br /&gt;
| Image          = [[File:SuperMicroServerBlade.jpg|frameless]]&lt;br /&gt;
| Caption        = SuperMicro Server Blade&lt;br /&gt;
| Dates          = In Service: August 2015 - Present&lt;br /&gt;
| Location       = SETV Main Office&lt;br /&gt;
| Architecture   = ASRock C2550D4I Mini ITX Atom C2550 Motherboard Integrated Atom C2550&lt;br /&gt;
| Memory         = 8.00 GB DDR3-1600&lt;br /&gt;
| Storage        = &amp;lt;b&amp;gt;Total:&amp;lt;/b&amp;gt; 24TB (14TB After RAID); &amp;lt;br&amp;gt;&lt;br /&gt;
| Speed          = 2.60 GHz (Peak)&lt;br /&gt;
| Power          = 300 W&lt;br /&gt;
| OS             = [[FreeNAS]] [[Linux]] 9 64-bit&lt;br /&gt;
| Purpose        = [[NextCloud]] and Archive File Server&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This custom PC was built by Nathan Kadish. It was designed to handle file serving operations for our Archive and [[NextCloud]] Service.&lt;br /&gt;
&lt;br /&gt;
== Device Build ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Component&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|CPU&lt;br /&gt;
|Integrated Intel Atom C2550&lt;br /&gt;
|2.6Ghz Turbo&lt;br /&gt;
|-&lt;br /&gt;
|Motherboard&lt;br /&gt;
|ASRock C2550D4l Mini ITX Atom&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Crucial 16GB (2 x 8GB) DDR3-1600 Memory&lt;br /&gt;
|2x16GB&lt;br /&gt;
|-&lt;br /&gt;
|Storage&lt;br /&gt;
|Hitachi 3TB 3.5&amp;quot; Ultrastar 7K3000 Internal Hard Drive&lt;br /&gt;
|ada0 (Archive M1)&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|NEW DRIVE TBD&lt;br /&gt;
|ada1 (Archive M1)&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Western Digital 4TB 3.5&amp;quot; Internal Hard Drive&lt;br /&gt;
|ada2 (WowzaVOD2BAK)&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Kingston SSDNow 120GB&lt;br /&gt;
|ada3 (Cache)&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Western Digital 2TB 3.5&amp;quot; Internal Hard Drive&lt;br /&gt;
|ada4 (Cloud M0)&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Seagate 6TB 3.5&amp;quot; 7200RPM Internal Hard Drive&lt;br /&gt;
|ada5 (Archive M0)&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Western Digital 2TB 3.5&amp;quot; Internal Hard Drive&lt;br /&gt;
|ada6 (Cloud M1)&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Seagate 6TB 3.5&amp;quot; 7200RPM Internal Hard Drive&lt;br /&gt;
|ada7 (Archive M0)&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Sandisk 16GB USB Flash Drive&lt;br /&gt;
|da0&lt;br /&gt;
|-&lt;br /&gt;
|Video Card&lt;br /&gt;
|Integrated graphics&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Case&lt;br /&gt;
|SUPERMICRO CSE-825TQ-563LPB Black 2U Rackmount Server Case 560W&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|PSU&lt;br /&gt;
|Supermicro embedded 560W PSU&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Optical Drive&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Hard Drive Setup ===&lt;br /&gt;
There are 4 drives dedicated to the archive (Archive M0,M1) 2 for dedicated Cloud storage (Cloud M0,M1) 1 SSD for Caching, 1 for the mirrored backup of Wowza's vod2 drive&lt;br /&gt;
&lt;br /&gt;
=== Locked out of IPMI Module? ===&lt;br /&gt;
SSH into FreeNas Root &amp;lt;ref&amp;gt;http://www.openfusion.net/linux/ipmi_on_centos&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ipmitool user list 1&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ipmitool user set password 2 &amp;lt;new_Password&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:SETV Machines|Advanced Edit Tower]]&lt;br /&gt;
[[Category:Servers]]&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=NextCloud/Installation&amp;diff=1901</id>
		<title>NextCloud/Installation</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=NextCloud/Installation&amp;diff=1901"/>
				<updated>2018-05-15T14:48:22Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: /* Add Cron Job: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''HOW TO: INSTALL NEXTCLOUD 10 ON FREEBSD JAIL''' ==&lt;br /&gt;
I wrote this guide primarily as a backup in case I needed to redo things over again, and decided to spruce it up and share it with others.&lt;br /&gt;
&lt;br /&gt;
Please read Reference 1&amp;lt;ref&amp;gt;https://forums.freenas.org/index.php?threads/how-to-nextcloud-with-famp.46111/#post-313910&amp;lt;/ref&amp;gt; before continuing with this guide. The forum post has the most up-to-date information.&lt;br /&gt;
&lt;br /&gt;
=== '''The Goal:''' ===&lt;br /&gt;
Put Nextcloud 10 on a FreeNAS jail using a standard LAMP setup for FreeBSD (FAMP)&lt;br /&gt;
&lt;br /&gt;
This guide is a mix of several other guides I found for installing OwnCloud. The process for OC9 and NC10 is virtually identical. But most of the guides were out of date in regards to FreeNAS, so I updated it for FreeNAS 9.10.1, Nextcloud 10, Apache 2.4, PHP 7, and MariaDB 10.1 and FreeBSD 10+ Jail. I sourced all of the guides and pages I had used down at the bottom.&lt;br /&gt;
&lt;br /&gt;
== '''Getting Started -''' ==&lt;br /&gt;
'''General Assumptions:'''&lt;br /&gt;
* You are familiar with Linux and comfortable with command line, but not so familiar with FreeBSD&lt;br /&gt;
* You have already set up a proper pool for your NextCloud dataset&lt;br /&gt;
* You are using FreeNAS 9.10.1-RELEASE with FreeBSD Jail Template &amp;quot;------&amp;quot;&lt;br /&gt;
* Your FreeNAS is connected to the internet, and your jails are properly configured.&lt;br /&gt;
* That you're generally on a clean install of 9.10.1-RELEASE, upgrades from 9.3, 9.2.1, etc have some issues with jails and templates. I ain't got time for that nonsense so this was a fresh install for me.&lt;br /&gt;
* You're using this for maybe a small start-up with no more than 100 users.&lt;br /&gt;
'&amp;lt;nowiki/&amp;gt;'''''Specifics:''''''&lt;br /&gt;
&lt;br /&gt;
My Build: A real budget strapped build. (&amp;lt;$1400)&lt;br /&gt;
&lt;br /&gt;
ASRock C2550d4n&lt;br /&gt;
&lt;br /&gt;
16GB Crucial (2x8gb) DDR3-1600 EUDIMM 1.35v&lt;br /&gt;
&lt;br /&gt;
x2 5TB HGST NAS 7200rpm &lt;br /&gt;
&lt;br /&gt;
x2 2TB Seagate Barracuda 7200rpm (These two are used for my NextCloud setup)&lt;br /&gt;
&lt;br /&gt;
Target: 100+ users for Cloud and Archive storage, currently, with disk-to-disk mirroring. Soon to be expanded to a proper raid when I get the funds.&lt;br /&gt;
&lt;br /&gt;
___TOC___&lt;br /&gt;
&lt;br /&gt;
== '''Creating the Dataset &amp;amp; Jail''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Let's Begin''' ===&lt;br /&gt;
'''''Pool Name: &amp;quot;SETV_Cloud&amp;quot;'''''&lt;br /&gt;
&lt;br /&gt;
'''''Static IP Address: 10.130.12.191'''''&lt;br /&gt;
&lt;br /&gt;
==== '''Create Dataset'''&amp;lt;ref name=&amp;quot;:02&amp;quot;&amp;gt;https://forums.freenas.org/index.php?threads/how-to-owncloud-using-nginx-php-fpm-and-mysql.17786/&amp;lt;/ref&amp;gt; ====&lt;br /&gt;
Within FreeNAS Userspace:&lt;br /&gt;
&lt;br /&gt;
Storage &amp;gt; Create ZFS Dataset&lt;br /&gt;
* Dataset Name = files&lt;br /&gt;
* Compression level = lz4&lt;br /&gt;
* Enable atime = Off&lt;br /&gt;
* All other options default&lt;br /&gt;
* Dataset Name = db&lt;br /&gt;
* Compression level = zle&lt;br /&gt;
* Enable atime = Off&lt;br /&gt;
* Record Size = 16K (Under Advanced Mode)&lt;br /&gt;
* All other options default&lt;br /&gt;
Users - Add New&lt;br /&gt;
* Username: mysql&lt;br /&gt;
* Shell: nologin&lt;br /&gt;
* Full Name: SQL User&lt;br /&gt;
* Password: anything&lt;br /&gt;
Storage -&amp;gt; /mnt/SETV_Cloud/db Change Permissions&lt;br /&gt;
* Owner: mysql&lt;br /&gt;
* Owner: mysql&lt;br /&gt;
* Set permission recursively&lt;br /&gt;
&lt;br /&gt;
==== '''Create Jail''' ====&lt;br /&gt;
Jails &amp;gt; Add Jail&lt;br /&gt;
&lt;br /&gt;
* Jail Name: nextcloud&lt;br /&gt;
* Template: &amp;quot;------&amp;quot;&lt;br /&gt;
* IPv4 Address: 10.130.10.121&lt;br /&gt;
* IPv4 Subnet: 255.255.248.0&lt;br /&gt;
* Leave all else default&lt;br /&gt;
* Ensure VIMAGE is checked&lt;br /&gt;
&lt;br /&gt;
==== Add Storage ====&lt;br /&gt;
Jails -&amp;gt; Storage&lt;br /&gt;
* Jail: nextcloud&lt;br /&gt;
* Source = /mnt/SETV_Cloud/files&lt;br /&gt;
* Destination = /mnt/files&lt;br /&gt;
&lt;br /&gt;
* Jail: nextcloud&lt;br /&gt;
* Source = /mnt/SETV_Cloud/db&lt;br /&gt;
* Destination = /var/db/mysql&lt;br /&gt;
&lt;br /&gt;
==== '''Setting primary cache''' ====&lt;br /&gt;
In FreeNAS UserSpace Shell&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ zfs set primarycache=metadata Cloud/db&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Configure Jail for SSH''' ===&lt;br /&gt;
We need to set up the jail to be able to SSH in and make faster adjustments.&lt;br /&gt;
&lt;br /&gt;
Enter the Jail's shell from within FreeNAS&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ pkg upgrade&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If it asks any questions, select Y and continue.&lt;br /&gt;
&lt;br /&gt;
==== '''Enable SSH''' ====&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ cd /etc/ssh&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ vi sshd_config&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Personally, I despise vi, but this is the quickest method I have found. Know a way better, please let me know.''&lt;br /&gt;
&lt;br /&gt;
''if you don't know how to use vi, here's a quick step by step. I suggest you check out this [http://www.lagmonster.org/docs/vi.html cheat sheet]''&lt;br /&gt;
&lt;br /&gt;
# Scroll down using the DOWN arrow key until you find &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;#PermitRootLogin no&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt; line.&lt;br /&gt;
# With the cursor on the # hit x this will delete the hash now use the RIGHT arrow key to select the space before 'no'&lt;br /&gt;
# Hit &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;i&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt; type &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;yes&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
# Hit &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;esc&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
# Select the n in 'no' and hit x twice to delete 'no' so the line reads PermitRootLogin yes&lt;br /&gt;
# type &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;:wq&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
# Hit ENTER&lt;br /&gt;
# The file is now saved&lt;br /&gt;
&lt;br /&gt;
==== '''Now enable and start SSH''' ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ sysrc sshd_enable=yes&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ service sshd start&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== '''Change Jail Root PW''' =====&lt;br /&gt;
We need to reset the jails root password; type this command, and follow the prompts&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ passwd&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now close the shell within FreeNAS, and use PuTTY to SSH to the jail.&lt;br /&gt;
&lt;br /&gt;
== '''F.A.M.P Installation''' ==&lt;br /&gt;
In this section we are going to install F.A.M.P, an iteration of LAMP (Linux, Apache, MySQL, PHP). I chose this because I, personally, haven't had much luck with nginx and mariadb. Another guide suggested lighttp and sqlite, but those might not hold up to a good amount of users storing a bit of data.&lt;br /&gt;
&lt;br /&gt;
The setup is:&lt;br /&gt;
* FreeBSD 10.1&lt;br /&gt;
* Apache 2.4&lt;br /&gt;
* MariaDB 10.1&lt;br /&gt;
* PHP 7.0&lt;br /&gt;
This provides the basis for our webserving jail.&lt;br /&gt;
&lt;br /&gt;
Before we get started, let's add a few necessary packages as they aren't currently installed.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ pkg install nano wget sudo&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We will install each part of FAMP one-by-one. FreeBSD is the Operating system so good to go on that!&lt;br /&gt;
&lt;br /&gt;
=== '''Apache 2.4''' &amp;lt;ref name=&amp;quot;:22&amp;quot;&amp;gt;https://www.digitalocean.com/community/tutorials/how-to-install-an-apache-mysql-and-php-famp-stack-on-freebsd-10-1&amp;lt;/ref&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
==== '''Install''' ====&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ pkg install apache24&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== '''Setup in rc.conf''' ====&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ sysrc apache24_enable=yes&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== '''Start Apache''' ====&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ service apache24 start&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Check that it works'''&lt;br /&gt;
&lt;br /&gt;
Navigate to [http://10.130.12.191/ http://'''10.130.12.191'''] and you should see the text &amp;quot;It Works!&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== '''MariaDB 10.1''' &amp;lt;ref name=&amp;quot;:12&amp;quot;&amp;gt;https://levlaz.org/installing-nextcloud-on-a-freebsd-vps/&amp;lt;/ref&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
==== '''Install''' ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ pkg install mariadb101-server&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== '''Setup in rc.conf''' ====&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ sysrc mysql_enable=yes&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Start Server'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ service mysql-server start&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== '''Run Wizard Script''' ====&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ mysql_secure_installation&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Read and follow prompts. There is no root password set just hit enter, and answer Y to all the following questions.'''&lt;br /&gt;
&lt;br /&gt;
==== '''Login to MySQL, create Nextcloud DB and User''' ====&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ mysql -u root -p&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
enter password you made for root during setup.&lt;br /&gt;
&lt;br /&gt;
Enter each of these commands one-by-one, and make sure to include the semi-colon ;&lt;br /&gt;
&lt;br /&gt;
Code:&lt;br /&gt;
 CREATE DATABASE nextcloud; &lt;br /&gt;
 &lt;br /&gt;
 CREATE USER 'nextcloud_admin'@'localhost' IDENTIFIED BY 'MAKEUP-YOUR-OWN-PASSWORD'; &lt;br /&gt;
 &lt;br /&gt;
 GRANT ALL ON nextcloud.* TO 'nextcloud_admin'@'localhost'; &lt;br /&gt;
 &lt;br /&gt;
 FLUSH PRIVILEGES; &lt;br /&gt;
 &lt;br /&gt;
 exit &lt;br /&gt;
Replace MAKEUP-YOUR-OWN-PASSWORD with a password of your choosing. You need this for the NextCloud setup.&lt;br /&gt;
&lt;br /&gt;
=== '''PHP 7.0''' ===&lt;br /&gt;
&lt;br /&gt;
==== '''Install PHP and associated modules''' ====&lt;br /&gt;
Code:&lt;br /&gt;
 pkg install redis php70 php70-bz2 php70-ctype php70-curl php70-dom php70-exif php70-fileinfo php70-filter php70-gd php70-hash php70-iconv php70-intl php70-json php70-mbstring php70-mcrypt php70-pdo_mysql php70-openssl php70-posix php70-session php70-simplexml php70-xml php70-xmlreader php70-xmlwriter php70-xsl php70-wddx php70-zip php70-zlib php70-APCu php70-redis&lt;br /&gt;
&lt;br /&gt;
==== Setup rc.conf ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;sysrc 'mysql_enable=YES' 'redis_enable=YES'&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== '''Configuring Apache for PHP7''' ====&lt;br /&gt;
Ensure that the rewrite and ssl modules are enabled (uncommented) in /usr/local/etc/apache24/httpd.conf.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ cd /usr/local/etc/apache24/&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ nano httpd.conf&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Search the conf file for &amp;quot;ssl_module&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Code:&lt;br /&gt;
 ctrl+w &lt;br /&gt;
 ssl_module &lt;br /&gt;
 ENTER&lt;br /&gt;
&lt;br /&gt;
Uncomment (delete the # at the start of the line) so it looks like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;LoadModule ssl_module libexec/apache24/mod_ssl.so&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Repeat for&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;LoadModule rewrite_module libexec/apache24/mod_rewrite.so&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== '''Remove php5 add php7:''' &amp;lt;ref&amp;gt;http://serverfault.com/questions/646333/apache-24-not-serving-php-on-freebsd-10&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;https://kdenby.homelinux.com/?p=208&amp;lt;/ref&amp;gt; ====&lt;br /&gt;
* Find &amp;amp; Remove this &amp;gt;&amp;gt; &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;LoadModule php5_module libexec/apache24/libphp5.so&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
* Replace with &amp;gt;&amp;gt; &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;LoadModule php7_module libexec/apache24/libphp7.so&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
Right after libphp7.so line add&lt;br /&gt;
&lt;br /&gt;
Code:&lt;br /&gt;
 &amp;lt;IfModule php7_module&amp;gt;&lt;br /&gt;
    &amp;lt;FilesMatch &amp;quot;\.(php|phps|php7|phtml)$&amp;quot;&amp;gt;&lt;br /&gt;
        SetHandler php7-script&lt;br /&gt;
    &amp;lt;/FilesMatch&amp;gt;&lt;br /&gt;
    DirectoryIndex index.php &lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
Then FIND &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;&amp;lt;IFModule mime_module&amp;gt;&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Insert Right After:&lt;br /&gt;
&lt;br /&gt;
Code:&lt;br /&gt;
 AddType application/x-httpd-php-source .phps&lt;br /&gt;
 AddType application/x-httpd-php        .php&lt;br /&gt;
Save the file &amp;amp; exit&lt;br /&gt;
&lt;br /&gt;
==== Add a PHP handler ====&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;# cd/usr/local/etc/apache24/modules.d&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;# touch /usr/local/etc/apache24/modules.d/001_mod_php.conf&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;# nano /usr/local/etc/apache24/modules.d/001_mod_php.conf&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Paste:&lt;br /&gt;
&lt;br /&gt;
Code:&lt;br /&gt;
 &amp;lt;FilesMatch &amp;quot;\.php$&amp;quot;&amp;gt;&lt;br /&gt;
         SetHandler application/x-httpd-php&lt;br /&gt;
     &amp;lt;/FilesMatch&amp;gt;&lt;br /&gt;
     &amp;lt;FilesMatch &amp;quot;\.phps$&amp;quot;&amp;gt;&lt;br /&gt;
         SetHandler application/x-httpd-php-source&lt;br /&gt;
     &amp;lt;/FilesMatch&amp;gt;&lt;br /&gt;
  &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
Save &amp;amp; Exit&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;service apache24 restart&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once you're done save and close CTRL+x, Y, ENTER&lt;br /&gt;
&lt;br /&gt;
==== '''Configure PHP.INI''' &amp;lt;ref name=&amp;quot;:03&amp;quot;&amp;gt;https://forums.freenas.org/index.php?threads/how-to-owncloud-using-nginx-php-fpm-and-mysql.17786/&amp;lt;/ref&amp;gt; ====&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ nano /usr/local/etc/php.ini&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
find &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;cgi.fix_pathinfo=0&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt; change from =0 to =1&lt;br /&gt;
&lt;br /&gt;
find &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;date.timezone =&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt; Change to your timezone (America/New_York)&lt;br /&gt;
&lt;br /&gt;
find &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;post_max_size=&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt; change it to 1999M&lt;br /&gt;
&lt;br /&gt;
find &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;upload_max_size=&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt; change to 1999M&lt;br /&gt;
&lt;br /&gt;
CTRL+X, Y, ENTER&lt;br /&gt;
&lt;br /&gt;
Restart Apache&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ service apache24 restart&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== '''Testing with PHPINFO()''' &amp;lt;ref&amp;gt;https://mediatemple.net/community/products/dv/204643880/how-can-i-create-a-phpinfo.php-page&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;:23&amp;quot;&amp;gt;https://www.digitalocean.com/community/tutorials/how-to-install-an-apache-mysql-and-php-famp-stack-on-freebsd-10-1&amp;lt;/ref&amp;gt; =====&lt;br /&gt;
Navigate to &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;/usr/local/www/apache24/data/&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ touch info.php&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ nano info.php&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Paste:&lt;br /&gt;
&lt;br /&gt;
Code:&lt;br /&gt;
 &amp;lt;?php&lt;br /&gt;
  // Show all information, defaults to INFO_ALL&lt;br /&gt;
  phpinfo();&lt;br /&gt;
  ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save &amp;amp; Exit&lt;br /&gt;
&lt;br /&gt;
Navigate to [http://10.130.12.191/info.php http://'''10.130.12.191'''/info.php]&lt;br /&gt;
&lt;br /&gt;
You should see a full page with all the information regarding your PHP installation.&lt;br /&gt;
&lt;br /&gt;
=== '''Configure REDIS''' &amp;lt;ref name=&amp;quot;:13&amp;quot;&amp;gt;https://levlaz.org/installing-nextcloud-on-a-freebsd-vps/&amp;lt;/ref&amp;gt; ===&lt;br /&gt;
Update &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;/usr/local/etc/redis.conf&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;to run on local socket&lt;br /&gt;
&lt;br /&gt;
Find &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;port=&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt; and change it to 0&lt;br /&gt;
&lt;br /&gt;
Find and replace:&lt;br /&gt;
&lt;br /&gt;
Code:&lt;br /&gt;
 unixsocket /tmp/redis.sock &lt;br /&gt;
 unixsocketperm 750&lt;br /&gt;
&lt;br /&gt;
==== Add REDIS to rc.conf ====&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ sysrc redis_enable=yes&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Start REDIS ====&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ service redis start&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Check Redis ====&lt;br /&gt;
Run &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;ls -al /tmp&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt; to run on local socket, you should see redis.sock and mysql.sock in the list.&lt;br /&gt;
&lt;br /&gt;
If you see those two, you're ALMOST DONE!!&lt;br /&gt;
&lt;br /&gt;
== '''Installing NextCloud'''&amp;lt;ref name=&amp;quot;:14&amp;quot;&amp;gt;https://levlaz.org/installing-nextcloud-on-a-freebsd-vps/&amp;lt;/ref&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
=== Download ===&lt;br /&gt;
Go to the default apache data directory&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ cd /usr/local/www/apache24/data&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Download Nextcloud&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ wget &amp;lt;nowiki&amp;gt;https://download.nextcloud.com/server/releases/nextcloud-10.0.0.zip&amp;lt;/nowiki&amp;gt;&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Unzip Nextcloud&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ unzip nextcloud-10.0.0.zip&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Give correct owner&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;chown -R www:www /usr/local/www/apache24/data/nextcloud /mnt/files&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;chown -R mysql:mysql /var/db/mysql&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Add virtual Host info''' &amp;lt;ref&amp;gt;https://www.linuxbabe.com/cloud-storage/setup-nextcloud-server-ubuntu-16-04-apache-mariadb-php7&amp;lt;/ref&amp;gt; ===&lt;br /&gt;
Navigate to &amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;/usr/local/etc/apache24/Includes&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Touch file:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ touch cloud.YOURDOMAIN.com.conf&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ nano cloud*&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Copy and paste the below text.&lt;br /&gt;
&lt;br /&gt;
Code:&lt;br /&gt;
  &amp;lt;VirtualHost *:80&amp;gt;&lt;br /&gt;
 &amp;lt;nowiki&amp;gt; &amp;lt;/nowiki&amp;gt;DocumentRoot &amp;quot;/usr/local/www/apache24/data/nextcloud&amp;quot;&lt;br /&gt;
 &amp;lt;nowiki&amp;gt; &amp;lt;/nowiki&amp;gt;ServerName cloud.ssdcougars.tv&lt;br /&gt;
    RewriteEngine on&lt;br /&gt;
    RewriteCond %{SERVER_NAME} =cloud.ssdcougars.tv&lt;br /&gt;
    RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,QSA,R=permanent]&lt;br /&gt;
  #ErrorLog ${APACHE_LOG_DIR}/error.log&lt;br /&gt;
  #CustomLog ${APACHE_LOG_DIR}/access.log combined&lt;br /&gt;
 &amp;lt;Directory /usr/local/www/apache24/data/nextcloud/&amp;gt;&lt;br /&gt;
  Options +FollowSymlinks&lt;br /&gt;
  AllowOverride All&lt;br /&gt;
  &amp;lt;IfModule mod_dav.c&amp;gt;&lt;br /&gt;
  Dav off&lt;br /&gt;
  &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
  SetEnv HOME /usr/local/www/apache24/data/nextcloud&lt;br /&gt;
  SetEnv HTTP_HOME /usr/local/www/apache24/data/nextcloud&lt;br /&gt;
  Satisfy Any&lt;br /&gt;
 &amp;lt;/Directory&amp;gt;&lt;br /&gt;
 &amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
Restart apache... again...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ service apache24 restart&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Navigate to the website&lt;br /&gt;
&lt;br /&gt;
[http://10.130.12.191/ http://'''10.130.12.191'''/]&lt;br /&gt;
&lt;br /&gt;
You should now see the setup screen for NextCloud!!&lt;br /&gt;
&lt;br /&gt;
If you do, give yourself a pat on the back. Now for the last steps...&lt;br /&gt;
&lt;br /&gt;
== '&amp;lt;nowiki/&amp;gt;'''''NextCloud WebUI'''''' ==&lt;br /&gt;
Set up your admin account with a username and password you choose.&lt;br /&gt;
&lt;br /&gt;
=== Storage &amp;amp; database ===&lt;br /&gt;
* Data folder = /mnt/files&lt;br /&gt;
* Database user = nextcloud_admin&lt;br /&gt;
* Database password = MADEUP_PASSWORD_FROM_BEFORE&lt;br /&gt;
* Database name = nextcloud&lt;br /&gt;
* Database host = localhost:/tmp/mysql.sock&lt;br /&gt;
&lt;br /&gt;
=== '''Final Setup''' ===&lt;br /&gt;
In Jail Shell&lt;br /&gt;
&lt;br /&gt;
==== Setup redis for caching ====&lt;br /&gt;
&lt;br /&gt;
Code:&lt;br /&gt;
 $ su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set memcache.local --value=&amp;quot;\OC\Memcache\APCu&amp;quot;' &lt;br /&gt;
 $ su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set memcache.locking --value=&amp;quot;\OC\Memcache\Redis&amp;quot;' &lt;br /&gt;
 $ su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set redis host --value=&amp;quot;/tmp/redis.sock&amp;quot;' &lt;br /&gt;
 $ su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set redis port --value=0 --type=integer'&lt;br /&gt;
&lt;br /&gt;
==== Setup All Previews ====&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enable_previews --value=true --type=boolean'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 0 --value=&amp;quot;OC\Preview\PNG&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 1 --value=&amp;quot;OC\Preview\JPEG&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 2 --value=&amp;quot;OC\Preview\GIF&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 3 --value=&amp;quot;OC\Preview\BMP&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 4 --value=&amp;quot;OC\Preview\XBitmap&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 5 --value=&amp;quot;OC\Preview\MarkDown&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 6 --value=&amp;quot;OC\Preview\MP3&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 7 --value=&amp;quot;OC\Preview\TXT&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 8 --value=&amp;quot;OC\Preview\Illustrator&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 9 --value=&amp;quot;OC\Preview\Movie&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 10 --value=&amp;quot;OC\Preview\MSOffice2003&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 11 --value=&amp;quot;OC\Preview\MSOffice2007&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 12 --value=&amp;quot;OC\Preview\MSOfficeDoc&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 13 --value=&amp;quot;OC\Preview\OpenDocument&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 14 --value=&amp;quot;OC\Preview\PDF&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 15 --value=&amp;quot;OC\Preview\Photoshop&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 16 --value=&amp;quot;OC\Preview\Postscript&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 17 --value=&amp;quot;OC\Preview\StarOffice&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 18 --value=&amp;quot;OC\Preview\SVG&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 19 --value=&amp;quot;OC\Preview\TIFF&amp;quot;'&lt;br /&gt;
 su -m www -c 'php /usr/local/www/apache24/data/nextcloud/occ config:system:set enabledPreviewProviders 20 --value=&amp;quot;OC\Preview\Font&amp;quot;'&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Setup NC's cron jobs ====&lt;br /&gt;
Set Crontab editor to Nano for easier editing:&lt;br /&gt;
&lt;br /&gt;
Add&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;setenv VISUAL /usr/local/bin/nano&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;setenv EDITOR /usr/local/bin/nano&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to &amp;lt;code&amp;gt;~/.login&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;$ crontab -u www -e&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Code:&lt;br /&gt;
 */15 * * * * /usr/local/bin/php -f /usr/local/www/apache24/data/nextcloud/cron.php&lt;br /&gt;
&lt;br /&gt;
== Setting up SSL using Certbot ==&lt;br /&gt;
&lt;br /&gt;
=== httpd.conf Edits ===&lt;br /&gt;
Edit &amp;lt;code&amp;gt;/usr/local/etc/apache24/httpd.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Find &amp;lt;code&amp;gt;Listen 80&amp;lt;/code&amp;gt; and add underneath &amp;lt;code&amp;gt;Listen 443&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Edit &amp;lt;code&amp;gt;/usr/local/etc/apache24/Includes/cloud.ssdmftk.com.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add the following:&lt;br /&gt;
 &amp;lt;VirtualHost *:443&amp;gt;&lt;br /&gt;
     ServerAdmin webmaster@ssdcougars.tv&lt;br /&gt;
     ServerName cloud.ssdmftk.com&lt;br /&gt;
     DirectoryIndex index.php&lt;br /&gt;
     DocumentRoot /usr/local/www/apache24/data/nextcloud&lt;br /&gt;
     SSLCertificateFile /usr/local/etc/letsencrypt/live/cloud.ssdmftk.com/fullchain.pem&lt;br /&gt;
     SSLCertificateKeyFile /usr/local/etc/letsencrypt/live/cloud.ssdmftk.com/privkey.pem&lt;br /&gt;
     SSLEngine on&lt;br /&gt;
     # Intermediate configuration, tweak to your needs&lt;br /&gt;
     SSLProtocol             all -SSLv2 -SSLv3&lt;br /&gt;
     SSLCipherSuite          ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA&lt;br /&gt;
     SSLHonorCipherOrder     on&lt;br /&gt;
     SSLCompression          off&lt;br /&gt;
     SSLOptions +StrictRequire&lt;br /&gt;
     &amp;lt;Directory /usr/local/www/apache24/data/nextcloud&amp;gt;&lt;br /&gt;
       AllowOverride all&lt;br /&gt;
     &amp;lt;/Directory&amp;gt;&lt;br /&gt;
     &amp;lt;IfModule mod_headers.c&amp;gt;&lt;br /&gt;
       Header always set Strict-Transport-Security &amp;quot;max-age=15552000; includeSubDomains&amp;quot;&lt;br /&gt;
     &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
   &amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Install Certbot &amp;lt;ref name=&amp;quot;:12&amp;quot; /&amp;gt; ===&lt;br /&gt;
&amp;lt;code&amp;gt;pkg install py27-certbot&amp;lt;/code&amp;gt;&lt;br /&gt;
 $ certbot certonly --webroot -w /usr/local/www/apache24/data/nextcloud -d cloud.ssdmftk.com -d cloud.ssdcougars.tv -w /usr/local/www/apache24/data/nextcloud &lt;br /&gt;
 $ service apache24 restart &lt;br /&gt;
&lt;br /&gt;
=== Add Cron Job: ===&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;crontab -e&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will run certbot renewal every day at 1am and refresh Apache at 1:05 am&amp;lt;ref&amp;gt;https://hostpresto.com/community/tutorials/how-to-secure-your-apache-using-certbot-ssl/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;kbd&amp;gt;* 1 * * *&amp;lt;/kbd&amp;gt; /usr/local/bin/certbot &amp;lt;kbd&amp;gt;renew &amp;gt; /var/log/certbotrenew.log 2&amp;gt;&amp;amp;1&amp;lt;/kbd&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;5 1 * * * service apache24 restart&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Collabora Online Setup ==&lt;br /&gt;
&lt;br /&gt;
=== Set up Docker on FreeBSD Jail &amp;lt;ref&amp;gt;http://www.freenas.org/blog/docker-done-right/&amp;lt;/ref&amp;gt; ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|# pkg install docker-freebsd ca_root_nss&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt; zfs create -o mountpoint=/usr/docker zroot/docker&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt; service docker onestart&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Install Collabora Docker Container &amp;lt;ref&amp;gt;https://nextcloud.com/collaboraonline/&amp;lt;/ref&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
[https://help.nextcloud.com/t/debian-jessie-apache-myriadb-php7-0-nextcloud-11-collabora-start-to-finish-with-a-few-extras/7867 Debian info on Callabora] &lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
And VOILA! YOU ARE DONE!!!!!&lt;br /&gt;
&lt;br /&gt;
I have NOT yet installed the CollaboraOnline stuff yet. I will have to figure that out....&lt;br /&gt;
&lt;br /&gt;
=== Errors: ===&lt;br /&gt;
'''ERR_EMPTY_RESPONSE'''&lt;br /&gt;
&lt;br /&gt;
In &amp;lt;code&amp;gt;/var/log/httpd-error.log&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See similar errors to:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;[pid:#####] child died with signal 11&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Problem: Invalid LoadModule listed in Apache's httpd.conf&lt;br /&gt;
&lt;br /&gt;
In our case it was loading php5 - we don't have php5 so it segfaults. &lt;br /&gt;
&lt;br /&gt;
In &amp;lt;code&amp;gt;/usr/local/etc/apache24/httpd.conf&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Comment out &amp;lt;code&amp;gt;LoadModule php5_module        libexec/apache24/libphp5.so&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
[[Category:SETV Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1900</id>
		<title>Wowza Server/Setup &amp; Install</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1900"/>
				<updated>2018-04-24T17:34:47Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: /* SSL on Wowza */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
This page is to describe how Wowza was installed.&lt;br /&gt;
&lt;br /&gt;
== Quick Points: ==&lt;br /&gt;
* Linux Debian 8&lt;br /&gt;
* Basic LAMP Installation (Linux, Apache, MySQL, PHP)&lt;br /&gt;
* Wowza Streaming Engine .runpackage&lt;br /&gt;
* Media is stored on external drive &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; is network discoverable via SAMBA sharing&lt;br /&gt;
* FTP access was enabled to two folders on the &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; drive&lt;br /&gt;
&lt;br /&gt;
== Wowza Install instructions ==&lt;br /&gt;
* Navigate to the folder that contains the downloaded Linux package and then execute the following commands, depending on your platform. Then, follow the wizard instructions.&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-install-and-configure-wowza-streaming-engine#installWowza&amp;lt;/ref&amp;gt;&lt;br /&gt;
64-bit Linux systems&lt;br /&gt;
 sudo chmod +x WowzaStreamingEngine-4.7.1-linux-x64-installer.run sudo ./WowzaStreamingEngine-4.7.1-linux-x64-installer.run&lt;br /&gt;
&lt;br /&gt;
During the installation process, you'll be asked:&lt;br /&gt;
* To accept the terms of the license agreement.&lt;br /&gt;
* To enter a valid product license key. If you acquired a new license key, you'll find it in the email that you received from Wowza Sales. If you have a previous version of the Streaming Engine software installed, you may be able to use the license key found in the [install-dir]/conf/Server.license file.&lt;br /&gt;
* To create a user name and password for an Administrator account. You'll use this account to sign in to the browser-based Wowza Streaming Engine Manager. The user name and password values are case-sensitive.&lt;br /&gt;
* To confirm or change the install location. By default, Wowza Streaming Engine installs files in the following directories: '''Linux''': /usr/local/WowzaStreamingEngine-4.7.1/ (as the root user)&lt;br /&gt;
&lt;br /&gt;
=== Start the software as a service (Linux) ===&lt;br /&gt;
To start Wowza software as a service on Linux, you must be the root user with sudo access. If these instructions don't apply to your Linux distribution, consult your Linux manual.&lt;br /&gt;
# In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngine start -OR-  /etc/init.d/WowzaStreamingEngine start&lt;br /&gt;
# Confirm that the engine is running by opening a web browser and entering the following URL: http://[wowza-ip-address]:1935  For [wowza-ip-address], use the IP address or domain of the local or remote Wowza server. For example:  &amp;lt;nowiki&amp;gt;http://localhost:1935&amp;lt;/nowiki&amp;gt;  The browser should display the Wowza Streaming Engine software version number. If not, check to see if the server software installed correctly and that TCP port 1935 is open on your router, firewall, and in your iptables.&lt;br /&gt;
# After the Wowza Streaming Engine server software is running, start Wowza Streaming Engine Manager. In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngineManager start -OR-  /etc/init.d/WowzaStreamingEngineManager start&lt;br /&gt;
&lt;br /&gt;
== Updating Wowza ==&lt;br /&gt;
# SSH Into Server&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-update-your-wowza-streaming-engine-installation&amp;lt;/ref&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd /usr/local/WowzaStreamingEngine/updates&amp;lt;/code&amp;gt;&lt;br /&gt;
# Get download link from wowza.com -- sign in and go to Downloads, Right Click and Copy Link Address&lt;br /&gt;
# &amp;lt;code&amp;gt;wget https://store.wowza.com/downloads/user/5984a69bef0fd/WowzaStreamingEngine-Update-X.X.X.zip&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;unzip WowzaStreamingEngine-Update-X.X.X.zip -d WowzaStreamingEngine-Update-X.X.X&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd WowzaStreamingEngine-Update-X.X.X/linux&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;chmod a+x *.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;./update.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine start&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager start&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== SSH on Wowza ====&lt;br /&gt;
Follow this [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ LINK] and follow the instructions. &amp;lt;ref&amp;gt;https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You MUST have Open-JDK-8 installed and it is a pain in the ass. As of this writing, this has been done, so no need to worry. &lt;br /&gt;
&lt;br /&gt;
== SSL on Wowza ==&lt;br /&gt;
For security JWPlayer now requires HTTPS on all streams and sites with HTTPS enabled. This changes the port number the service streams (from 1935 to 8443) and requires scripting and cron jobs to actively renew it.&lt;br /&gt;
&lt;br /&gt;
A combination of the steps outlined [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ HERE] and [https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server HERE] were used to set it up on the current server. The idea being you install Certbot, download a custom script, run certbot for the wowza.ssdcougars.tv domain, run the custom script to convert the certbot .pem keys into a JKS store (A Java file, Wowza runs entirely in Java). You then enable a cron job to do this automatically before the LetsEncrypt/Certbot keys expire every 3 months.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;s&amp;gt;0 5 * * * root /usr/bin/certbot renew --standalone --pre-hook 'systemctl stop WowzaStreamingEngine' --post-hook '/usr/local/WowzaStreamingEngine/java/bin/java -jar /usr/bin/wowza-letsencrypt-converter-0.1.jar /usr/local/WowzaStreamingEngine/conf/ssl/ /etc/letsencrypt/live/; systemctl start WowzaStreamingEngine'&amp;lt;/s&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Basically, you use Certbot to create the normal SSL certificate.&lt;br /&gt;
&lt;br /&gt;
Then you use &amp;lt;code&amp;gt;/usr/local/WowzaStreamingEngine/lib/wowza-letsencrypt-converter-0.1.jar&amp;lt;/code&amp;gt; to convert the standard certificates into a Java readable format. The &amp;lt;code&amp;gt;jksmap.txt&amp;lt;/code&amp;gt; is a mapping text telling Wowza where to look for the files. The info listed in this TXT file must match what is listed in &amp;lt;code&amp;gt;/usr/local/WowzaStreamingEngine/conf/VHosts.xml&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You need to find the SSL attributes and make sure that &amp;lt;code&amp;gt;&amp;lt;SSLConfig&amp;gt;&amp;lt;/code&amp;gt; matches the relevant file paths. (Check the guide liked above for further details and examples)&lt;br /&gt;
&lt;br /&gt;
The Wowza JAVA SSL file is located under &amp;lt;code&amp;gt;/usr/local/WowzaStreamingEngine/conf/ssl/wowza.ssdcougars.tv.jks&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Common Issues ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;Loading Player...&amp;quot; ===&lt;br /&gt;
Check the Wowza URL in the Wordpress post. Make sure there is not even a space or new line after &amp;lt;code&amp;gt;.m3u8&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== No incoming streams seen, no videos play after a reboot/power outage ===&lt;br /&gt;
Try to sign into the Wowza Management Portal, and make sure the licences are active. Sign in, if it asks to enter license keys, just press SUBMIT or ACTIVATE&lt;br /&gt;
&lt;br /&gt;
=== Cross-Domain Access Denied ===&lt;br /&gt;
Check the Wowza SSL Certificate, it probably expired and will need to be manually renewed.&lt;br /&gt;
== Sources ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1899</id>
		<title>Wowza Server/Setup &amp; Install</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1899"/>
				<updated>2018-04-24T17:34:26Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: /* SSL on Wowza */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
This page is to describe how Wowza was installed.&lt;br /&gt;
&lt;br /&gt;
== Quick Points: ==&lt;br /&gt;
* Linux Debian 8&lt;br /&gt;
* Basic LAMP Installation (Linux, Apache, MySQL, PHP)&lt;br /&gt;
* Wowza Streaming Engine .runpackage&lt;br /&gt;
* Media is stored on external drive &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; is network discoverable via SAMBA sharing&lt;br /&gt;
* FTP access was enabled to two folders on the &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; drive&lt;br /&gt;
&lt;br /&gt;
== Wowza Install instructions ==&lt;br /&gt;
* Navigate to the folder that contains the downloaded Linux package and then execute the following commands, depending on your platform. Then, follow the wizard instructions.&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-install-and-configure-wowza-streaming-engine#installWowza&amp;lt;/ref&amp;gt;&lt;br /&gt;
64-bit Linux systems&lt;br /&gt;
 sudo chmod +x WowzaStreamingEngine-4.7.1-linux-x64-installer.run sudo ./WowzaStreamingEngine-4.7.1-linux-x64-installer.run&lt;br /&gt;
&lt;br /&gt;
During the installation process, you'll be asked:&lt;br /&gt;
* To accept the terms of the license agreement.&lt;br /&gt;
* To enter a valid product license key. If you acquired a new license key, you'll find it in the email that you received from Wowza Sales. If you have a previous version of the Streaming Engine software installed, you may be able to use the license key found in the [install-dir]/conf/Server.license file.&lt;br /&gt;
* To create a user name and password for an Administrator account. You'll use this account to sign in to the browser-based Wowza Streaming Engine Manager. The user name and password values are case-sensitive.&lt;br /&gt;
* To confirm or change the install location. By default, Wowza Streaming Engine installs files in the following directories: '''Linux''': /usr/local/WowzaStreamingEngine-4.7.1/ (as the root user)&lt;br /&gt;
&lt;br /&gt;
=== Start the software as a service (Linux) ===&lt;br /&gt;
To start Wowza software as a service on Linux, you must be the root user with sudo access. If these instructions don't apply to your Linux distribution, consult your Linux manual.&lt;br /&gt;
# In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngine start -OR-  /etc/init.d/WowzaStreamingEngine start&lt;br /&gt;
# Confirm that the engine is running by opening a web browser and entering the following URL: http://[wowza-ip-address]:1935  For [wowza-ip-address], use the IP address or domain of the local or remote Wowza server. For example:  &amp;lt;nowiki&amp;gt;http://localhost:1935&amp;lt;/nowiki&amp;gt;  The browser should display the Wowza Streaming Engine software version number. If not, check to see if the server software installed correctly and that TCP port 1935 is open on your router, firewall, and in your iptables.&lt;br /&gt;
# After the Wowza Streaming Engine server software is running, start Wowza Streaming Engine Manager. In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngineManager start -OR-  /etc/init.d/WowzaStreamingEngineManager start&lt;br /&gt;
&lt;br /&gt;
== Updating Wowza ==&lt;br /&gt;
# SSH Into Server&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-update-your-wowza-streaming-engine-installation&amp;lt;/ref&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd /usr/local/WowzaStreamingEngine/updates&amp;lt;/code&amp;gt;&lt;br /&gt;
# Get download link from wowza.com -- sign in and go to Downloads, Right Click and Copy Link Address&lt;br /&gt;
# &amp;lt;code&amp;gt;wget https://store.wowza.com/downloads/user/5984a69bef0fd/WowzaStreamingEngine-Update-X.X.X.zip&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;unzip WowzaStreamingEngine-Update-X.X.X.zip -d WowzaStreamingEngine-Update-X.X.X&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd WowzaStreamingEngine-Update-X.X.X/linux&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;chmod a+x *.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;./update.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine start&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager start&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== SSH on Wowza ====&lt;br /&gt;
Follow this [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ LINK] and follow the instructions. &amp;lt;ref&amp;gt;https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You MUST have Open-JDK-8 installed and it is a pain in the ass. As of this writing, this has been done, so no need to worry. &lt;br /&gt;
&lt;br /&gt;
== SSL on Wowza ==&lt;br /&gt;
For security JWPlayer now requires HTTPS on all streams and sites with HTTPS enabled. This changes the port number the service streams (from 1935 to 443) and requires scripting and cron jobs to actively renew it.&lt;br /&gt;
&lt;br /&gt;
A combination of the steps outlined [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ HERE] and [https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server HERE] were used to set it up on the current server. The idea being you install Certbot, download a custom script, run certbot for the wowza.ssdcougars.tv domain, run the custom script to convert the certbot .pem keys into a JKS store (A Java file, Wowza runs entirely in Java). You then enable a cron job to do this automatically before the LetsEncrypt/Certbot keys expire every 3 months.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;s&amp;gt;0 5 * * * root /usr/bin/certbot renew --standalone --pre-hook 'systemctl stop WowzaStreamingEngine' --post-hook '/usr/local/WowzaStreamingEngine/java/bin/java -jar /usr/bin/wowza-letsencrypt-converter-0.1.jar /usr/local/WowzaStreamingEngine/conf/ssl/ /etc/letsencrypt/live/; systemctl start WowzaStreamingEngine'&amp;lt;/s&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Basically, you use Certbot to create the normal SSL certificate.&lt;br /&gt;
&lt;br /&gt;
Then you use &amp;lt;code&amp;gt;/usr/local/WowzaStreamingEngine/lib/wowza-letsencrypt-converter-0.1.jar&amp;lt;/code&amp;gt; to convert the standard certificates into a Java readable format. The &amp;lt;code&amp;gt;jksmap.txt&amp;lt;/code&amp;gt; is a mapping text telling Wowza where to look for the files. The info listed in this TXT file must match what is listed in &amp;lt;code&amp;gt;/usr/local/WowzaStreamingEngine/conf/VHosts.xml&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You need to find the SSL attributes and make sure that &amp;lt;code&amp;gt;&amp;lt;SSLConfig&amp;gt;&amp;lt;/code&amp;gt; matches the relevant file paths. (Check the guide liked above for further details and examples)&lt;br /&gt;
&lt;br /&gt;
The Wowza JAVA SSL file is located under &amp;lt;code&amp;gt;/usr/local/WowzaStreamingEngine/conf/ssl/wowza.ssdcougars.tv.jks&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Common Issues ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;Loading Player...&amp;quot; ===&lt;br /&gt;
Check the Wowza URL in the Wordpress post. Make sure there is not even a space or new line after &amp;lt;code&amp;gt;.m3u8&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== No incoming streams seen, no videos play after a reboot/power outage ===&lt;br /&gt;
Try to sign into the Wowza Management Portal, and make sure the licences are active. Sign in, if it asks to enter license keys, just press SUBMIT or ACTIVATE&lt;br /&gt;
&lt;br /&gt;
=== Cross-Domain Access Denied ===&lt;br /&gt;
Check the Wowza SSL Certificate, it probably expired and will need to be manually renewed.&lt;br /&gt;
== Sources ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1898</id>
		<title>Wowza Server/Setup &amp; Install</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1898"/>
				<updated>2018-04-24T15:36:22Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: /* Common Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
This page is to describe how Wowza was installed.&lt;br /&gt;
&lt;br /&gt;
== Quick Points: ==&lt;br /&gt;
* Linux Debian 8&lt;br /&gt;
* Basic LAMP Installation (Linux, Apache, MySQL, PHP)&lt;br /&gt;
* Wowza Streaming Engine .runpackage&lt;br /&gt;
* Media is stored on external drive &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; is network discoverable via SAMBA sharing&lt;br /&gt;
* FTP access was enabled to two folders on the &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; drive&lt;br /&gt;
&lt;br /&gt;
== Wowza Install instructions ==&lt;br /&gt;
* Navigate to the folder that contains the downloaded Linux package and then execute the following commands, depending on your platform. Then, follow the wizard instructions.&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-install-and-configure-wowza-streaming-engine#installWowza&amp;lt;/ref&amp;gt;&lt;br /&gt;
64-bit Linux systems&lt;br /&gt;
 sudo chmod +x WowzaStreamingEngine-4.7.1-linux-x64-installer.run sudo ./WowzaStreamingEngine-4.7.1-linux-x64-installer.run&lt;br /&gt;
&lt;br /&gt;
During the installation process, you'll be asked:&lt;br /&gt;
* To accept the terms of the license agreement.&lt;br /&gt;
* To enter a valid product license key. If you acquired a new license key, you'll find it in the email that you received from Wowza Sales. If you have a previous version of the Streaming Engine software installed, you may be able to use the license key found in the [install-dir]/conf/Server.license file.&lt;br /&gt;
* To create a user name and password for an Administrator account. You'll use this account to sign in to the browser-based Wowza Streaming Engine Manager. The user name and password values are case-sensitive.&lt;br /&gt;
* To confirm or change the install location. By default, Wowza Streaming Engine installs files in the following directories: '''Linux''': /usr/local/WowzaStreamingEngine-4.7.1/ (as the root user)&lt;br /&gt;
&lt;br /&gt;
=== Start the software as a service (Linux) ===&lt;br /&gt;
To start Wowza software as a service on Linux, you must be the root user with sudo access. If these instructions don't apply to your Linux distribution, consult your Linux manual.&lt;br /&gt;
# In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngine start -OR-  /etc/init.d/WowzaStreamingEngine start&lt;br /&gt;
# Confirm that the engine is running by opening a web browser and entering the following URL: http://[wowza-ip-address]:1935  For [wowza-ip-address], use the IP address or domain of the local or remote Wowza server. For example:  &amp;lt;nowiki&amp;gt;http://localhost:1935&amp;lt;/nowiki&amp;gt;  The browser should display the Wowza Streaming Engine software version number. If not, check to see if the server software installed correctly and that TCP port 1935 is open on your router, firewall, and in your iptables.&lt;br /&gt;
# After the Wowza Streaming Engine server software is running, start Wowza Streaming Engine Manager. In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngineManager start -OR-  /etc/init.d/WowzaStreamingEngineManager start&lt;br /&gt;
&lt;br /&gt;
== Updating Wowza ==&lt;br /&gt;
# SSH Into Server&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-update-your-wowza-streaming-engine-installation&amp;lt;/ref&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd /usr/local/WowzaStreamingEngine/updates&amp;lt;/code&amp;gt;&lt;br /&gt;
# Get download link from wowza.com -- sign in and go to Downloads, Right Click and Copy Link Address&lt;br /&gt;
# &amp;lt;code&amp;gt;wget https://store.wowza.com/downloads/user/5984a69bef0fd/WowzaStreamingEngine-Update-X.X.X.zip&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;unzip WowzaStreamingEngine-Update-X.X.X.zip -d WowzaStreamingEngine-Update-X.X.X&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd WowzaStreamingEngine-Update-X.X.X/linux&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;chmod a+x *.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;./update.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine start&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager start&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== SSH on Wowza ====&lt;br /&gt;
Follow this [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ LINK] and follow the instructions. &amp;lt;ref&amp;gt;https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You MUST have Open-JDK-8 installed and it is a pain in the ass. As of this writing, this has been done, so no need to worry. &lt;br /&gt;
&lt;br /&gt;
== SSL on Wowza ==&lt;br /&gt;
For security JWPlayer now requires HTTPS on all streams and sites with HTTPS enabled. This changes the port number the service streams (from 1935 to 443) and requires scripting and cron jobs to actively renew it.&lt;br /&gt;
&lt;br /&gt;
A combination of the steps outlined [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ HERE] and [https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server HERE] were used to set it up on the current server. The idea being you install Certbot, download a custom script, run certbot for the wowza.ssdcougars.tv domain, run the custom script to convert the certbot .pem keys into a JKS store (A Java file, Wowza runs entirely in Java). You then enable a cron job to do this automatically before the LetsEncrypt/Certbot keys expire every 3 months.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;0 5 * * * root /usr/bin/certbot renew --standalone --pre-hook 'systemctl stop WowzaStreamingEngine' --post-hook '/usr/local/WowzaStreamingEngine/java/bin/java -jar /usr/bin/wowza-letsencrypt-converter-0.1.jar /usr/local/WowzaStreamingEngine/conf/ssl/ /etc/letsencrypt/live/; systemctl start WowzaStreamingEngine'&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Common Issues ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;Loading Player...&amp;quot; ===&lt;br /&gt;
Check the Wowza URL in the Wordpress post. Make sure there is not even a space or new line after &amp;lt;code&amp;gt;.m3u8&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== No incoming streams seen, no videos play after a reboot/power outage ===&lt;br /&gt;
Try to sign into the Wowza Management Portal, and make sure the licences are active. Sign in, if it asks to enter license keys, just press SUBMIT or ACTIVATE&lt;br /&gt;
&lt;br /&gt;
=== Cross-Domain Access Denied ===&lt;br /&gt;
Check the Wowza SSL Certificate, it probably expired and will need to be manually renewed.&lt;br /&gt;
== Sources ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Wowza_Server&amp;diff=1897</id>
		<title>Wowza Server</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Wowza_Server&amp;diff=1897"/>
				<updated>2018-04-12T22:02:32Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox custom computer&lt;br /&gt;
| Image          = [[File:Wowza Case.jpg|frameless]]&lt;br /&gt;
| Caption        = Corsair 540 Tower Case&lt;br /&gt;
| Dates          = operational 2015&lt;br /&gt;
| Location       = SETV Main Office - Rack&lt;br /&gt;
| Architecture   = Asus M5A99X EVO R2.0 ATX AM3+ Motherboard AMD FX-8320 3.5GHz 8-Core Processor&lt;br /&gt;
| Memory         = 16.00 GB&lt;br /&gt;
| Storage        = 120GB OS;&amp;lt;br&amp;gt;2TB VOD;&amp;lt;br&amp;gt;3TB Backup&lt;br /&gt;
| Speed          = 3.50GHz (peak)&lt;br /&gt;
| Power          = 650 W&lt;br /&gt;
| OS             = [[Debian]] Jessie 8 64-bit&lt;br /&gt;
| Purpose        = Wowza Streaming and VOD server&lt;br /&gt;
}}&lt;br /&gt;
{{Under Construction}}&lt;br /&gt;
The Wowza Media Server is what is used by the Springfield SETV office to broadcast our live streams online, and provide Video-On-Demand (VOD) content to our users.&lt;br /&gt;
&lt;br /&gt;
== Device Build ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Component&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|CPU&lt;br /&gt;
|AMD FX-8320 3.5GHz 8-Core Processor&lt;br /&gt;
|Cooling: Coolermaster Hyper 212 EVO&lt;br /&gt;
|-&lt;br /&gt;
|Motherboard&lt;br /&gt;
|ASUS M5A99X EVO Rev.2.0 AM3+&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Corsair Vengeance 16GB DDR3-1600 &lt;br /&gt;
|2x8GB&lt;br /&gt;
|-&lt;br /&gt;
|Storage&lt;br /&gt;
|Intel 530 Series 120 GB 2.5&amp;quot; SSD&lt;br /&gt;
|(/dev/sda) Operating System &amp;amp; Wowza Install Root&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Seagate Barracuda 2TB 3.5&amp;quot; 7200RPM HDD&lt;br /&gt;
|(/dev/sdb) Wowza VOD, Live, FTP, WowzaShares&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Hitachi Deskstar 7K3000 3TB 3.5&amp;quot; 7200RPM HDD&lt;br /&gt;
|(/dev/sdc) Wowza OS and VOD Backup Drive&lt;br /&gt;
|-&lt;br /&gt;
|Video Card&lt;br /&gt;
|PNY Quadro K4000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Case&lt;br /&gt;
|Corsair Air 540 ATX Mid Tower&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|PSU&lt;br /&gt;
|Corsair RM 650W 80+ Gold Modular&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Optical Drive&lt;br /&gt;
|ASUS DRW CD/DVD Writer&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Operating System ==&lt;br /&gt;
The chosen operating system for the Wowza Server is Debian 8 64-bit, Codename Jessie. The reason this was chosen was because Linux, overall, is a more stable webserver environment. It is also free compared to RedHat and Windows IIS. Due to it's open-sourced nature, support is only as good as your troubleshooting and Googling.&lt;br /&gt;
&lt;br /&gt;
If all is lost, and you need to start from scratch, visit Setting Up Wowza for the First Time.&lt;br /&gt;
&lt;br /&gt;
=== Ajenti ===&lt;br /&gt;
There is a web-based management panel installed on the Wowza server. It is a free, open-sourced control panel and is a bit limited. It's purpose it to help aid in managing certain settings from a comfortable GUI. The other purpose it to graphically see the status of all important hardware components.&lt;br /&gt;
&lt;br /&gt;
To access this panel, from the school's network only, go to http://wowza.ssdcougars.tv and click &amp;quot;AJENTI PANEL&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Wowza Software ==&lt;br /&gt;
The streaming software we use is called Wowza Streaming Engine. The control panel backend is called Wowza Streaming Engine Manager. Users use the WSE Manager to administer common Wowza settings. Below we will go over the basics of starting, stopping the Wowza Service, Upgrading, and troubleshooting streams.&lt;br /&gt;
&lt;br /&gt;
[[Wowza Streaming Engine]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Wowza Streaming Engine/Manager]]&lt;br /&gt;
&lt;br /&gt;
== Notes to Consider ==&lt;br /&gt;
&lt;br /&gt;
=== Shell Access ===&lt;br /&gt;
Shell access (SSH) has been highly secured. All access attempts to port 22 are blocked except from whitelisted IPs.&lt;br /&gt;
&lt;br /&gt;
All IP's under &amp;lt;code&amp;gt;10.130.0.0/16&amp;lt;/code&amp;gt; are whitelisted, meaning any computer on the SSD Network should have access to the SSH port.&lt;br /&gt;
&lt;br /&gt;
To modify the Whitelist, use the monitor connected to the machine (or use PuTTY with X11 forwarding and Xming) launch &amp;lt;code&amp;gt;firestarter&amp;lt;/code&amp;gt; and click the Policy tab&lt;br /&gt;
&lt;br /&gt;
You can add or remove rules within Firestarter - Leave Ajenti, FTP, HTTP, HTTPS, 8088 and 1935 ALONE! Do not touch these.&lt;br /&gt;
&lt;br /&gt;
All SSH access is authenticated by Certificate. If you lost the cert, you will have to learn how to make a new one for SSH, convert it to a .ppk for PuTTY.&lt;br /&gt;
&lt;br /&gt;
Certs are located on the Archive drives.&lt;br /&gt;
&lt;br /&gt;
=== Black screen on reboot, videos don't play, cannot sign in via Monitor (CAN sign in via SSH/PuTTY) ===&lt;br /&gt;
Check your disk space, chances are during a reboot it did not mount the backup drive for VOD2, which is networked. If a network mount is not ready in time for the backup rsnapshot job, then it will default create the folder under &amp;lt;code&amp;gt;/media/vod2bak&amp;lt;/code&amp;gt; regardless of successful mount. Thus filling the primary OS drive with VOD2 backup data.&lt;br /&gt;
&lt;br /&gt;
To remedy this:&lt;br /&gt;
# SSH into Wowza or Console in at machine (CTRL+ALT+F6)&lt;br /&gt;
# Sign in as Root&lt;br /&gt;
# Issue command &amp;lt;code&amp;gt;df -h&amp;lt;/code&amp;gt; and determine the size of &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; (If &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; % available is 0, you know the drive is full.)&lt;br /&gt;
# Issue command &amp;lt;code&amp;gt;umount /media/vod2bak&amp;lt;/code&amp;gt;&lt;br /&gt;
# Issue command, again &amp;lt;code&amp;gt;df -h&amp;lt;/code&amp;gt;   '''ENSURE THAT YOU &amp;lt;u&amp;gt;''DO NOT''&amp;lt;/u&amp;gt;  see &amp;lt;code&amp;gt;10.130.12.192:/mnt/WowzaVOD2BAK/VOD2BAK&amp;lt;/code&amp;gt; ON THAT LIST, IF YOU DO SKIP TO STEP # -- OTHERWISE, IF YOU IGNORE THIS AND ISSUE THE NEXT COMMAND WHILE &amp;lt;code&amp;gt;10.130.12.192:/mnt/WowzaVOD2BAK/VOD2BAK&amp;lt;/code&amp;gt; IS CONNECTED YOU WILL DELETE THE ENTIRE ARCHIVE!'''&lt;br /&gt;
# Issue command: &amp;lt;code&amp;gt;cd /media &amp;amp;&amp;amp; rm -rf vod2bak&amp;lt;/code&amp;gt;&lt;br /&gt;
# To confirm this worked, issue &amp;lt;code&amp;gt;df -h&amp;lt;/code&amp;gt; again and confirm that &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; does not =0%&lt;br /&gt;
# Reboot &amp;lt;code&amp;gt;shutdown -r now&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Notes to add ==&lt;br /&gt;
fstab&lt;br /&gt;
&lt;br /&gt;
nvidia-smi and it's special love with wowza&lt;br /&gt;
&lt;br /&gt;
Setting up nvidia on this and work with wowza is... a pain in the ASS!!! Follow [https://www.wowza.com/docs/how-to-set-up-wowza-transcoder-nvidia-nvenc-accelerated-encoding-on-ubuntu Wowza's guide]. I KNOW it goes against [https://wiki.debian.org/DontBreakDebian Debian's published best practices], but this is what works. ****'''NOTE'''**** ''THE LATEST COMPATIBLE DRIVER IS &amp;lt;code&amp;gt;367.27&amp;lt;/code&amp;gt; ANYTHING LATER WILL NOT WORK!!!&amp;lt;ref&amp;gt;https://www.wowza.com/docs/server-specifications-for-nvidia-nvenc-and-nvidia-cuda-acceleration-with-wowza-transcoder&amp;lt;/ref&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
'''**NOTE** AS OF 11/02/2017 NVIDIA VERSION 384.59 is WORKING CORRECTLY, AND IS REQUIRED FOR GNOME TO WORK CORRECTLY''' &lt;br /&gt;
&lt;br /&gt;
setting up SSH access, using PPK and PuTTY&lt;br /&gt;
&lt;br /&gt;
users&lt;br /&gt;
&lt;br /&gt;
FTP public, private, management&lt;br /&gt;
&lt;br /&gt;
[[Ajenti]]&lt;br /&gt;
&lt;br /&gt;
rsnapshot&lt;br /&gt;
&lt;br /&gt;
common commands for shell&lt;br /&gt;
&lt;br /&gt;
[[Category:Servers]]&lt;br /&gt;
[[Category:SETV Machines]]&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1896</id>
		<title>Wowza Server/Setup &amp; Install</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1896"/>
				<updated>2018-04-12T21:54:11Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
This page is to describe how Wowza was installed.&lt;br /&gt;
&lt;br /&gt;
== Quick Points: ==&lt;br /&gt;
* Linux Debian 8&lt;br /&gt;
* Basic LAMP Installation (Linux, Apache, MySQL, PHP)&lt;br /&gt;
* Wowza Streaming Engine .runpackage&lt;br /&gt;
* Media is stored on external drive &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; is network discoverable via SAMBA sharing&lt;br /&gt;
* FTP access was enabled to two folders on the &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; drive&lt;br /&gt;
&lt;br /&gt;
== Wowza Install instructions ==&lt;br /&gt;
* Navigate to the folder that contains the downloaded Linux package and then execute the following commands, depending on your platform. Then, follow the wizard instructions.&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-install-and-configure-wowza-streaming-engine#installWowza&amp;lt;/ref&amp;gt;&lt;br /&gt;
64-bit Linux systems&lt;br /&gt;
 sudo chmod +x WowzaStreamingEngine-4.7.1-linux-x64-installer.run sudo ./WowzaStreamingEngine-4.7.1-linux-x64-installer.run&lt;br /&gt;
&lt;br /&gt;
During the installation process, you'll be asked:&lt;br /&gt;
* To accept the terms of the license agreement.&lt;br /&gt;
* To enter a valid product license key. If you acquired a new license key, you'll find it in the email that you received from Wowza Sales. If you have a previous version of the Streaming Engine software installed, you may be able to use the license key found in the [install-dir]/conf/Server.license file.&lt;br /&gt;
* To create a user name and password for an Administrator account. You'll use this account to sign in to the browser-based Wowza Streaming Engine Manager. The user name and password values are case-sensitive.&lt;br /&gt;
* To confirm or change the install location. By default, Wowza Streaming Engine installs files in the following directories: '''Linux''': /usr/local/WowzaStreamingEngine-4.7.1/ (as the root user)&lt;br /&gt;
&lt;br /&gt;
=== Start the software as a service (Linux) ===&lt;br /&gt;
To start Wowza software as a service on Linux, you must be the root user with sudo access. If these instructions don't apply to your Linux distribution, consult your Linux manual.&lt;br /&gt;
# In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngine start -OR-  /etc/init.d/WowzaStreamingEngine start&lt;br /&gt;
# Confirm that the engine is running by opening a web browser and entering the following URL: http://[wowza-ip-address]:1935  For [wowza-ip-address], use the IP address or domain of the local or remote Wowza server. For example:  &amp;lt;nowiki&amp;gt;http://localhost:1935&amp;lt;/nowiki&amp;gt;  The browser should display the Wowza Streaming Engine software version number. If not, check to see if the server software installed correctly and that TCP port 1935 is open on your router, firewall, and in your iptables.&lt;br /&gt;
# After the Wowza Streaming Engine server software is running, start Wowza Streaming Engine Manager. In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngineManager start -OR-  /etc/init.d/WowzaStreamingEngineManager start&lt;br /&gt;
&lt;br /&gt;
== Updating Wowza ==&lt;br /&gt;
# SSH Into Server&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-update-your-wowza-streaming-engine-installation&amp;lt;/ref&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd /usr/local/WowzaStreamingEngine/updates&amp;lt;/code&amp;gt;&lt;br /&gt;
# Get download link from wowza.com -- sign in and go to Downloads, Right Click and Copy Link Address&lt;br /&gt;
# &amp;lt;code&amp;gt;wget https://store.wowza.com/downloads/user/5984a69bef0fd/WowzaStreamingEngine-Update-X.X.X.zip&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;unzip WowzaStreamingEngine-Update-X.X.X.zip -d WowzaStreamingEngine-Update-X.X.X&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd WowzaStreamingEngine-Update-X.X.X/linux&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;chmod a+x *.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;./update.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine start&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager start&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== SSH on Wowza ====&lt;br /&gt;
Follow this [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ LINK] and follow the instructions. &amp;lt;ref&amp;gt;https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You MUST have Open-JDK-8 installed and it is a pain in the ass. As of this writing, this has been done, so no need to worry. &lt;br /&gt;
&lt;br /&gt;
== SSL on Wowza ==&lt;br /&gt;
For security JWPlayer now requires HTTPS on all streams and sites with HTTPS enabled. This changes the port number the service streams (from 1935 to 443) and requires scripting and cron jobs to actively renew it.&lt;br /&gt;
&lt;br /&gt;
A combination of the steps outlined [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ HERE] and [https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server HERE] were used to set it up on the current server. The idea being you install Certbot, download a custom script, run certbot for the wowza.ssdcougars.tv domain, run the custom script to convert the certbot .pem keys into a JKS store (A Java file, Wowza runs entirely in Java). You then enable a cron job to do this automatically before the LetsEncrypt/Certbot keys expire every 3 months.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;0 5 * * * root /usr/bin/certbot renew --standalone --pre-hook 'systemctl stop WowzaStreamingEngine' --post-hook '/usr/local/WowzaStreamingEngine/java/bin/java -jar /usr/bin/wowza-letsencrypt-converter-0.1.jar /usr/local/WowzaStreamingEngine/conf/ssl/ /etc/letsencrypt/live/; systemctl start WowzaStreamingEngine'&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Common Issues ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;Loading Player...&amp;quot; ===&lt;br /&gt;
Check the Wowza URL in the Wordpress post. Make sure there is not even a space or new line after &amp;lt;code&amp;gt;.m3u8&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== No incoming streams seen, no videos play after a reboot/power outage ===&lt;br /&gt;
Try to sign into the Wowza Management Portal, and make sure the licences are active. Sign in, if it asks to enter license keys, just press SUBMIT or ACTIVATE&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1895</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1895"/>
				<updated>2018-03-16T14:15:44Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CougarCloudLogin.png|thumb|282x282px|Login box for the Cougar Cloud]]&lt;br /&gt;
&lt;br /&gt;
=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we have of THON since 2013 and have made it available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
The feature set for this system is ever evolving. As new features are added, the list will be updated.&lt;br /&gt;
* Email Client&lt;br /&gt;
* File access - Backup, archives, sharing&lt;br /&gt;
* Contacts storage&lt;br /&gt;
* Calendars&lt;br /&gt;
* Task cards&lt;br /&gt;
* Web conferencing and chat&lt;br /&gt;
* Diagrams&lt;br /&gt;
* Notes&lt;br /&gt;
* Gallery&lt;br /&gt;
* Audio player&lt;br /&gt;
* Video player&lt;br /&gt;
If you want to know more about the tech specs, read on here [[NextCloud]], [[Archive/Nextcloud Server]], [[Cougar Cloud Server]]&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address.&lt;br /&gt;
&lt;br /&gt;
On first sign in, you'll be presented with the Welcome to the Cougar Cloud screen&lt;br /&gt;
[[File:NextCloudIntro.png|thumb|Welcome screen|205x205px]]&lt;br /&gt;
=== Home Page ===&lt;br /&gt;
Once your account has been added to the SSDM group, you will see the THON folders for previous years and for your committees.&lt;br /&gt;
=== Checking E-Mail: ===&lt;br /&gt;
# Sign into Cougar Cloud with your '''@ssdmftk.org''' email address&lt;br /&gt;
# Find and click the Envelope icon in the upper left next to the big S&lt;br /&gt;
# Wait for it to load messages&lt;br /&gt;
[[File:CloudEMail.png|border|frameless|325x325px]] &lt;br /&gt;
=== Setting up &amp;quot;new&amp;quot; users ===&lt;br /&gt;
[[File:NextcloudUsers.png|thumb|127x127px|Users option in Nextcloud]]&lt;br /&gt;
When someone signs in with their '''@ssdmftk.org''' email for the first time, Cougar Cloud takes time to create the storage and set up the account. A group administrator (The Adviser, SETV staff and Technology leader) must put the person in the correct group before they can see their relevant SSDM folders. &lt;br /&gt;
# Sign into the Cougar Cloud&lt;br /&gt;
# Click your user icon in the upper right corner&lt;br /&gt;
# Select USERS&lt;br /&gt;
&lt;br /&gt;
You will be taken to the User Management page for the Cougar Cloud&lt;br /&gt;
[[File:NextcloudGroupPage.png|left|thumb|Users &amp;amp; Groups list]]&lt;br /&gt;
[[File:Groupdropdown.png|thumb|Dropdown menu for group membership|left|222x222px]]&lt;br /&gt;
&lt;br /&gt;
On the left side you will see a list of groups for which you are Admin of.&lt;br /&gt;
&lt;br /&gt;
Here you find the user you'd like to join to a group, under the Group Membership dropdown you can select each group they should be a member of. Everyone should be a member of '''SSDM Members''' in order to see the THON 20## folders.&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;If someone is not seeing a folder they should, contact the SETV office to fix.&amp;lt;/u&amp;gt;'''&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1894</id>
		<title>Wowza Server/Setup &amp; Install</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Wowza_Server/Setup_%26_Install&amp;diff=1894"/>
				<updated>2018-03-16T14:13:36Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
This page is to describe how Wowza was installed.&lt;br /&gt;
&lt;br /&gt;
== Quick Points: ==&lt;br /&gt;
* Linux Debian 8&lt;br /&gt;
* Basic LAMP Installation (Linux, Apache, MySQL, PHP)&lt;br /&gt;
* Wowza Streaming Engine .runpackage&lt;br /&gt;
* Media is stored on external drive &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; is network discoverable via SAMBA sharing&lt;br /&gt;
* FTP access was enabled to two folders on the &amp;lt;code&amp;gt;/media/vod1&amp;lt;/code&amp;gt; drive&lt;br /&gt;
&lt;br /&gt;
== Wowza Install instructions ==&lt;br /&gt;
* Navigate to the folder that contains the downloaded Linux package and then execute the following commands, depending on your platform. Then, follow the wizard instructions.&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-install-and-configure-wowza-streaming-engine#installWowza&amp;lt;/ref&amp;gt;&lt;br /&gt;
64-bit Linux systems&lt;br /&gt;
 sudo chmod +x WowzaStreamingEngine-4.7.1-linux-x64-installer.run sudo ./WowzaStreamingEngine-4.7.1-linux-x64-installer.run&lt;br /&gt;
&lt;br /&gt;
During the installation process, you'll be asked:&lt;br /&gt;
* To accept the terms of the license agreement.&lt;br /&gt;
* To enter a valid product license key. If you acquired a new license key, you'll find it in the email that you received from Wowza Sales. If you have a previous version of the Streaming Engine software installed, you may be able to use the license key found in the [install-dir]/conf/Server.license file.&lt;br /&gt;
* To create a user name and password for an Administrator account. You'll use this account to sign in to the browser-based Wowza Streaming Engine Manager. The user name and password values are case-sensitive.&lt;br /&gt;
* To confirm or change the install location. By default, Wowza Streaming Engine installs files in the following directories: '''Linux''': /usr/local/WowzaStreamingEngine-4.7.1/ (as the root user)&lt;br /&gt;
&lt;br /&gt;
=== Start the software as a service (Linux) ===&lt;br /&gt;
To start Wowza software as a service on Linux, you must be the root user with sudo access. If these instructions don't apply to your Linux distribution, consult your Linux manual.&lt;br /&gt;
# In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngine start -OR-  /etc/init.d/WowzaStreamingEngine start&lt;br /&gt;
# Confirm that the engine is running by opening a web browser and entering the following URL: http://[wowza-ip-address]:1935  For [wowza-ip-address], use the IP address or domain of the local or remote Wowza server. For example:  &amp;lt;nowiki&amp;gt;http://localhost:1935&amp;lt;/nowiki&amp;gt;  The browser should display the Wowza Streaming Engine software version number. If not, check to see if the server software installed correctly and that TCP port 1935 is open on your router, firewall, and in your iptables.&lt;br /&gt;
# After the Wowza Streaming Engine server software is running, start Wowza Streaming Engine Manager. In a terminal window, enter one of the following commands, depending on your Linux distribution:  sudo service WowzaStreamingEngineManager start -OR-  /etc/init.d/WowzaStreamingEngineManager start&lt;br /&gt;
&lt;br /&gt;
== Updating Wowza ==&lt;br /&gt;
# SSH Into Server&amp;lt;ref&amp;gt;https://www.wowza.com/docs/how-to-update-your-wowza-streaming-engine-installation&amp;lt;/ref&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd /usr/local/WowzaStreamingEngine/updates&amp;lt;/code&amp;gt;&lt;br /&gt;
# Get download link from wowza.com -- sign in and go to Downloads, Right Click and Copy Link Address&lt;br /&gt;
# &amp;lt;code&amp;gt;wget https://store.wowza.com/downloads/user/5984a69bef0fd/WowzaStreamingEngine-Update-X.X.X.zip&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;unzip WowzaStreamingEngine-Update-X.X.X.zip -d WowzaStreamingEngine-Update-X.X.X&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;cd WowzaStreamingEngine-Update-X.X.X/linux&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;chmod a+x *.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine stop&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;./update.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngine start&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;service WowzaStreamingEngineManager start&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== SSH on Wowza ====&lt;br /&gt;
Follow this [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ LINK] and follow the instructions. &amp;lt;ref&amp;gt;https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You MUST have Open-JDK-8 installed and it is a pain in the ass. As of this writing, this has been done, so no need to worry. &lt;br /&gt;
&lt;br /&gt;
== SSL on Wowza ==&lt;br /&gt;
For security JWPlayer now requires HTTPS on all streams and sites with HTTPS enabled. This changes the port number the service streams (from 1935 to 443) and requires scripting and cron jobs to actively renew it.&lt;br /&gt;
&lt;br /&gt;
A combination of the steps outlined [https://vanmarion.nl/blog/blog/ssl-letsencrypt-wowza-4-x-server-frontend/ HERE] and [https://markandruth.co.uk/2017/10/23/using-letsencrypt-with-wowza-media-server HERE] were used to set it up on the current server. The idea being you install Certbot, download a custom script, run certbot for the wowza.ssdcougars.tv domain, run the custom script to convert the certbot .pem keys into a JKS store (A Java file, Wowza runs entirely in Java). You then enable a cron job to do this automatically before the LetsEncrypt/Certbot keys expire every 3 months.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;0 5 * * * root /usr/bin/certbot renew --standalone --pre-hook 'systemctl stop WowzaStreamingEngine' --post-hook '/usr/local/WowzaStreamingEngine/java/bin/java -jar /usr/bin/wowza-letsencrypt-converter-0.1.jar /usr/local/WowzaStreamingEngine/conf/ssl/ /etc/letsencrypt/live/; systemctl start WowzaStreamingEngine'&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Cougar_Cloud_Server&amp;diff=1893</id>
		<title>Cougar Cloud Server</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Cougar_Cloud_Server&amp;diff=1893"/>
				<updated>2018-03-14T02:46:10Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Under Construction}}{{infobox custom computer&lt;br /&gt;
| Image          = [[File:SuperMicroServerBlade.jpg|frameless]]&lt;br /&gt;
| Caption        = SuperMicro Server Blade&lt;br /&gt;
| Dates          = In Service: August 2015 - Present&lt;br /&gt;
| Location       = SETV Main Office&lt;br /&gt;
| Architecture   = ASRock C2550D4I Mini ITX Atom C2550 Motherboard Integrated Atom C2550&lt;br /&gt;
| Memory         = 8.00 GB DDR3-1600&lt;br /&gt;
| Storage        = &amp;lt;b&amp;gt;Total:&amp;lt;/b&amp;gt; 24TB (14TB After RAID); &amp;lt;br&amp;gt;&lt;br /&gt;
| Speed          = 2.60 GHz (Peak)&lt;br /&gt;
| Power          = 300 W&lt;br /&gt;
| OS             = [[FreeNAS]] [[Linux]] 9 64-bit&lt;br /&gt;
| Purpose        = [[NextCloud]] and Archive File Server&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This custom PC was built by Nathan Kadish. It was designed to handle file serving operations for our Archive and [[NextCloud]] Service.&lt;br /&gt;
&lt;br /&gt;
== Device Build ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Component&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|CPU&lt;br /&gt;
|Integrated Intel Atom C2550&lt;br /&gt;
|2.6Ghz Turbo&lt;br /&gt;
|-&lt;br /&gt;
|Motherboard&lt;br /&gt;
|ASRock C2550D4l Mini ITX Atom&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Crucial 16GB (2 x 8GB) DDR3-1600 Memory&lt;br /&gt;
|2x16GB&lt;br /&gt;
|-&lt;br /&gt;
|Storage&lt;br /&gt;
|Hitachi 3TB 3.5&amp;quot; Ultrastar 7K3000 Internal Hard Drive&lt;br /&gt;
|ada0&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Hitachi 3TB 3.5&amp;quot; Ultrastar 7K3000 Internal Hard Drive&lt;br /&gt;
|ada1&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Western Digital 4TB 3.5&amp;quot; Internal Hard Drive&lt;br /&gt;
|ada2&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Kingston SSDNow 120GB&lt;br /&gt;
|ada3&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Western Digital 2TB 3.5&amp;quot; Internal Hard Drive&lt;br /&gt;
|ada4&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Seagate 6TB 3.5&amp;quot; 7200RPM Internal Hard Drive&lt;br /&gt;
|ada5&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Western Digital 2TB 3.5&amp;quot; Internal Hard Drive&lt;br /&gt;
|ada6&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Seagate 6TB 3.5&amp;quot; 7200RPM Internal Hard Drive&lt;br /&gt;
|ada7&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Sandisk 16GB USB Flash Drive&lt;br /&gt;
|da0&lt;br /&gt;
|-&lt;br /&gt;
|Video Card&lt;br /&gt;
|Integrated graphics&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Case&lt;br /&gt;
|SUPERMICRO CSE-825TQ-563LPB Black 2U Rackmount Server Case 560W&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|PSU&lt;br /&gt;
|Supermicro embedded 560W PSU&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Optical Drive&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Locked out of IPMI Module? ===&lt;br /&gt;
SSH into FreeNas Root &amp;lt;ref&amp;gt;http://www.openfusion.net/linux/ipmi_on_centos&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ipmitool user list 1&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ipmitool user set password 2 &amp;lt;new_Password&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:SETV Machines|Advanced Edit Tower]]&lt;br /&gt;
[[Category:Servers]]&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Cougar_Cloud_Server&amp;diff=1892</id>
		<title>Cougar Cloud Server</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Cougar_Cloud_Server&amp;diff=1892"/>
				<updated>2018-03-14T02:44:55Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Under Construction}}'''''DUE TO THE DIVISION OF OWNCLOUD, WE WILL BEGIN WITH OC'S FORK &amp;quot;NEXTCLOUD&amp;quot;'''''{{infobox custom computer&lt;br /&gt;
| Image          = [[File:SuperMicroServerBlade.jpg|frameless]]&lt;br /&gt;
| Caption        = SuperMicro Server Blade&lt;br /&gt;
| Dates          = In Service: August 2015 - Present&lt;br /&gt;
| Location       = SETV Main Office&lt;br /&gt;
| Architecture   = ASRock C2550D4I Mini ITX Atom C2550 Motherboard Integrated Atom C2550&lt;br /&gt;
| Memory         = 8.00 GB DDR3-1600&lt;br /&gt;
| Storage        = &amp;lt;b&amp;gt;Total:&amp;lt;/b&amp;gt; 24TB (14TB After RAID); &amp;lt;br&amp;gt;&lt;br /&gt;
| Speed          = 2.60 GHz (Peak)&lt;br /&gt;
| Power          = 300 W&lt;br /&gt;
| OS             = [[FreeNAS]] [[Linux]] 9 64-bit&lt;br /&gt;
| Purpose        = [[NextCloud]] and Archive File Server&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This custom PC was built by Nathan Kadish. It was designed to handle file serving operations for our Archive and [[NextCloud]] Service.&lt;br /&gt;
&lt;br /&gt;
== Device Build ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Component&lt;br /&gt;
!Type&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|CPU&lt;br /&gt;
|Integrated Intel Atom C2550&lt;br /&gt;
|2.6Ghz Turbo&lt;br /&gt;
|-&lt;br /&gt;
|Motherboard&lt;br /&gt;
|ASRock C2550D4l Mini ITX Atom&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Crucial 16GB (2 x 8GB) DDR3-1600 Memory&lt;br /&gt;
|2x16GB&lt;br /&gt;
|-&lt;br /&gt;
|Storage&lt;br /&gt;
|Hitachi 3TB 3.5&amp;quot; Ultrastar 7K3000 Internal Hard Drive&lt;br /&gt;
|ada0&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Hitachi 3TB 3.5&amp;quot; Ultrastar 7K3000 Internal Hard Drive&lt;br /&gt;
|ada1&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Western Digital 4TB 3.5&amp;quot; Internal Hard Drive&lt;br /&gt;
|ada2&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Kingston SSDNow 120GB&lt;br /&gt;
|ada3&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Western Digital 2TB 3.5&amp;quot; Internal Hard Drive&lt;br /&gt;
|ada4&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Seagate 6TB 3.5&amp;quot; 7200RPM Internal Hard Drive&lt;br /&gt;
|ada5&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Western Digital 2TB 3.5&amp;quot; Internal Hard Drive&lt;br /&gt;
|ada6&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Seagate 6TB 3.5&amp;quot; 7200RPM Internal Hard Drive&lt;br /&gt;
|ada7&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Sandisk 16GB USB Flash Drive&lt;br /&gt;
|da0&lt;br /&gt;
|-&lt;br /&gt;
|Video Card&lt;br /&gt;
|Integrated graphics&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Case&lt;br /&gt;
|SUPERMICRO CSE-825TQ-563LPB Black 2U Rackmount Server Case 560W&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|PSU&lt;br /&gt;
|Supermicro embedded 560W PSU&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Optical Drive&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Locked out of IPMI Module? ===&lt;br /&gt;
SSH into FreeNas Root &amp;lt;ref&amp;gt;http://www.openfusion.net/linux/ipmi_on_centos&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ipmitool user list 1&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ipmitool user set password 2 &amp;lt;new_Password&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:SETV Machines|Advanced Edit Tower]]&lt;br /&gt;
[[Category:Servers]]&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=File:SuperMicroServerBlade.jpg&amp;diff=1891</id>
		<title>File:SuperMicroServerBlade.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=File:SuperMicroServerBlade.jpg&amp;diff=1891"/>
				<updated>2018-03-14T02:32:15Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Chassis&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1890</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1890"/>
				<updated>2018-03-14T02:29:35Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: /* What is Cougar Cloud? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CougarCloudLogin.png|thumb|282x282px|Login box for the Cougar Cloud]]&lt;br /&gt;
&lt;br /&gt;
=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we had of THON since 2013 and have made available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
The feature set for this system is ever evolving. As new features are added, the list will be updated.&lt;br /&gt;
* Email Client&lt;br /&gt;
* File access - Backup, archives, sharing&lt;br /&gt;
* Contacts storage&lt;br /&gt;
* Calendars&lt;br /&gt;
* Task cards&lt;br /&gt;
* Web conferencing and chat&lt;br /&gt;
* Diagrams&lt;br /&gt;
* Notes&lt;br /&gt;
* Gallery&lt;br /&gt;
* Audio player&lt;br /&gt;
* Video player&lt;br /&gt;
If you want to know more about the tech specs, read on here [[NextCloud]], [[Archive/Nextcloud Server]], [[Cougar Cloud Server]]&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address.&lt;br /&gt;
&lt;br /&gt;
On first sign in, you'll be presented with the Welcome to the Cougar Cloud screen&lt;br /&gt;
[[File:NextCloudIntro.png|thumb|Welcome screen|205x205px]]&lt;br /&gt;
=== Home Page ===&lt;br /&gt;
Once your account has been added to the SSDM group, you will see the THON folders for previous years and for your committees.&lt;br /&gt;
=== Checking E-Mail: ===&lt;br /&gt;
# Sign into Cougar Cloud with your '''@ssdmftk.org''' email address&lt;br /&gt;
# Find and click the Envelope icon in the upper left next to the big S&lt;br /&gt;
# Wait for it to load messages&lt;br /&gt;
[[File:CloudEMail.png|border|frameless|325x325px]] &lt;br /&gt;
=== Setting up &amp;quot;new&amp;quot; users ===&lt;br /&gt;
[[File:NextcloudUsers.png|thumb|127x127px|Users option in Nextcloud]]&lt;br /&gt;
When someone signs in with their '''@ssdmftk.org''' email for the first time, Cougar Cloud takes time to create the storage and set up the account. A group administrator (The Adviser, SETV staff and Technology leader) must put the person in the correct group before they can see their relevant SSDM folders. &lt;br /&gt;
# Sign into the Cougar Cloud&lt;br /&gt;
# Click your user icon in the upper right corner&lt;br /&gt;
# Select USERS&lt;br /&gt;
&lt;br /&gt;
You will be taken to the User Management page for the Cougar Cloud&lt;br /&gt;
[[File:NextcloudGroupPage.png|left|thumb|Users &amp;amp; Groups list]]&lt;br /&gt;
[[File:Groupdropdown.png|thumb|Dropdown menu for group membership|left|222x222px]]&lt;br /&gt;
&lt;br /&gt;
On the left side you will see a list of groups for which you are Admin of.&lt;br /&gt;
&lt;br /&gt;
Here you find the user you'd like to join to a group, under the Group Membership dropdown you can select each group they should be a member of. Everyone should be a member of '''SSDM Members''' in order to see the THON 20## folders.&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;If someone is not seeing a folder they should, contact the SETV office to fix.&amp;lt;/u&amp;gt;'''&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1889</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1889"/>
				<updated>2018-03-14T02:28:11Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: /* Checking E-Mail: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CougarCloudLogin.png|thumb|282x282px|Login box for the Cougar Cloud]]&lt;br /&gt;
&lt;br /&gt;
=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we had of THON since 2013 and have made available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
The feature set for this system is ever evolving. As new features are added, the list will be updated.&lt;br /&gt;
* Email Client&lt;br /&gt;
* File access - Backup, archives, sharing&lt;br /&gt;
* Contacts storage&lt;br /&gt;
* Calendars&lt;br /&gt;
* Task cards&lt;br /&gt;
* Web conferencing and chat&lt;br /&gt;
* Diagrams&lt;br /&gt;
* Notes&lt;br /&gt;
* Gallery&lt;br /&gt;
* Audio player&lt;br /&gt;
* Video player&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address.&lt;br /&gt;
&lt;br /&gt;
On first sign in, you'll be presented with the Welcome to the Cougar Cloud screen&lt;br /&gt;
[[File:NextCloudIntro.png|thumb|Welcome screen|205x205px]]&lt;br /&gt;
=== Home Page ===&lt;br /&gt;
Once your account has been added to the SSDM group, you will see the THON folders for previous years and for your committees.&lt;br /&gt;
=== Checking E-Mail: ===&lt;br /&gt;
# Sign into Cougar Cloud with your '''@ssdmftk.org''' email address&lt;br /&gt;
# Find and click the Envelope icon in the upper left next to the big S&lt;br /&gt;
# Wait for it to load messages&lt;br /&gt;
[[File:CloudEMail.png|border|frameless|325x325px]] &lt;br /&gt;
=== Setting up &amp;quot;new&amp;quot; users ===&lt;br /&gt;
[[File:NextcloudUsers.png|thumb|127x127px|Users option in Nextcloud]]&lt;br /&gt;
When someone signs in with their '''@ssdmftk.org''' email for the first time, Cougar Cloud takes time to create the storage and set up the account. A group administrator (The Adviser, SETV staff and Technology leader) must put the person in the correct group before they can see their relevant SSDM folders. &lt;br /&gt;
# Sign into the Cougar Cloud&lt;br /&gt;
# Click your user icon in the upper right corner&lt;br /&gt;
# Select USERS&lt;br /&gt;
&lt;br /&gt;
You will be taken to the User Management page for the Cougar Cloud&lt;br /&gt;
[[File:NextcloudGroupPage.png|left|thumb|Users &amp;amp; Groups list]]&lt;br /&gt;
[[File:Groupdropdown.png|thumb|Dropdown menu for group membership|left|222x222px]]&lt;br /&gt;
&lt;br /&gt;
On the left side you will see a list of groups for which you are Admin of.&lt;br /&gt;
&lt;br /&gt;
Here you find the user you'd like to join to a group, under the Group Membership dropdown you can select each group they should be a member of. Everyone should be a member of '''SSDM Members''' in order to see the THON 20## folders.&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;If someone is not seeing a folder they should, contact the SETV office to fix.&amp;lt;/u&amp;gt;'''&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1888</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1888"/>
				<updated>2018-03-14T02:27:44Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CougarCloudLogin.png|thumb|282x282px|Login box for the Cougar Cloud]]&lt;br /&gt;
&lt;br /&gt;
=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we had of THON since 2013 and have made available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
The feature set for this system is ever evolving. As new features are added, the list will be updated.&lt;br /&gt;
* Email Client&lt;br /&gt;
* File access - Backup, archives, sharing&lt;br /&gt;
* Contacts storage&lt;br /&gt;
* Calendars&lt;br /&gt;
* Task cards&lt;br /&gt;
* Web conferencing and chat&lt;br /&gt;
* Diagrams&lt;br /&gt;
* Notes&lt;br /&gt;
* Gallery&lt;br /&gt;
* Audio player&lt;br /&gt;
* Video player&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address.&lt;br /&gt;
&lt;br /&gt;
On first sign in, you'll be presented with the Welcome to the Cougar Cloud screen&lt;br /&gt;
[[File:NextCloudIntro.png|thumb|Welcome screen|205x205px]]&lt;br /&gt;
=== Home Page ===&lt;br /&gt;
Once your account has been added to the SSDM group, you will see the THON folders for previous years and for your committees.&lt;br /&gt;
=== Checking E-Mail: ===&lt;br /&gt;
# Sign into Cougar Cloud with your '''@ssdmftk.org''' email address&lt;br /&gt;
# Find and click the Envelope icon in the upper left next to the big S&lt;br /&gt;
# Wait for it to load messages&lt;br /&gt;
[[File:CloudEMail.png|border|frameless|160x160px]] &lt;br /&gt;
=== Setting up &amp;quot;new&amp;quot; users ===&lt;br /&gt;
[[File:NextcloudUsers.png|thumb|127x127px|Users option in Nextcloud]]&lt;br /&gt;
When someone signs in with their '''@ssdmftk.org''' email for the first time, Cougar Cloud takes time to create the storage and set up the account. A group administrator (The Adviser, SETV staff and Technology leader) must put the person in the correct group before they can see their relevant SSDM folders. &lt;br /&gt;
# Sign into the Cougar Cloud&lt;br /&gt;
# Click your user icon in the upper right corner&lt;br /&gt;
# Select USERS&lt;br /&gt;
&lt;br /&gt;
You will be taken to the User Management page for the Cougar Cloud&lt;br /&gt;
[[File:NextcloudGroupPage.png|left|thumb|Users &amp;amp; Groups list]]&lt;br /&gt;
[[File:Groupdropdown.png|thumb|Dropdown menu for group membership|left|222x222px]]&lt;br /&gt;
&lt;br /&gt;
On the left side you will see a list of groups for which you are Admin of.&lt;br /&gt;
&lt;br /&gt;
Here you find the user you'd like to join to a group, under the Group Membership dropdown you can select each group they should be a member of. Everyone should be a member of '''SSDM Members''' in order to see the THON 20## folders.&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;If someone is not seeing a folder they should, contact the SETV office to fix.&amp;lt;/u&amp;gt;'''&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1887</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1887"/>
				<updated>2018-03-14T02:26:50Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: /* Checking E-Mail: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CougarCloudLogin.png|thumb|282x282px|Login box for the Cougar Cloud]]&lt;br /&gt;
&lt;br /&gt;
=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we had of THON since 2013 and have made available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
The feature set for this system is ever evolving. As new features are added, the list will be updated.&lt;br /&gt;
* Email Client&lt;br /&gt;
* File access - Backup, archives, sharing&lt;br /&gt;
* Contacts storage&lt;br /&gt;
* Calendars&lt;br /&gt;
* Task cards&lt;br /&gt;
* Web conferencing and chat&lt;br /&gt;
* Diagrams&lt;br /&gt;
* Notes&lt;br /&gt;
* Gallery&lt;br /&gt;
* Audio player&lt;br /&gt;
* Video player&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address.&lt;br /&gt;
&lt;br /&gt;
On first sign in, you'll be presented with the Welcome to the Cougar Cloud screen&lt;br /&gt;
[[File:NextCloudIntro.png|thumb|Welcome screen|205x205px]]&lt;br /&gt;
=== Home Page ===&lt;br /&gt;
[[File:CloudEMail.png|Cloud Email Client RainMail|160x160px|left|frameless]]&lt;br /&gt;
Once your account has been added to the SSDM group, you will see the THON folders for previous years and for your committees.&lt;br /&gt;
=== Checking E-Mail: ===&lt;br /&gt;
# Sign into Cougar Cloud with your '''@ssdmftk.org''' email address&lt;br /&gt;
# Find and click the Envelope icon in the upper left next to the big S&lt;br /&gt;
# Wait for it to load messages&lt;br /&gt;
=== Setting up &amp;quot;new&amp;quot; users ===&lt;br /&gt;
[[File:NextcloudUsers.png|thumb|127x127px|Users option in Nextcloud]]&lt;br /&gt;
When someone signs in with their '''@ssdmftk.org''' email for the first time, Cougar Cloud takes time to create the storage and set up the account. A group administrator (The Adviser, SETV staff and Technology leader) must put the person in the correct group before they can see their relevant SSDM folders. &lt;br /&gt;
# Sign into the Cougar Cloud&lt;br /&gt;
# Click your user icon in the upper right corner&lt;br /&gt;
# Select USERS&lt;br /&gt;
&lt;br /&gt;
You will be taken to the User Management page for the Cougar Cloud&lt;br /&gt;
[[File:NextcloudGroupPage.png|left|thumb|Users &amp;amp; Groups list]]&lt;br /&gt;
[[File:Groupdropdown.png|thumb|Dropdown menu for group membership|left|222x222px]]&lt;br /&gt;
&lt;br /&gt;
On the left side you will see a list of groups for which you are Admin of.&lt;br /&gt;
&lt;br /&gt;
Here you find the user you'd like to join to a group, under the Group Membership dropdown you can select each group they should be a member of. Everyone should be a member of '''SSDM Members''' in order to see the THON 20## folders.&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;If someone is not seeing a folder they should, contact the SETV office to fix.&amp;lt;/u&amp;gt;'''&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1886</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1886"/>
				<updated>2018-03-14T02:26:13Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CougarCloudLogin.png|thumb|282x282px|Login box for the Cougar Cloud]]&lt;br /&gt;
&lt;br /&gt;
=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we had of THON since 2013 and have made available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
The feature set for this system is ever evolving. As new features are added, the list will be updated.&lt;br /&gt;
* Email Client&lt;br /&gt;
* File access - Backup, archives, sharing&lt;br /&gt;
* Contacts storage&lt;br /&gt;
* Calendars&lt;br /&gt;
* Task cards&lt;br /&gt;
* Web conferencing and chat&lt;br /&gt;
* Diagrams&lt;br /&gt;
* Notes&lt;br /&gt;
* Gallery&lt;br /&gt;
* Audio player&lt;br /&gt;
* Video player&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address.&lt;br /&gt;
&lt;br /&gt;
On first sign in, you'll be presented with the Welcome to the Cougar Cloud screen&lt;br /&gt;
[[File:NextCloudIntro.png|thumb|Welcome screen|205x205px]]&lt;br /&gt;
=== Home Page ===&lt;br /&gt;
Once your account has been added to the SSDM group, you will see the THON folders for previous years and for your committees.[[File:CloudEMail.png|Cloud Email Client RainMail|160x160px|left|frameless]]&lt;br /&gt;
=== Checking E-Mail: ===&lt;br /&gt;
# Sign into Cougar Cloud with your '''@ssdmftk.org''' email address&lt;br /&gt;
# Find and click the Envelope icon in the upper left next to the big S&lt;br /&gt;
# Wait for it to load messages&lt;br /&gt;
=== Setting up &amp;quot;new&amp;quot; users ===&lt;br /&gt;
[[File:NextcloudUsers.png|thumb|127x127px|Users option in Nextcloud]]&lt;br /&gt;
When someone signs in with their '''@ssdmftk.org''' email for the first time, Cougar Cloud takes time to create the storage and set up the account. A group administrator (The Adviser, SETV staff and Technology leader) must put the person in the correct group before they can see their relevant SSDM folders. &lt;br /&gt;
# Sign into the Cougar Cloud&lt;br /&gt;
# Click your user icon in the upper right corner&lt;br /&gt;
# Select USERS&lt;br /&gt;
&lt;br /&gt;
You will be taken to the User Management page for the Cougar Cloud&lt;br /&gt;
[[File:NextcloudGroupPage.png|left|thumb|Users &amp;amp; Groups list]]&lt;br /&gt;
[[File:Groupdropdown.png|thumb|Dropdown menu for group membership|left|222x222px]]&lt;br /&gt;
&lt;br /&gt;
On the left side you will see a list of groups for which you are Admin of.&lt;br /&gt;
&lt;br /&gt;
Here you find the user you'd like to join to a group, under the Group Membership dropdown you can select each group they should be a member of. Everyone should be a member of '''SSDM Members''' in order to see the THON 20## folders.&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;If someone is not seeing a folder they should, contact the SETV office to fix.&amp;lt;/u&amp;gt;'''&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1885</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1885"/>
				<updated>2018-03-14T02:24:39Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CougarCloudLogin.png|thumb|282x282px|Login box for the Cougar Cloud]]&lt;br /&gt;
&lt;br /&gt;
=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we had of THON since 2013 and have made available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
The feature set for this system is ever evolving. As new features are added, the list will be updated.&lt;br /&gt;
* Email Client&lt;br /&gt;
* File access - Backup, archives, sharing&lt;br /&gt;
* Contacts storage&lt;br /&gt;
* Calendars&lt;br /&gt;
* Task cards&lt;br /&gt;
* Web conferencing and chat&lt;br /&gt;
* Diagrams&lt;br /&gt;
* Notes&lt;br /&gt;
* Gallery&lt;br /&gt;
* Audio player&lt;br /&gt;
* Video player&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address.&lt;br /&gt;
&lt;br /&gt;
On first sign in, you'll be presented with the Welcome to the Cougar Cloud screen&lt;br /&gt;
[[File:NextCloudIntro.png|thumb|Welcome screen|205x205px]]&lt;br /&gt;
=== Home Page ===&lt;br /&gt;
Once your account has been added to the SSDM group, you will see the THON folders for previous years and for your committees.&lt;br /&gt;
&lt;br /&gt;
=== Checking E-Mail: ===&lt;br /&gt;
[[File:CloudEMail.png|thumb|Cloud Email Client RainMail|200x200px|left]]&lt;br /&gt;
# Sign into Cougar Cloud with your '''@ssdmftk.org''' email address&lt;br /&gt;
# Find and click the Envelope icon in the upper left next to the big S&lt;br /&gt;
# Wait for it to load messages&lt;br /&gt;
=== Setting up &amp;quot;new&amp;quot; users ===&lt;br /&gt;
[[File:NextcloudUsers.png|thumb|127x127px|Users option in Nextcloud]]&lt;br /&gt;
When someone signs in with their '''@ssdmftk.org''' email for the first time, Cougar Cloud takes time to create the storage and set up the account. A group administrator (The Adviser, SETV staff and Technology leader) must put the person in the correct group before they can see their relevant SSDM folders. &lt;br /&gt;
# Sign into the Cougar Cloud&lt;br /&gt;
# Click your user icon in the upper right corner&lt;br /&gt;
# Select USERS&lt;br /&gt;
You will be taken to the User Management page for the Cougar Cloud&lt;br /&gt;
[[File:NextcloudGroupPage.png|left|thumb|Users &amp;amp; Groups list]]&lt;br /&gt;
[[File:Groupdropdown.png|thumb|Dropdown menu for group membership|left|222x222px]]&lt;br /&gt;
&lt;br /&gt;
On the left side you will see a list of groups for which you are Admin of.&lt;br /&gt;
&lt;br /&gt;
Here you find the user you'd like to join to a group, under the Group Membership dropdown you can select each group they should be a member of. Everyone should be a member of '''SSDM Members''' in order to see the THON 20## folders.&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;If someone is not seeing a folder they should, contact the SETV office to fix.&amp;lt;/u&amp;gt;'''&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1884</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1884"/>
				<updated>2018-03-14T02:23:28Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CougarCloudLogin.png|thumb|282x282px|Login box for the Cougar Cloud]]&lt;br /&gt;
&lt;br /&gt;
=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we had of THON since 2013 and have made available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
The feature set for this system is ever evolving. As new features are added, the list will be updated.&lt;br /&gt;
* Email Client&lt;br /&gt;
* File access - Backup, archives, sharing&lt;br /&gt;
* Contacts storage&lt;br /&gt;
* Calendars&lt;br /&gt;
* Task cards&lt;br /&gt;
* Web conferencing and chat&lt;br /&gt;
* Diagrams&lt;br /&gt;
* Notes&lt;br /&gt;
* Gallery&lt;br /&gt;
* Audio player&lt;br /&gt;
* Video player&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address.&lt;br /&gt;
&lt;br /&gt;
On first sign in, you'll be presented with the Welcome to the Cougar Cloud screen&lt;br /&gt;
=== Home Page ===&lt;br /&gt;
Once your account has been added to the SSDM group, you will see the THON folders for previous years and for your committees.&lt;br /&gt;
&lt;br /&gt;
=== Checking E-Mail: ===&lt;br /&gt;
# Sign into Cougar Cloud with your '''@ssdmftk.org''' email address&lt;br /&gt;
# Find and click the Envelope icon in the upper left next to the big S&lt;br /&gt;
# Wait for it to load messages&lt;br /&gt;
[[File:NextCloudIntro.png|left|thumb|Welcome screen|205x205px]][[File:CloudEMail.png|thumb|Cloud Email Client RainMail|center|200x200px]]&lt;br /&gt;
&lt;br /&gt;
=== Setting up &amp;quot;new&amp;quot; users ===&lt;br /&gt;
[[File:NextcloudUsers.png|thumb|127x127px|Users option in Nextcloud]]&lt;br /&gt;
When someone signs in with their '''@ssdmftk.org''' email for the first time, Cougar Cloud takes time to create the storage and set up the account. A group administrator (The Adviser, SETV staff and Technology leader) must put the person in the correct group before they can see their relevant SSDM folders. &lt;br /&gt;
# Sign into the Cougar Cloud&lt;br /&gt;
# Click your user icon in the upper right corner&lt;br /&gt;
# Select USERS&lt;br /&gt;
You will be taken to the User Management page for the Cougar Cloud&lt;br /&gt;
[[File:NextcloudGroupPage.png|left|thumb|Users &amp;amp; Groups list]]&lt;br /&gt;
[[File:Groupdropdown.png|thumb|Dropdown menu for group membership|left|222x222px]]&lt;br /&gt;
&lt;br /&gt;
On the left side you will see a list of groups for which you are Admin of.&lt;br /&gt;
&lt;br /&gt;
Here you find the user you'd like to join to a group, under the Group Membership dropdown you can select each group they should be a member of. Everyone should be a member of '''SSDM Members''' in order to see the THON 20## folders.&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;If someone is not seeing a folder they should, contact the SETV office to fix.&amp;lt;/u&amp;gt;'''&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1883</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1883"/>
				<updated>2018-03-14T02:22:37Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CougarCloudLogin.png|thumb|282x282px|Login box for the Cougar Cloud]]&lt;br /&gt;
&lt;br /&gt;
=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we had of THON since 2013 and have made available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
The feature set for this system is ever evolving. As new features are added, the list will be updated.&lt;br /&gt;
* Email Client&lt;br /&gt;
* File access - Backup, archives, sharing&lt;br /&gt;
* Contacts storage&lt;br /&gt;
* Calendars&lt;br /&gt;
* Task cards&lt;br /&gt;
* Web conferencing and chat&lt;br /&gt;
* Diagrams&lt;br /&gt;
* Notes&lt;br /&gt;
* Gallery&lt;br /&gt;
* Audio player&lt;br /&gt;
* Video player&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address.&lt;br /&gt;
&lt;br /&gt;
On first sign in, you'll be presented with the Welcome to the Cougar Cloud screen&lt;br /&gt;
=== Home Page ===&lt;br /&gt;
Once your account has been added to the SSDM group, you will see the THON folders for previous years and for your committees.&lt;br /&gt;
&lt;br /&gt;
=== Checking E-Mail: ===&lt;br /&gt;
# Sign into Cougar Cloud with your '''@ssdmftk.org''' email address&lt;br /&gt;
# Find and click the Envelope icon in the upper left next to the big S&lt;br /&gt;
# Wait for it to load messages&lt;br /&gt;
[[File:NextCloudIntro.png|left|thumb|Welcome screen]][[File:CloudEMail.png|thumb|Cloud Email Client RainMail|center]]&lt;br /&gt;
&lt;br /&gt;
=== Setting up &amp;quot;new&amp;quot; users ===&lt;br /&gt;
[[File:NextcloudUsers.png|thumb|127x127px|Users option in Nextcloud]]&lt;br /&gt;
When someone signs in with their '''@ssdmftk.org''' email for the first time, Cougar Cloud takes time to create the storage and set up the account. A group administrator (The Adviser, SETV staff and Technology leader) must put the person in the correct group before they can see their relevant SSDM folders. &lt;br /&gt;
# Sign into the Cougar Cloud&lt;br /&gt;
# Click your user icon in the upper right corner&lt;br /&gt;
# Select USERS&lt;br /&gt;
You will be taken to the User Management page for the Cougar Cloud&lt;br /&gt;
[[File:NextcloudGroupPage.png|left|thumb|Users &amp;amp; Groups list]]&lt;br /&gt;
[[File:Groupdropdown.png|thumb|Dropdown menu for group membership|left|222x222px]]&lt;br /&gt;
&lt;br /&gt;
On the left side you will see a list of groups for which you are Admin of.&lt;br /&gt;
&lt;br /&gt;
Here you find the user you'd like to join to a group, under the Group Membership dropdown you can select each group they should be a member of. Everyone should be a member of '''SSDM Members''' in order to see the THON 20## folders.&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;If someone is not seeing a folder they should, contact the SETV office to fix.&amp;lt;/u&amp;gt;'''&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1882</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1882"/>
				<updated>2018-03-14T02:22:03Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CougarCloudLogin.png|thumb|282x282px|Login box for the Cougar Cloud]]&lt;br /&gt;
&lt;br /&gt;
=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we had of THON since 2013 and have made available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
The feature set for this system is ever evolving. As new features are added, the list will be updated.&lt;br /&gt;
* Email Client&lt;br /&gt;
* File access - Backup, archives, sharing&lt;br /&gt;
* Contacts storage&lt;br /&gt;
* Calendars&lt;br /&gt;
* Task cards&lt;br /&gt;
* Web conferencing and chat&lt;br /&gt;
* Diagrams&lt;br /&gt;
* Notes&lt;br /&gt;
* Gallery&lt;br /&gt;
* Audio player&lt;br /&gt;
* Video player&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address.&lt;br /&gt;
&lt;br /&gt;
On first sign in, you'll be presented with the Welcome to the Cougar Cloud screen&lt;br /&gt;
[[File:NextCloudIntro.png|left|thumb|Welcome screen]]&lt;br /&gt;
&lt;br /&gt;
=== Home Page ===&lt;br /&gt;
Once your account has been added to the SSDM group, you will see the THON folders for previous years and for your committees.&lt;br /&gt;
&lt;br /&gt;
=== Checking E-Mail: ===&lt;br /&gt;
# Sign into Cougar Cloud with your '''@ssdmftk.org''' email address&lt;br /&gt;
# Find and click the Envelope icon in the upper left next to the big S&lt;br /&gt;
# Wait for it to load messages&lt;br /&gt;
[[File:CloudEMail.png|thumb|Cloud Email Client RainMail|center]]&lt;br /&gt;
&lt;br /&gt;
=== Setting up &amp;quot;new&amp;quot; users ===&lt;br /&gt;
[[File:NextcloudUsers.png|thumb|127x127px|Users option in Nextcloud]]&lt;br /&gt;
When someone signs in with their '''@ssdmftk.org''' email for the first time, Cougar Cloud takes time to create the storage and set up the account. A group administrator (The Adviser, SETV staff and Technology leader) must put the person in the correct group before they can see their relevant SSDM folders. &lt;br /&gt;
# Sign into the Cougar Cloud&lt;br /&gt;
# Click your user icon in the upper right corner&lt;br /&gt;
# Select USERS&lt;br /&gt;
You will be taken to the User Management page for the Cougar Cloud&lt;br /&gt;
[[File:NextcloudGroupPage.png|left|thumb|Users &amp;amp; Groups list]]&lt;br /&gt;
[[File:Groupdropdown.png|thumb|Dropdown menu for group membership|left|222x222px]]&lt;br /&gt;
&lt;br /&gt;
On the left side you will see a list of groups for which you are Admin of.&lt;br /&gt;
&lt;br /&gt;
Here you find the user you'd like to join to a group, under the Group Membership dropdown you can select each group they should be a member of. Everyone should be a member of '''SSDM Members''' in order to see the THON 20## folders.&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;If someone is not seeing a folder they should, contact the SETV office to fix.&amp;lt;/u&amp;gt;'''&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1881</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1881"/>
				<updated>2018-03-14T02:21:16Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CougarCloudLogin.png|thumb|282x282px|Login box for the Cougar Cloud]]&lt;br /&gt;
&lt;br /&gt;
=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we had of THON since 2013 and have made available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
The feature set for this system is ever evolving. As new features are added, the list will be updated.&lt;br /&gt;
* Email Client&lt;br /&gt;
* File access - Backup, archives, sharing&lt;br /&gt;
* Contacts storage&lt;br /&gt;
* Calendars&lt;br /&gt;
* Task cards&lt;br /&gt;
* Web conferencing and chat&lt;br /&gt;
* Diagrams&lt;br /&gt;
* Notes&lt;br /&gt;
* Gallery&lt;br /&gt;
* Audio player&lt;br /&gt;
* Video player&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address.&lt;br /&gt;
&lt;br /&gt;
On first sign in, you'll be presented with the Welcome to the Cougar Cloud screen&lt;br /&gt;
[[File:NextCloudIntro.png|left|thumb|Welcome screen]]&lt;br /&gt;
&lt;br /&gt;
=== Home Page ===&lt;br /&gt;
Once your account has been added to the SSDM group, you will see the THON folders for previous years and for your committees.&lt;br /&gt;
&lt;br /&gt;
=== Checking E-Mail: ===&lt;br /&gt;
# Sign into Cougar Cloud with your '''@ssdmftk.org''' email address&lt;br /&gt;
# Find and click the Envelope icon in the upper left next to the big S&lt;br /&gt;
# Wait for it to load messages&lt;br /&gt;
[[File:CloudEMail.png|left|thumb|Cloud Email Client RainMail]]&lt;br /&gt;
&lt;br /&gt;
=== Setting up &amp;quot;new&amp;quot; users ===&lt;br /&gt;
[[File:NextcloudUsers.png|thumb|127x127px|Users option in Nextcloud]]&lt;br /&gt;
When someone signs in with their '''@ssdmftk.org''' email for the first time, Cougar Cloud takes time to create the storage and set up the account. A group administrator (The Adviser, SETV staff and Technology leader) must put the person in the correct group before they can see their relevant SSDM folders. &lt;br /&gt;
# Sign into the Cougar Cloud&lt;br /&gt;
# Click your user icon in the upper right corner&lt;br /&gt;
# Select USERS&lt;br /&gt;
You will be taken to the User Management page for the Cougar Cloud&lt;br /&gt;
[[File:NextcloudGroupPage.png|left|thumb|Users &amp;amp; Groups list]]&lt;br /&gt;
[[File:Groupdropdown.png|thumb|Dropdown menu for group membership|left|222x222px]]&lt;br /&gt;
&lt;br /&gt;
On the left side you will see a list of groups for which you are Admin of.&lt;br /&gt;
&lt;br /&gt;
Here you find the user you'd like to join to a group, under the Group Membership dropdown you can select each group they should be a member of. Everyone should be a member of '''SSDM Members''' in order to see the THON 20## folders.&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;If someone is not seeing a folder they should, contact the SETV office to fix.&amp;lt;/u&amp;gt;'''&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1880</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1880"/>
				<updated>2018-03-14T02:20:10Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CougarCloudLogin.png|thumb|282x282px|Login box for the Cougar Cloud]]&lt;br /&gt;
&lt;br /&gt;
=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we had of THON since 2013 and have made available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
The feature set for this system is ever evolving. As new features are added, the list will be updated.&lt;br /&gt;
* Email Client&lt;br /&gt;
* File access - Backup, archives, sharing&lt;br /&gt;
* Contacts storage&lt;br /&gt;
* Calendars&lt;br /&gt;
* Task cards&lt;br /&gt;
* Web conferencing and chat&lt;br /&gt;
* Diagrams&lt;br /&gt;
* Notes&lt;br /&gt;
* Gallery&lt;br /&gt;
* Audio player&lt;br /&gt;
* Video player&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address.&lt;br /&gt;
&lt;br /&gt;
On first sign in, you'll be presented with the Welcome to the Cougar Cloud screen&lt;br /&gt;
[[File:NextCloudIntro.png|left|thumb|Welcome screen]]&lt;br /&gt;
&lt;br /&gt;
=== Home Page ===&lt;br /&gt;
Once your account has been added to the SSDM group, you will see the THON folders for previous years and for your committees.&lt;br /&gt;
&lt;br /&gt;
=== Checking E-Mail: ===&lt;br /&gt;
# Sign into Cougar Cloud with your '''@ssdmftk.org''' email address&lt;br /&gt;
# Find and click the Envelope icon in the upper left next to the big S&lt;br /&gt;
# Wait for it to load messages&lt;br /&gt;
[[File:CloudEMail.png|left|thumb|Cloud Email Client RainMail]]&lt;br /&gt;
&lt;br /&gt;
=== Setting up &amp;quot;new&amp;quot; users ===&lt;br /&gt;
[[File:NextcloudUsers.png|thumb|127x127px|Users option in Nextcloud]]&lt;br /&gt;
When someone signs in with their '''@ssdmftk.org''' email for the first time, Cougar Cloud takes time to create the storage and set up the account. A group administrator (The Adviser, SETV staff and Technology leader) must put the person in the correct group before they can see their relevant SSDM folders. &lt;br /&gt;
# Sign into the Cougar Cloud&lt;br /&gt;
# Click your user icon in the upper right corner&lt;br /&gt;
# Select USERS&lt;br /&gt;
You will be taken to the User Management page for the Cougar Cloud&lt;br /&gt;
[[File:NextcloudGroupPage.png|left|thumb|Users &amp;amp; Groups list]]&lt;br /&gt;
[[File:Groupdropdown.png|center|thumb|Dropdown menu for group membership]]&lt;br /&gt;
&lt;br /&gt;
On the left side you will see a list of groups for which you are Admin of.&lt;br /&gt;
&lt;br /&gt;
Here you find the user you'd like to join to a group, under the Group Membership dropdown you can select each group they should be a member of. Everyone should be a member of '''SSDM Members''' in order to see the THON 20## folders.&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;If someone is not seeing a folder they should, contact the SETV office to fix.&amp;lt;/u&amp;gt;'''&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=File:Groupdropdown.png&amp;diff=1879</id>
		<title>File:Groupdropdown.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=File:Groupdropdown.png&amp;diff=1879"/>
				<updated>2018-03-14T02:19:08Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;group dropdown&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=File:NextcloudGroupPage.png&amp;diff=1878</id>
		<title>File:NextcloudGroupPage.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=File:NextcloudGroupPage.png&amp;diff=1878"/>
				<updated>2018-03-14T02:18:16Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Nextcloud Group&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=File:NextcloudUsers.png&amp;diff=1877</id>
		<title>File:NextcloudUsers.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=File:NextcloudUsers.png&amp;diff=1877"/>
				<updated>2018-03-14T02:17:03Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Users icon&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=SSDMFTK_Email_Management&amp;diff=1876</id>
		<title>SSDMFTK Email Management</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=SSDMFTK_Email_Management&amp;diff=1876"/>
				<updated>2018-03-12T20:22:11Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CPanel Login.png|thumb|225x225px|cPanel Login Screen]]This guide is for Staff Advisers and Student WebMaster, intended to demonstrate how to access cPanel Account Manager, create, update, or delete accounts.&lt;br /&gt;
&lt;br /&gt;
'''DISCLAIMERS ON EMAIL:'''&lt;br /&gt;
&lt;br /&gt;
1. The email system is generally secure, it uses basic encryption to verify logins and send mail. It does NOT send encrypted emails. '''DO NOT EMAIL VERY SENSITIVE INFORMATION SUCH AS CREDIT CARD NUMBERS.'''&lt;br /&gt;
&lt;br /&gt;
2. The emails are stored on our server and are visible to top-level admins, '''DO NOT USE THIS EMAIL FOR ANYTHING OTHER THAN SSDM/THON RELATED WORK.'''&lt;br /&gt;
&lt;br /&gt;
3. All emails are backed up to a remote server (as with the rest of the website data) on a regular basis. If emails are accidentally deleted they can be recovered. Contact the SETV office for more info&lt;br /&gt;
&lt;br /&gt;
=== Accessing cPanel ===&lt;br /&gt;
cPanel is the Web-based user interface for the backend that controls the whole ssdmftk website. You can view files, accounts, DNS settings, etc. '''Generally, there will be no need to modify ANY of these advanced settings, so steer clear of them as it could have unintended consequences.'''[[File:UserManager.png|thumb|User Management icon is circled in red]]&lt;br /&gt;
# Access the cPanel from https://cpanel.ssdmftk.org&lt;br /&gt;
# The username is '''ssdmftk'''; ask the SETV office for the current password&lt;br /&gt;
# Once signed in, click the User Management icon in the upper left corner&lt;br /&gt;
&lt;br /&gt;
=== User Manager ===&lt;br /&gt;
This is a simple manager to control the accounts for Email and Cloud Access.&lt;br /&gt;
&lt;br /&gt;
Every account created in this list automatically has access to the Cougar Cloud; e-mail is only available when enabled. &lt;br /&gt;
==== Create NEW User ====&lt;br /&gt;
Once in the User Management Screen:&lt;br /&gt;
# Click '''Add User'''&lt;br /&gt;
# Under Basic Information fill out the relevant details; leave the '''''domain''''' at '''ssdmftk.org;''' set the '''''alternate''''' '''''email''''' to the committee member's '''ssdstudent.org email''',&lt;br /&gt;
# Security Info - Set the user's password - Set a password for the committee members, do not use the same password for all emails, and make sure they have 8 characters with upper/lower case.&lt;br /&gt;
# Under &amp;quot;Services&amp;quot; Enable Email and set quota to 250 MB.&lt;br /&gt;
# Click CREATE&lt;br /&gt;
&lt;br /&gt;
==== Modify User (Update password and name) ====&lt;br /&gt;
Once in the User Management Screen:&lt;br /&gt;
[[File:Edit user.png|none|thumb]]&lt;br /&gt;
# Find the user&lt;br /&gt;
# Click '''EDIT''' or '''CHANGE PASSWORD'''&lt;br /&gt;
To '''DELETE''' the user, click DELETE, this will lock access, remove emails, and sever connection to the Cougar Cloud. This cannot be undone easily, so avoid this action unless absolutely sure it's what you want and have all the info you need backed up.&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1875</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1875"/>
				<updated>2018-03-12T20:19:03Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CougarCloudLogin.png|thumb|282x282px|Login box for the Cougar Cloud]]&lt;br /&gt;
&lt;br /&gt;
=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we had of THON since 2013 and have made available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
The feature set for this system is ever evolving. As new features are added, the list will be updated.&lt;br /&gt;
* Email Client&lt;br /&gt;
* File access - Backup, archives, sharing&lt;br /&gt;
* Contacts storage&lt;br /&gt;
* Calendars&lt;br /&gt;
* Task cards&lt;br /&gt;
* Web conferencing and chat&lt;br /&gt;
* Diagrams&lt;br /&gt;
* Notes&lt;br /&gt;
* Gallery&lt;br /&gt;
* Audio player&lt;br /&gt;
* Video player&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address.&lt;br /&gt;
&lt;br /&gt;
On first sign in, you'll be presented with the Welcome to the Cougar Cloud screen&lt;br /&gt;
[[File:NextCloudIntro.png|left|thumb|Welcome screen]]&lt;br /&gt;
&lt;br /&gt;
=== Home Page ===&lt;br /&gt;
Once your account has been added to the SSDM group, you will see the THON folders for previous years and for your committees.&lt;br /&gt;
&lt;br /&gt;
=== Checking E-Mail: ===&lt;br /&gt;
# Sign into Cougar Cloud with your '''@ssdmftk.org''' email address&lt;br /&gt;
# Find and click the Envelope icon in the upper left next to the big S&lt;br /&gt;
# Wait for it to load messages&lt;br /&gt;
[[File:CloudEMail.png|left|thumb|Cloud Email Client RainMail]]&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=File:CloudEMail.png&amp;diff=1874</id>
		<title>File:CloudEMail.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=File:CloudEMail.png&amp;diff=1874"/>
				<updated>2018-03-12T20:18:23Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Cloud email&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Main_Page&amp;diff=1873</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Main_Page&amp;diff=1873"/>
				<updated>2018-03-12T20:09:38Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the SETV Wiki Site&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The purpose of this site is to catalog and share information about our systems. This includes:&lt;br /&gt;
* [[:Category:SETV Guides|SETV Guides]]&lt;br /&gt;
* [[:Category:SETV Machines|Computers]]:&lt;br /&gt;
** [[Advanced Edit Tower]]&lt;br /&gt;
*** Specific software&lt;br /&gt;
** [[Cougar Cloud Server|Archive &amp;amp; Cloud Server]]&lt;br /&gt;
*** Build&lt;br /&gt;
**** [[FreeNAS/Installation|FreeNas]]&lt;br /&gt;
**** [[NextCloud/Installation|NextCloud]]&lt;br /&gt;
*** Management&lt;br /&gt;
** [[Wowza Server]]&lt;br /&gt;
*** [[Wowza Server/Setup &amp;amp; Install|Setup &amp;amp; Install]]&lt;br /&gt;
*** [[Wowza Streaming Engine/Manager|Management]]&lt;br /&gt;
*** Setting up Streams&lt;br /&gt;
*** [[Adding VOD Content|Adding to VOD]] to [[Wordpress]]&lt;br /&gt;
* [[ssdcougars.tv]]&lt;br /&gt;
** [[WHM]] &amp;amp; [[cPanel]] usage&lt;br /&gt;
** [[Wordpress]] &lt;br /&gt;
** Critical notes &amp;amp; Security&lt;br /&gt;
** subdomains&lt;br /&gt;
*** [[Snipe-IT|snipeit]]&lt;br /&gt;
*** [[Wowza Streaming Engine|wowza]]&lt;br /&gt;
*** [[MediaWiki|wiki]]&lt;br /&gt;
*** [[NextCloud|cloud]]&lt;br /&gt;
*** archive&lt;br /&gt;
* [[ssdmftk.com]]&lt;br /&gt;
** [[:Category:WordPress Guides|Wordpress guides]]&lt;br /&gt;
** [[:Category:SSDM Guides|Specific guides for students]]&lt;br /&gt;
*** [[SSDMFTK Email Management|Creating/Modifying ssdmftk committee emails]]&lt;br /&gt;
*** [[Using Cougar Cloud (SSDMFTK)|Using Cougar Cloud]]&lt;br /&gt;
*** [[Checking WebMail|Checking ssdmftk email]]&lt;br /&gt;
* [[Tricaster Mini]] Guides&lt;br /&gt;
* [[3Play Mini]] Guides&lt;br /&gt;
* And More...&lt;br /&gt;
* [[:Category:Info Pages|Info Pages]]&lt;br /&gt;
&lt;br /&gt;
This site uses the Open Sourced MediaWiki platform. The very same used by Wikipedia. With the addition of a [[Visual Editor Install|Visual Editor]], it makes editing the WikiPages a sinch.&lt;br /&gt;
&lt;br /&gt;
Consult the [//meta.wikimedia.org/wiki/Help:Contents User's Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* [//www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=SSDMFTK_Email_Management&amp;diff=1872</id>
		<title>SSDMFTK Email Management</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=SSDMFTK_Email_Management&amp;diff=1872"/>
				<updated>2018-03-12T20:08:54Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This guide is for Staff Advisers and Student WebMaster, intended to demonstrate how to access cPanel Account Manager, create, update, or delete accounts.&lt;br /&gt;
&lt;br /&gt;
'''DISCLAIMERS ON EMAIL:'''&lt;br /&gt;
[[File:CPanel Login.png|thumb|225x225px|cPanel Login Screen]]&lt;br /&gt;
1. The email system is generally secure, it uses basic encryption to verify logins and send mail. It does NOT send encrypted emails. '''DO NOT EMAIL VERY SENSITIVE INFORMATION SUCH AS CREDIT CARD NUMBERS.'''&lt;br /&gt;
&lt;br /&gt;
2. The emails are stored on our server and are visible to top-level admins, '''DO NOT USE THIS EMAIL FOR ANYTHING OTHER THAN SSDM/THON RELATED WORK.'''&lt;br /&gt;
&lt;br /&gt;
3. All emails are backed up to a remote server (as with the rest of the website data) on a regular basis. If emails are accidentally deleted they can be recovered. Contact the SETV office for more info&lt;br /&gt;
&lt;br /&gt;
=== Accessing cPanel ===&lt;br /&gt;
cPanel is the Web-based user interface for the backend that controls the whole ssdmftk website. You can view files, accounts, DNS settings, etc. '''Generally, there will be no need to modify ANY of these advanced settings, so steer clear of them as it could have unintended consequences.'''&lt;br /&gt;
&lt;br /&gt;
# Access the cPanel from https://cpanel.ssdmftk.org&lt;br /&gt;
# The username is '''ssdmftk'''; ask the SETV office for the current password&lt;br /&gt;
# Once signed in, click the UserManagement icon in the upper left corner&lt;br /&gt;
&lt;br /&gt;
=== User Manager ===&lt;br /&gt;
This is a simple manager to control the accounts for Email and Cloud Access.&lt;br /&gt;
[[File:UserManager.png|thumb]]&lt;br /&gt;
Every account created in this list automatically has access to the Cougar Cloud; e-mail is only available when enabled. &lt;br /&gt;
[[File:CPanel Email.png|left|thumb|183x183px]]&lt;br /&gt;
&lt;br /&gt;
==== Create NEW User ====&lt;br /&gt;
Once in the User Management Screen:&lt;br /&gt;
# Click '''Add User'''&lt;br /&gt;
# Under Basic Information fill out the relevant details; leave the '''''domain''''' at '''ssdmftk.org;''' set the '''''alternate''''' '''''email''''' to the committee member's '''ssdstudent.org email''',&lt;br /&gt;
# Security Info - Set the user's password - Set a password for the committee members, do not use the same password for all emails, and make sure they have 8 characters with upper/lower case.&lt;br /&gt;
# Under &amp;quot;Services&amp;quot; Enable Email and set quota to 250 MB.&lt;br /&gt;
# Click CREATE&lt;br /&gt;
&lt;br /&gt;
==== Modify User (Update password and name) ====&lt;br /&gt;
Once in the User Management Screen:&lt;br /&gt;
[[File:Edit user.png|none|thumb]]&lt;br /&gt;
# Find the user&lt;br /&gt;
# Click '''EDIT''' or '''CHANGE PASSWORD'''&lt;br /&gt;
To '''DELETE''' the user, click DELETE, this will lock access, remove emails, and sever connection to the Cougar Cloud. This cannot be undone easily, so avoid this action unless absolutely sure it's what you want and have all the info you need backed up.&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1871</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1871"/>
				<updated>2018-03-12T20:08:15Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CougarCloudLogin.png|thumb|282x282px|Login box for the Cougar Cloud]]&lt;br /&gt;
&lt;br /&gt;
=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we had of THON since 2013 and have made available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
The feature set for this system is ever evolving. As new features are added, the list will be updated.&lt;br /&gt;
* Email Client&lt;br /&gt;
* File access - Backup, archives, sharing&lt;br /&gt;
* Contacts storage&lt;br /&gt;
* Calendars&lt;br /&gt;
* Task cards&lt;br /&gt;
* Web conferencing and chat&lt;br /&gt;
* Diagrams&lt;br /&gt;
* Notes&lt;br /&gt;
* Gallery&lt;br /&gt;
* Audio player&lt;br /&gt;
* Video player&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address.&lt;br /&gt;
&lt;br /&gt;
On first sign in, you'll be presented with the Welcome to the Cougar Cloud screen&lt;br /&gt;
[[File:NextCloudIntro.png|left|thumb|Welcome screen]]&lt;br /&gt;
&lt;br /&gt;
=== Home Page ===&lt;br /&gt;
Once your account has been added to the SSDM group, you will see the THON folders for previous years and for your committees.&lt;br /&gt;
[[Category:SSDM Guides]]&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1870</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1870"/>
				<updated>2018-03-12T19:03:26Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:CougarCloudLogin.png|thumb|282x282px|Login box for the Cougar Cloud]]&lt;br /&gt;
&lt;br /&gt;
=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we had of THON since 2013 and have made available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
The feature set for this system is ever evolving. As new features are added, the list will be updated.&lt;br /&gt;
* Email Client&lt;br /&gt;
* File access - Backup, archives, sharing&lt;br /&gt;
* Contacts storage&lt;br /&gt;
* Calendars&lt;br /&gt;
* Task cards&lt;br /&gt;
* Web conferencing and chat&lt;br /&gt;
* Diagrams&lt;br /&gt;
* Notes&lt;br /&gt;
* Gallery&lt;br /&gt;
* Audio player&lt;br /&gt;
* Video player&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address.&lt;br /&gt;
&lt;br /&gt;
On first sign in, you'll be presented with the Welcome to the Cougar Cloud screen&lt;br /&gt;
[[File:NextCloudIntro.png|left|thumb|Welcome screen]]&lt;br /&gt;
&lt;br /&gt;
=== Home Page ===&lt;br /&gt;
Once your account has been added to the SSDM group, you will see the THON folders for previous years and for your committees.&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=File:NextCloudIntro.png&amp;diff=1869</id>
		<title>File:NextCloudIntro.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=File:NextCloudIntro.png&amp;diff=1869"/>
				<updated>2018-03-12T18:05:33Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Intro screen&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=File:CougarCloudLogin.png&amp;diff=1868</id>
		<title>File:CougarCloudLogin.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=File:CougarCloudLogin.png&amp;diff=1868"/>
				<updated>2018-03-12T18:04:45Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Login&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Category:SSDM_Guides&amp;diff=1867</id>
		<title>Category:SSDM Guides</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Category:SSDM_Guides&amp;diff=1867"/>
				<updated>2018-03-12T17:56:00Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: Created page with &amp;quot;Guides for SSDM Committee members, students and staff&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Guides for SSDM Committee members, students and staff&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1866</id>
		<title>Using Cougar Cloud (SSDMFTK)</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=Using_Cougar_Cloud_(SSDMFTK)&amp;diff=1866"/>
				<updated>2018-03-12T17:42:32Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: Created page with &amp;quot;=== What is Cougar Cloud? === The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Offi...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== What is Cougar Cloud? ===&lt;br /&gt;
The Cougar Cloud is a dropbox-like system built in-house for hosting archives of data for SETV. Because of the partnership with the District Office and the SSDM team, we have allocated a dedicated pool of two terabytes of storage for the life of SSDM at Springfield. We have also collected whatever media we had of THON since 2013 and have made available to the SSDM team accounts for use.&lt;br /&gt;
&lt;br /&gt;
=== Accessing Cougar Cloud ===&lt;br /&gt;
To find the Cougar Cloud; go to https://cloud.ssdmftk.org&lt;br /&gt;
&lt;br /&gt;
Sign in using your full '''@ssdmftk.org''' email address&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=SSDMFTK_Email_Management&amp;diff=1865</id>
		<title>SSDMFTK Email Management</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=SSDMFTK_Email_Management&amp;diff=1865"/>
				<updated>2018-03-12T17:10:18Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This guide is for Staff Advisers and Student WebMaster, intended to demonstrate how to access cPanel Account Manager, create, update, or delete accounts.&lt;br /&gt;
&lt;br /&gt;
'''DISCLAIMERS ON EMAIL:'''&lt;br /&gt;
[[File:CPanel Login.png|thumb|225x225px|cPanel Login Screen]]&lt;br /&gt;
1. The email system is generally secure, it uses basic encryption to verify logins and send mail. It does NOT send encrypted emails. '''DO NOT EMAIL VERY SENSITIVE INFORMATION SUCH AS CREDIT CARD NUMBERS.'''&lt;br /&gt;
&lt;br /&gt;
2. The emails are stored on our server and are visible to top-level admins, '''DO NOT USE THIS EMAIL FOR ANYTHING OTHER THAN SSDM/THON RELATED WORK.'''&lt;br /&gt;
&lt;br /&gt;
3. All emails are backed up to a remote server (as with the rest of the website data) on a regular basis. If emails are accidentally deleted they can be recovered. Contact the SETV office for more info&lt;br /&gt;
&lt;br /&gt;
=== Accessing cPanel ===&lt;br /&gt;
cPanel is the Web-based user interface for the backend that controls the whole ssdmftk website. You can view files, accounts, DNS settings, etc. '''Generally, there will be no need to modify ANY of these advanced settings, so steer clear of them as it could have unintended consequences.'''&lt;br /&gt;
&lt;br /&gt;
# Access the cPanel from https://cpanel.ssdmftk.org&lt;br /&gt;
# The username is '''ssdmftk'''; ask the SETV office for the current password&lt;br /&gt;
# Once signed in, click the UserManagement icon in the upper left corner&lt;br /&gt;
&lt;br /&gt;
=== User Manager ===&lt;br /&gt;
This is a simple manager to control the accounts for Email and Cloud Access.&lt;br /&gt;
[[File:UserManager.png|thumb]]&lt;br /&gt;
Every account created in this list automatically has access to the Cougar Cloud; e-mail is only available when enabled. &lt;br /&gt;
[[File:CPanel Email.png|left|thumb|183x183px]]&lt;br /&gt;
&lt;br /&gt;
==== Create NEW User ====&lt;br /&gt;
Once in the User Management Screen:&lt;br /&gt;
# Click '''Add User'''&lt;br /&gt;
# Under Basic Information fill out the relevant details; leave the '''''domain''''' at '''ssdmftk.org;''' set the '''''alternate''''' '''''email''''' to the committee member's '''ssdstudent.org email''',&lt;br /&gt;
# Security Info - Set the user's password - Set a password for the committee members, do not use the same password for all emails, and make sure they have 8 characters with upper/lower case.&lt;br /&gt;
# Under &amp;quot;Services&amp;quot; Enable Email and set quota to 250 MB.&lt;br /&gt;
# Click CREATE&lt;br /&gt;
&lt;br /&gt;
==== Modify User (Update password and name) ====&lt;br /&gt;
Once in the User Management Screen:&lt;br /&gt;
[[File:Edit user.png|none|thumb]]&lt;br /&gt;
# Find the user&lt;br /&gt;
# Click '''EDIT''' or '''CHANGE PASSWORD'''&lt;br /&gt;
To '''DELETE''' the user, click DELETE, this will lock access, remove emails, and sever connection to the Cougar Cloud. This cannot be undone easily, so avoid this action unless absolutely sure it's what you want and have all the info you need backed up.&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=File:Edit_user.png&amp;diff=1864</id>
		<title>File:Edit user.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=File:Edit_user.png&amp;diff=1864"/>
				<updated>2018-03-12T17:05:38Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Edit user&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=File:CPanel_Email.png&amp;diff=1863</id>
		<title>File:CPanel Email.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=File:CPanel_Email.png&amp;diff=1863"/>
				<updated>2018-03-12T17:03:36Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;email toggle&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	<entry>
		<id>http://wiki.ssdcougars.tv/index.php?title=File:UserManager.png&amp;diff=1862</id>
		<title>File:UserManager.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.ssdcougars.tv/index.php?title=File:UserManager.png&amp;diff=1862"/>
				<updated>2018-03-12T17:02:46Z</updated>
		
		<summary type="html">&lt;p&gt;Setvadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;User manager&lt;/div&gt;</summary>
		<author><name>Setvadmin</name></author>	</entry>

	</feed>