<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.24pin.tech/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=KWahl</id>
	<title>24PinTech Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.24pin.tech/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=KWahl"/>
	<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/view/Special:Contributions/KWahl"/>
	<updated>2026-05-08T13:17:34Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=WordPress&amp;diff=1096</id>
		<title>WordPress</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=WordPress&amp;diff=1096"/>
		<updated>2021-01-14T21:59:32Z</updated>

		<summary type="html">&lt;p&gt;KWahl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
[[File:Wp-admin.png|thumb|screenshot of the WordPress admin dashboard]]&lt;br /&gt;
[https://wordpress.org/ WordPress] is a content management system (CMS) that is functions primarily serve our [http://24pin.tech/ homepage] to users that would like to get help or discover more about the program. It's a very powerful platform that grants administrators creative freedom over whatever they want on their website.&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
The installation for WordPress is really simple. All you have to do is download the compressed file for the installation and extract it in the directory that you'd want to install it to. You can either download it from their [https://wordpress.org/download/ website here] or alternatively you can download it using &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt;. The command would be &amp;lt;code&amp;gt;sudo wget &amp;lt;nowiki&amp;gt;https://wordpress.org/latest.tar.gz&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on UNIX systems (if you're using aptitude for your package manager.) Once you've downloaded the file, run &amp;lt;code&amp;gt;sudo tar -xzvf latest.tar.gz&amp;lt;/code&amp;gt; to extract it.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
Once you've downloaded and extracted the file, visit your web server to continue with the installation process. From here you must create a Database for WordPress, we use MySQL the instructions for creating a database within MySQL goes as follows. &lt;br /&gt;
&lt;br /&gt;
===Accessing MySQL===&lt;br /&gt;
First of all log onto your webserver. (Logan is 24PinTech's webserver)&lt;br /&gt;
&lt;br /&gt;
Once in the webserver and you have access to the command line use this command to go into the MySQL command prompt &amp;lt;code&amp;gt;mysql -u &amp;lt;admin username&amp;gt; -p&amp;lt;/code&amp;gt; then type in the password associated with your admin user. Upon success you should see a prompt that looks like such:&lt;br /&gt;
 Welcome to MySQL monitor. Commands end with ; or \g.                                      Your MySQL connection id is 5340 to server version: 3.23.54                                  .                                                                                         Type 'help;' or '\h' for help. Type '\c' to clear the buffer.&lt;br /&gt;
Run the following commands to create the database, &amp;lt;code&amp;gt;CREATE DATABASE &amp;lt;database name&amp;gt;;&amp;lt;/code&amp;gt; then, &amp;lt;code&amp;gt;GRANT ALL PRIVLEGES ON &amp;lt;database name&amp;gt;.* TO &amp;quot;&amp;lt;wordpress username&amp;gt;&amp;quot;@&amp;quot;&amp;lt;host name&amp;gt;&amp;quot;&amp;lt;/code&amp;gt; Replace wordpress username and host name with the desired names. Do the same when it asks for a password. &lt;br /&gt;
&lt;br /&gt;
To finish the creation of the database run these two commands &amp;lt;code&amp;gt;FLUSH PRIVILEGES;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;EXIT;&amp;lt;/code&amp;gt;then the MySQL monitor will personally say bye to you.&lt;br /&gt;
&lt;br /&gt;
===Setting up the wp-config.php file===&lt;br /&gt;
You can either create and edit the &amp;lt;code&amp;gt;wp-config.php&amp;lt;/code&amp;gt; file yourself, or you can skip this step and let WordPress try to do this itself when you run the installation script. (not recommended) &lt;br /&gt;
&lt;br /&gt;
Follow these instructions if you wish to edit the file manually. Navigate to your domain's home directory then copy the &amp;lt;code&amp;gt;wp-config-sample.php&amp;lt;/code&amp;gt;file and rename the copy to &amp;lt;code&amp;gt;wp-config.php&amp;lt;/code&amp;gt; You can do this using the &amp;lt;code&amp;gt;cp&amp;lt;/code&amp;gt; command within Linux, or running &amp;lt;code&amp;gt;sudo cp wp-config-sample.php wp-config.php&amp;lt;/code&amp;gt; in your domain's home directory. Edit it using &amp;lt;code&amp;gt;sudo vim wp-config.php&amp;lt;/code&amp;gt; press &amp;lt;code&amp;gt;i&amp;lt;/code&amp;gt; to enter insert mode and change the following values. &amp;lt;blockquote&amp;gt;'''DB_NAME''' use the name of your database&amp;lt;/blockquote&amp;gt;&amp;lt;blockquote&amp;gt;'''DB_USER''' use the username of your database&amp;lt;/blockquote&amp;gt;&amp;lt;blockquote&amp;gt;'''DB_PASSWORD''' use the password of your database&amp;lt;/blockquote&amp;gt;&amp;lt;blockquote&amp;gt;'''DB_HOST''' use the hostname you determined for your database, whish is usually &amp;lt;code&amp;gt;localhost&amp;lt;/code&amp;gt;&amp;lt;/blockquote&amp;gt;Then you must enter your secret key values. (good luck) To get your secret key values visit this website [https://api.wordpress.org/secret-key/1.1/salt/ here] then go down to where the website matches the file. Enter your 8 unique keys by hand, make sure each character matches exactly, and you use the correct key for the correct slot. ie. &amp;lt;code&amp;gt;AUTH_KEY&amp;lt;/code&amp;gt; goes with &amp;lt;code&amp;gt;AUTH_KEY&amp;lt;/code&amp;gt; etc. &lt;br /&gt;
&lt;br /&gt;
'''SAVE SAVE SAVE PLEASE''', you should also save while you are editing the file periodically. Save by pressing &amp;lt;code&amp;gt;esc&amp;lt;/code&amp;gt; then typing &amp;lt;code&amp;gt;:w&amp;lt;/code&amp;gt; and exit by pressing &amp;lt;code&amp;gt;esc&amp;lt;/code&amp;gt; and typing &amp;lt;code&amp;gt;:q&amp;lt;/code&amp;gt; , alternatively you can save and exit by pressing &amp;lt;code&amp;gt;esc&amp;lt;/code&amp;gt; and typing &amp;lt;code&amp;gt;:wq&amp;lt;/code&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
===Finishing Up===&lt;br /&gt;
You might have to move all of your WordPress files out of the WordPress directory into your domain's home directory. Do this with the &amp;lt;code&amp;gt;mv&amp;lt;/code&amp;gt; command ie. &amp;lt;code&amp;gt;sudo mv wp-config.php /var/www/example.ms&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Visit your webpage to finish the WordPress installation and to make a WordPress account.  &lt;br /&gt;
&lt;br /&gt;
====Links For Extra Explanations====&lt;br /&gt;
[https://wordpress.org/support/article/how-to-install-wordpress/#step-3-set-up-wp-config-php Installing WordPress]&lt;br /&gt;
&lt;br /&gt;
[https://wordpress.org/support/article/creating-database-for-wordpress/ Creating a Database for WordPress]&lt;br /&gt;
&lt;br /&gt;
==Management==&lt;br /&gt;
WordPress was created with the user's experience in mind. The dashboard is very intuitive, and the community is large enough to have answers to most questions/problems. In order to manage a WordPress powered website, you need to use the admin dashboard. In order to get to it, go to the WordPress installation's root directory and then navigate to the &amp;lt;code&amp;gt;/wp-admin&amp;lt;/code&amp;gt; directory (i.e. website.com/wp-admin). From there, you can edit posts, the theme, pages, plugins, and more. If you don't know how to do something, Google it! The WordPress community has been around since 2003, so your question has most likely been asked and answered before.&lt;br /&gt;
&lt;br /&gt;
===Logging In===&lt;br /&gt;
In order to log into WordPress, go to website.com'''/wp-admin''' (replace website.com with your domain).&lt;br /&gt;
[[File:W1.png|left|frameless|208x208px|screenshot of the login page]]&lt;br /&gt;
&lt;br /&gt;
[[File:W2.png|left|thumb|150x150px|the ''Users'' tab on the sidebar in the dashboard]]&lt;br /&gt;
&lt;br /&gt;
===Creating Accounts===&lt;br /&gt;
If you need to create an account, go to '''Users → Add New''' from the WordPress dashboard. From there, fill out all of the information for the new account and press the ''Add New User'' button.&lt;br /&gt;
&lt;br /&gt;
If you need to edit any of the users (change username, reset password, etc), navigate to '''Users → All Users''' and click on the one that you need to modify.&lt;br /&gt;
&lt;br /&gt;
===Adding Menu Items===&lt;br /&gt;
Before you can add an item to your primary menu, you need to have a new (or preexisting) page. If you need to create one, go to '''Pages → Add New''' and create it. Once it's created, navigate to '''Appearance → Menus''' and draw your attention to the ''Add Menu Items'' section. Find your new page in the list and click on the checkbox and click ''Add To Menu''.&lt;br /&gt;
[[File:W3.png|left|thumb|204x204px|adding an item to the ''Menu structure'' section]]&lt;br /&gt;
&lt;br /&gt;
===Editing Page Contents===&lt;br /&gt;
lksjdfladsjf&lt;br /&gt;
[[File:W4.png|left|thumb|what it should look like when trying to create a dropdown menu]]&lt;br /&gt;
&lt;br /&gt;
===Adding/Modifying Themes===&lt;br /&gt;
adfadfasdf&lt;br /&gt;
&lt;br /&gt;
===Uploading Images===&lt;br /&gt;
ldkfjalkdfj&lt;br /&gt;
&lt;br /&gt;
==Troubleshooting==&lt;br /&gt;
f after an installation you get prompted for FTP credentials, add the following line to the wp-config.php file in the directory that WordPress was installed &lt;br /&gt;
 define(“FS_METHOD”, “direct”);&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=WordPress&amp;diff=1095</id>
		<title>WordPress</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=WordPress&amp;diff=1095"/>
		<updated>2020-12-31T21:11:47Z</updated>

		<summary type="html">&lt;p&gt;KWahl: Added a better explanation on how to install WordPress ps. stinky Tyler :P&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
[[File:Wp-admin.png|thumb|screenshot of the WordPress admin dashboard]]&lt;br /&gt;
[https://wordpress.org/ WordPress] is a content management system (CMS) that is functions primarily serve our [http://24pin.tech/ homepage] to users that would like to get help or discover more about the program. It's a very powerful platform that grants administrators creative freedom over whatever they want on their website.&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
The installation for WordPress is really simple. All you have to do is download the compressed file for the installation and extract it in the directory that you'd want to install it to. You can either download it from their [https://wordpress.org/download/ website here] or alternatively you can download it using &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt;. The command would be &amp;lt;code&amp;gt;sudo wget &amp;lt;nowiki&amp;gt;https://wordpress.org/latest.tar.gz&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on UNIX systems (if you're using aptitude for your package manager.) Once you've downloaded the file, run &amp;lt;code&amp;gt;sudo tar -xzvf latest.tar.gz&amp;lt;/code&amp;gt; to extract it.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
Once you've downloaded and extracted the file, visit your web server to continue with the installation process. From here you must create a Database for WordPress, we use MySQL the instructions for creating a database within MySQL goes as follows. &lt;br /&gt;
&lt;br /&gt;
=== Accessing MySQL ===&lt;br /&gt;
First of all log onto your webserver. (Logan is 24PinTech's webserver)&lt;br /&gt;
&lt;br /&gt;
Once in the webserver and you have access to the command line use this command to go into the MySQL command prompt &amp;lt;code&amp;gt;mysql -u &amp;lt;admin username&amp;gt; -p&amp;lt;/code&amp;gt; then type in the password associated with your admin user. Upon success you should see a prompt that looks like such:&lt;br /&gt;
 Welcome to MySQL monitor. Commands end with ; or \g.                                      Your MySQL connection id is 5340 to server version: 3.23.54                                  .                                                                                         Type 'help;' or '\h' for help. Type '\c' to clear the buffer.&lt;br /&gt;
Run the following commands to create the database, &amp;lt;code&amp;gt;CREATE DATABASE &amp;lt;database name&amp;gt;;&amp;lt;/code&amp;gt; then, &amp;lt;code&amp;gt;GRANT ALL PRIVLEGES ON &amp;lt;database name&amp;gt;.* TO &amp;quot;&amp;lt;wordpress username&amp;gt;&amp;quot;@&amp;quot;&amp;lt;host name&amp;gt;&amp;quot;&amp;lt;/code&amp;gt; Replace wordpress username and host name with the desired names. Do the same when it asks for a password. &lt;br /&gt;
&lt;br /&gt;
To finish the creation of the database run these two commands &amp;lt;code&amp;gt;FLUSH PRIVILEGES;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;EXIT&amp;lt;/code&amp;gt;then the MySQL monitor will personally say bye to you.&lt;br /&gt;
&lt;br /&gt;
=== Setting up the wp-config.php file ===&lt;br /&gt;
You can either create and edit the &amp;lt;code&amp;gt;wp-config.php&amp;lt;/code&amp;gt; file yourself, or you can skip this step and let WordPress try to do this itself when you run the installation script. (not recommended) &lt;br /&gt;
&lt;br /&gt;
Follow these instructions if you wish to edit the file manually. Navigate to your domain's home directory then copy the &amp;lt;code&amp;gt;wp-config-sample.php&amp;lt;/code&amp;gt;file and rename the copy to &amp;lt;code&amp;gt;wp-config.php&amp;lt;/code&amp;gt; You can do this using the &amp;lt;code&amp;gt;cp&amp;lt;/code&amp;gt; command within Linux, or running &amp;lt;code&amp;gt;sudo cp wp-config-sample.php wp-config.php&amp;lt;/code&amp;gt; in your domain's home directory. Edit it using &amp;lt;code&amp;gt;sudo vim wp-config.php&amp;lt;/code&amp;gt; press &amp;lt;code&amp;gt;i&amp;lt;/code&amp;gt; to enter insert mode and change the following values. &amp;lt;blockquote&amp;gt;'''DB_NAME''' use the name of your database&amp;lt;/blockquote&amp;gt;&amp;lt;blockquote&amp;gt;'''DB_USER''' use the username of your database&amp;lt;/blockquote&amp;gt;&amp;lt;blockquote&amp;gt;'''DB_PASSWORD''' use the password of your database&amp;lt;/blockquote&amp;gt;&amp;lt;blockquote&amp;gt;'''DB_HOST''' use the hostname you determined for your database, whish is usually &amp;lt;code&amp;gt;localhost&amp;lt;/code&amp;gt;&amp;lt;/blockquote&amp;gt;Then you must enter your secret key values. (good luck) To get your secret key values visit this website [https://api.wordpress.org/secret-key/1.1/salt/ here] then go down to where the website matches the file. Enter your 8 unique keys by hand, make sure each character matches exactly, and you use the correct key for the correct slot. ie. &amp;lt;code&amp;gt;AUTH_KEY&amp;lt;/code&amp;gt; goes with &amp;lt;code&amp;gt;AUTH_KEY&amp;lt;/code&amp;gt; etc. &lt;br /&gt;
&lt;br /&gt;
'''SAVE SAVE SAVE PLEASE''', you should also save while you are editing the file periodically. Save by pressing &amp;lt;code&amp;gt;esc&amp;lt;/code&amp;gt; then typing &amp;lt;code&amp;gt;:w&amp;lt;/code&amp;gt; and exit by pressing &amp;lt;code&amp;gt;esc&amp;lt;/code&amp;gt; and typing &amp;lt;code&amp;gt;:q&amp;lt;/code&amp;gt; , alternatively you can save and exit by pressing &amp;lt;code&amp;gt;esc&amp;lt;/code&amp;gt; and typing &amp;lt;code&amp;gt;:wq&amp;lt;/code&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
=== Finishing Up ===&lt;br /&gt;
You might have to move all of your WordPress files out of the WordPress directory into your domain's home directory. Do this with the &amp;lt;code&amp;gt;mv&amp;lt;/code&amp;gt; command ie. &amp;lt;code&amp;gt;sudo mv wp-config.php /var/www/example.ms&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Visit your webpage to finish the WordPress installation and to make a WordPress account.  &lt;br /&gt;
&lt;br /&gt;
==== Links For Extra Explanations ====&lt;br /&gt;
[https://wordpress.org/support/article/how-to-install-wordpress/#step-3-set-up-wp-config-php Installing WordPress]&lt;br /&gt;
&lt;br /&gt;
[https://wordpress.org/support/article/creating-database-for-wordpress/ Creating a Database for WordPress]&lt;br /&gt;
&lt;br /&gt;
==Management==&lt;br /&gt;
WordPress was created with the user's experience in mind. The dashboard is very intuitive, and the community is large enough to have answers to most questions/problems. In order to manage a WordPress powered website, you need to use the admin dashboard. In order to get to it, go to the WordPress installation's root directory and then navigate to the &amp;lt;code&amp;gt;/wp-admin&amp;lt;/code&amp;gt; directory (i.e. website.com/wp-admin). From there, you can edit posts, the theme, pages, plugins, and more. If you don't know how to do something, Google it! The WordPress community has been around since 2003, so your question has most likely been asked and answered before.&lt;br /&gt;
&lt;br /&gt;
===Logging In===&lt;br /&gt;
In order to log into WordPress, go to website.com'''/wp-admin''' (replace website.com with your domain).&lt;br /&gt;
[[File:W1.png|left|frameless|208x208px|screenshot of the login page]]&lt;br /&gt;
&lt;br /&gt;
[[File:W2.png|left|thumb|150x150px|the ''Users'' tab on the sidebar in the dashboard]]&lt;br /&gt;
&lt;br /&gt;
===Creating Accounts===&lt;br /&gt;
If you need to create an account, go to '''Users → Add New''' from the WordPress dashboard. From there, fill out all of the information for the new account and press the ''Add New User'' button.&lt;br /&gt;
&lt;br /&gt;
If you need to edit any of the users (change username, reset password, etc), navigate to '''Users → All Users''' and click on the one that you need to modify.&lt;br /&gt;
&lt;br /&gt;
===Adding Menu Items===&lt;br /&gt;
Before you can add an item to your primary menu, you need to have a new (or preexisting) page. If you need to create one, go to '''Pages → Add New''' and create it. Once it's created, navigate to '''Appearance → Menus''' and draw your attention to the ''Add Menu Items'' section. Find your new page in the list and click on the checkbox and click ''Add To Menu''.&lt;br /&gt;
[[File:W3.png|left|thumb|204x204px|adding an item to the ''Menu structure'' section]]&lt;br /&gt;
&lt;br /&gt;
===Editing Page Contents===&lt;br /&gt;
lksjdfladsjf&lt;br /&gt;
[[File:W4.png|left|thumb|what it should look like when trying to create a dropdown menu]]&lt;br /&gt;
&lt;br /&gt;
===Adding/Modifying Themes===&lt;br /&gt;
adfadfasdf&lt;br /&gt;
&lt;br /&gt;
===Uploading Images===&lt;br /&gt;
ldkfjalkdfj&lt;br /&gt;
&lt;br /&gt;
==Troubleshooting==&lt;br /&gt;
f after an installation you get prompted for FTP credentials, add the following line to the wp-config.php file in the directory that WordPress was installed &lt;br /&gt;
 define(“FS_METHOD”, “direct”);&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=Nginx&amp;diff=1092</id>
		<title>Nginx</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=Nginx&amp;diff=1092"/>
		<updated>2020-12-31T18:40:34Z</updated>

		<summary type="html">&lt;p&gt;KWahl: fixed Tyler's very rare mistakes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About==&lt;br /&gt;
Nginx (pronounced engine-x) is web server which can also be used  proxy, load balancer, mail proxy and HTTP cache. It's also a modern alternative to something like Apache, IIS, or Caddy.&lt;br /&gt;
&lt;br /&gt;
==Prerequisites==&lt;br /&gt;
An nginx installation should be pretty accessible regardless of your OS. This guide is specifically written for Ubuntu Server 18.04 LTS, but should work on any other type of Unix operating system. The setup that we're using is commonly referred to as a LEMP stack (Linux, nginx, MySQL, PHP.)&lt;br /&gt;
&lt;br /&gt;
*nginx/1.14.0 (Ubuntu)&lt;br /&gt;
*PHP 7.2.10-0ubuntu0.18.04.1 (cli)&lt;br /&gt;
*MySQL v14.14 Distribution 5.7.24&lt;br /&gt;
&lt;br /&gt;
If you've just installed a new operating system, you'll want to update your local package index by running &amp;lt;code&amp;gt;sudo apt-get update&amp;lt;/code&amp;gt;, and then add the Universe repository by running &amp;lt;code&amp;gt;sudo apt-add-repository universe&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Installing nginx==&lt;br /&gt;
To start, you're going to want to install nginx using the aptitude package manager. You can do this by running &amp;lt;code&amp;gt;sudo apt-get install nginx&amp;lt;/code&amp;gt;. Once you run that, you'll want to go through the configuration prompt that appears.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
After nginx and its subsequent dependencies have finished installing, you'll want to let it through the firewall by running &amp;lt;code&amp;gt;sudo ufw allow 'Nginx HTTP'&amp;lt;/code&amp;gt;. Check what your current IP is by running &amp;lt;code&amp;gt;ifconfig&amp;lt;/code&amp;gt;, and then look for whatever interface looks correct. In this instance, the proper interface is &amp;lt;code&amp;gt;eth0&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
[[File:Ifconfig-example.png|left|frame|an example of the results from ifconfig]]&lt;br /&gt;
After running the command, the first indented line should say '''''inet''''' and then an IP address afterwards. Verify functionality of nginx by going to your web browser and typing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://{ip}/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; where &amp;lt;code&amp;gt;{ip}&amp;lt;/code&amp;gt; is what follows after '''''inet'''''.&lt;br /&gt;
&lt;br /&gt;
If the default nginx page displays, continue to the next section.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
==Installing MySQL==&lt;br /&gt;
The process of installing MySQL is fairly similar to installing nginx, although MySQL does require a little bit of configuration before it will function properly. Start off by running &amp;lt;code&amp;gt;sudo apt-get install mysql-server&amp;lt;/code&amp;gt;, and then once it finishes run the setup script by typing &amp;lt;code&amp;gt;sudo mysql_secure_installation&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
The first thing that the installations script will ask you is if you'd like to enable the &amp;lt;code&amp;gt;VALIDATE PASSWORD PLUGIN&amp;lt;/code&amp;gt;, but don't. If you don't care about why, then skip to the next paragraph, but if you do, keep reading. Essentially, the plugin throws errors if passwords don't meet specific criteria. This causes issues if you either a.) use weak passwords, or b.) install a package that automatically compiles and creates a default account with basic credentials. '''It is always good practice to use strong passwords for everything, and database credentials are no exception.'''&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
Say yes to the rest of the questions and use good judgement if it asks something that requires anything other than a Y/N input.&lt;br /&gt;
&lt;br /&gt;
==Installing PHP==&lt;br /&gt;
Again, installing PHP is very similar to two sections preceding this one. Start off by installing the &amp;lt;code&amp;gt;php-fpm&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;php-mysql&amp;lt;/code&amp;gt; packages by running &amp;lt;code&amp;gt;sudo apt-get install php-fpm php-mysql&amp;lt;/code&amp;gt;. After it installs, you'll want to edit &amp;lt;code&amp;gt;php.ini&amp;lt;/code&amp;gt; by running &amp;lt;code&amp;gt;sudo vim /etc/php/7.2/fpm/php.ini&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
'''''Note:''' If the file isn't found, check'' the directory path by using the &amp;lt;code&amp;gt;cd&amp;lt;/code&amp;gt; command and seeing where something doesn't exist.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
If you're using Vim, type a &amp;lt;code&amp;gt;?&amp;lt;/code&amp;gt; and search for &amp;lt;code&amp;gt;cgi.fix_pathinfo&amp;lt;/code&amp;gt;. You should be taken to a line that's commented out and says &amp;lt;code&amp;gt;;cgi.fix_pathinfo=0&amp;lt;/code&amp;gt; or something similar. Press the &amp;lt;code&amp;gt;i&amp;lt;/code&amp;gt; key to start editing and remove the &amp;lt;code&amp;gt;;&amp;lt;/code&amp;gt; to uncomment it. If the variable is set to 1, change it to 0. Press the &amp;lt;code&amp;gt;escape&amp;lt;/code&amp;gt; key and type &amp;lt;code&amp;gt;:wq&amp;lt;/code&amp;gt; to save and quit your changes. If you didn't run Vim as a superuser (if you didn't run the command with &amp;lt;code&amp;gt;sudo&amp;lt;/code&amp;gt;), it will throw and error and the file won't save.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
Once the file saves, run &amp;lt;code&amp;gt;sudo systemctl restart php7.2-fpm&amp;lt;/code&amp;gt; to restart PHP.&lt;br /&gt;
&lt;br /&gt;
==Configuring nginx==&lt;br /&gt;
The configuration for nginx is a little different compared to anything you might be used to. To start, there are two directories: &amp;lt;code&amp;gt;sites-available&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;sites-enabled&amp;lt;/code&amp;gt;. The former directory actually contains the configuration files, while the latter contains symbolic links to the configuration files and enables them.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
To start, lets say that we wanted to configure our nginx server to work with the domain &amp;lt;code&amp;gt;example.ms&amp;lt;/code&amp;gt;. First, we'd want to verify that the directory &amp;lt;code&amp;gt;/var/www/example.ms&amp;lt;/code&amp;gt; exists. Move to the &amp;lt;code&amp;gt;sites-available&amp;lt;/code&amp;gt; directory by entering the command &amp;lt;code&amp;gt;cd /etc/nginx/sites-available&amp;lt;/code&amp;gt;. Next, you'll want to create a new configuration file with the name of the domain. You can either by running &amp;lt;code&amp;gt;sudo touch example.ms &amp;amp;&amp;amp; sudo vim example.ms&amp;lt;/code&amp;gt; or simply by running &amp;lt;code&amp;gt;sudo vim example.ms&amp;lt;/code&amp;gt; since Vim creates the file if it doesn't exist. Again, press &amp;lt;code&amp;gt;i&amp;lt;/code&amp;gt; to edit the file. Once you're in edit mode, you'll want the contents to look something like this:&amp;lt;pre&amp;gt;&lt;br /&gt;
server {&lt;br /&gt;
     listen 80;&lt;br /&gt;
     listen [::]:80;&lt;br /&gt;
&lt;br /&gt;
     # this is a comment! you don't have to include this, but if you're not&lt;br /&gt;
     # going to be using a domain, then you can replace it with an IP&lt;br /&gt;
     server_name example.ms;&lt;br /&gt;
&lt;br /&gt;
     root /var/www/example.ms;&lt;br /&gt;
     index index.php index.html index.htm;&lt;br /&gt;
&lt;br /&gt;
     location = /favicon.io {&lt;br /&gt;
          log_not_found off;&lt;br /&gt;
          access_log off;&lt;br /&gt;
     }&lt;br /&gt;
&lt;br /&gt;
     location = /robots.txt {&lt;br /&gt;
          allow all;&lt;br /&gt;
          log_not_found off;&lt;br /&gt;
          access_log off;&lt;br /&gt;
     }&lt;br /&gt;
&lt;br /&gt;
     location / {&lt;br /&gt;
          try_files $uri $uri/ /index.php$args;&lt;br /&gt;
     }&lt;br /&gt;
&lt;br /&gt;
     location ~ \.php$ {&lt;br /&gt;
          include snippets/fastcgi-php.conf;&lt;br /&gt;
          fastcgi_intercept_errors on;&lt;br /&gt;
          fastcgi_pass unix:/run/php/php7.2-fpm.sock;&lt;br /&gt;
     }&lt;br /&gt;
&lt;br /&gt;
     location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {&lt;br /&gt;
          expires max;&lt;br /&gt;
          log_not_found off;&lt;br /&gt;
     }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;'''''Tip:''' You can periodically save your configuration file by pressing &amp;lt;code&amp;gt;escape&amp;lt;/code&amp;gt;, typing &amp;lt;code&amp;gt;:w&amp;lt;/code&amp;gt; , and then pressing &amp;lt;code&amp;gt;i&amp;lt;/code&amp;gt; again to edit the file.''&lt;br /&gt;
&lt;br /&gt;
''.''&lt;br /&gt;
&lt;br /&gt;
Once you're completely done editing, save and quit the file by pressing the escape key and typing &amp;lt;code&amp;gt;:wq&amp;lt;/code&amp;gt;. Finally, you can check your configuration file for errors by running &amp;lt;code&amp;gt;sudo nginx -t&amp;lt;/code&amp;gt;. If there are any errors, refer back to your configuration file and see where you went wrong. In the event that nginx threw an error, review your configuration file and look for any missing &amp;lt;code&amp;gt;{&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;}&amp;lt;/code&amp;gt;, or &amp;lt;code&amp;gt;;&amp;lt;/code&amp;gt;. Every line that doesn't have curly brackets should end in a semicolon, which is probably the issue. If that isn't, then refer to your favorite search engine and start researching.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
If nothing went wrong, and your configuration file is completely free of errors, run &amp;lt;code&amp;gt;cd ../sites-enabled&amp;lt;/code&amp;gt; to move to the sites-enabled directory. Finally, to enable your website, run &amp;lt;code&amp;gt;sudo ln -s /etc/nginx/sites-available/example.ms ./&amp;lt;/code&amp;gt; to create the symbolic link to your configuration file, and then run &amp;lt;code&amp;gt;sudo systemctl restart nginx&amp;lt;/code&amp;gt; to restart nginx and make your changes go live.&lt;br /&gt;
&lt;br /&gt;
==Verifying Functionality==&lt;br /&gt;
Of course, you'll want to make sure that everything you just did actually works. Run &amp;lt;code&amp;gt;cd /var/www/example.ms &amp;amp;&amp;amp; sudo vim info.php&amp;lt;/code&amp;gt; to move to your websites home directory and create the file &amp;lt;code&amp;gt;info.php&amp;lt;/code&amp;gt;. Inside of the file, type the following:&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
     phpinfo();&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;... and then save and quit the file by pressing &amp;lt;code&amp;gt;escape&amp;lt;/code&amp;gt; and typing &amp;lt;code&amp;gt;:wq&amp;lt;/code&amp;gt;. Now, go to &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://example.ms/info.php&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. If you didn't configure the nameservers for your domain to point to your new nginx server, then just replace the domain name with the IP of the server (refer to the &amp;lt;code&amp;gt;ifconfig&amp;lt;/code&amp;gt; part of the [[Nginx#Installing nginx|Installing nginx]] section if you don't know how.)&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
If everything worked properly, you should see a PHP information page with a bunch of library authors and enabled modules. If it doesn't, research!&lt;br /&gt;
&lt;br /&gt;
==Subdomains==&lt;br /&gt;
Adding subdomains is really easy and doesn't require a lot of effort. You'll just need to remember the general process from the [[Nginx#Configuring nginx|Configuring nginx]] section.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
To start, navigate to the &amp;lt;code&amp;gt;sites-available&amp;lt;/code&amp;gt; directory by running  &amp;lt;code&amp;gt;cd /etc/nginx/sites-available&amp;lt;/code&amp;gt;. Then, you can either copy a pre-existing configuration by running &amp;lt;code&amp;gt;sudo cp example.ms subdomain.example.ms&amp;lt;/code&amp;gt; or creating a new file by running &amp;lt;code&amp;gt;sudo vim subdomain.example.ms&amp;lt;/code&amp;gt;. If you copied it, edit the file by running &amp;lt;code&amp;gt;sudo vim subdomain.example.ms&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===What needs to be changed===&lt;br /&gt;
The only important things that need to be changed are the &amp;lt;code&amp;gt;root&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;server_name&amp;lt;/code&amp;gt; variables. Press &amp;lt;code&amp;gt;i&amp;lt;/code&amp;gt; to start editing the file in Vim, and then find where the variables are located. Change the &amp;lt;code&amp;gt;root&amp;lt;/code&amp;gt; variable to an updated path where the contents for the subdomain can be found. Generally, good practice for this is to create a new folder in the primary domains path with the name of the subdomain. So, if we were trying to create &amp;lt;code&amp;gt;subdomain.example.ms&amp;lt;/code&amp;gt;, we'd create a new folder by running the command  &amp;lt;code&amp;gt;sudo mkdir /var/www/example.ms/subdomain&amp;lt;/code&amp;gt;. Then, we'd modify our &amp;lt;code&amp;gt;root&amp;lt;/code&amp;gt; variable to look something like this:&amp;lt;pre&amp;gt;&lt;br /&gt;
# before&lt;br /&gt;
root /var/www/example.ms;&lt;br /&gt;
&lt;br /&gt;
# after&lt;br /&gt;
root /var/www/example.ms/subdomain;&lt;br /&gt;
&amp;lt;/pre&amp;gt;The &amp;lt;code&amp;gt;server_name&amp;lt;/code&amp;gt; variable is just as simple. Just add the subdomain prefix to the beginning of your domain:&lt;br /&gt;
 # before&lt;br /&gt;
 server_name example.ms;&lt;br /&gt;
 &lt;br /&gt;
 # after&lt;br /&gt;
 server_name subdomain.example.ms;&lt;br /&gt;
Once you've made the proper changes, save and quit the file by pressing &amp;lt;code&amp;gt;escape&amp;lt;/code&amp;gt; and typing &amp;lt;code&amp;gt;:wq&amp;lt;/code&amp;gt;. Then, run &amp;lt;code&amp;gt;cd ../sites-enabled &amp;amp;&amp;amp; sudo ln -s /etc/nginx/sites-available/subdomain.example.ms ./&amp;lt;/code&amp;gt; and restart nginx by running &amp;lt;code&amp;gt;sudo systemctl restart nginx&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Adding other domains (that aren't subdomains)==&lt;br /&gt;
The process is exactly the same as adding a subdomain, except instead of adding a prefix the value of &amp;lt;code&amp;gt;server_name&amp;lt;/code&amp;gt; you'll just completely change the domain. Again, don't forget to create the symbolic link to the configuration file and ''especially'' don't forget to restart nginx after saving the config/creating the symbolic link. When you're creating the folder to contain the contents for the server, create a new folder that has the name of the domain. So, for instance, if I was creating example2.ms, I'd run &amp;lt;code&amp;gt;sudo mkdir /var/www/example2.ms&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Conclusion==&lt;br /&gt;
By now, your nginx server should be up and fully operational. As always, if you're having any issues please STFW before you ask people for advice!&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
Thank you,&lt;br /&gt;
&lt;br /&gt;
- Tyler&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=DHCP&amp;diff=1072</id>
		<title>DHCP</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=DHCP&amp;diff=1072"/>
		<updated>2020-02-20T20:09:05Z</updated>

		<summary type="html">&lt;p&gt;KWahl: added freyrweb&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Our DHCP Setup=&lt;br /&gt;
&lt;br /&gt;
Our DHCP is run on [[Loki]] mainly, but [[Logan]] is on hot standby. DHCP is what gives out the IP addresses to the devices on our network. Without it, we would have to use static IP addresses, or we would not be able to communicate properly. Both of the servers keep each other synced on what IP addresses have been given out to ensure there are no conflicts.&lt;br /&gt;
&lt;br /&gt;
==Address Pool==&lt;br /&gt;
&lt;br /&gt;
Our scope is 10.21.25.0, as that is our network. The DHCP server only distributes addresses in from 10.21.25.20 to 10.21.25.247. The rest in the network are reserved for servers and printers, or anything else that needs a static IP.  The following chart represents our current setup...&lt;br /&gt;
&lt;br /&gt;
===Hostname                   IP address===&lt;br /&gt;
Gateway                              10.21.25.1&lt;br /&gt;
&lt;br /&gt;
Surtr                                     10.21.25.2&lt;br /&gt;
&lt;br /&gt;
Loki (PDC)                           10.21.25.3&lt;br /&gt;
&lt;br /&gt;
Fog                                      10.21.25.4&lt;br /&gt;
&lt;br /&gt;
Freyr                                    10.21.25.5&lt;br /&gt;
&lt;br /&gt;
MacMini                               10.21.25.6&lt;br /&gt;
&lt;br /&gt;
MediaXserve                        10.21.25.7&lt;br /&gt;
&lt;br /&gt;
Heimdall (ESXI VM's)          10.21.25.8&lt;br /&gt;
&lt;br /&gt;
FreyrWeb (VM on Freyr)      10.21.25.9&lt;br /&gt;
&lt;br /&gt;
Logan (BDC)                       10.21.25.10&lt;br /&gt;
&lt;br /&gt;
LoganWeb (VM on Logan)  10.21.25.11&lt;br /&gt;
&lt;br /&gt;
Macmini Backup                  10.21.25.15&lt;br /&gt;
&lt;br /&gt;
NAS 24PinTech                   10.21.25.16&lt;br /&gt;
&lt;br /&gt;
Perle IOLAN Console Serv  10.21.25.17&lt;br /&gt;
&lt;br /&gt;
Opengear                            10.21.25.18&lt;br /&gt;
&lt;br /&gt;
==Address Leases==&lt;br /&gt;
&lt;br /&gt;
These are all of the current DHCP releases that the DHCP servers have put out that are active.&lt;br /&gt;
&lt;br /&gt;
==Reservations==&lt;br /&gt;
&lt;br /&gt;
This is where all of our static DHCP-side reservations for our servers, printers, NAS, etc., are located. You can double click any of them to edit their specific settings.&lt;br /&gt;
&lt;br /&gt;
==Scope Options==&lt;br /&gt;
&lt;br /&gt;
This is where we configure our DHCP options. To configure options that we don't already have set, right click &amp;quot;Scope Options&amp;quot; and click on &amp;quot;Configure Options&amp;quot; and configure what you need. Below are the options we already have set:&lt;br /&gt;
&lt;br /&gt;
[[File:DHCP_Options.PNG]]&lt;br /&gt;
&lt;br /&gt;
These options set where the computers will look for DNS, what our domain name is ([[CISCOACA.local]]) and the other options tell computers to PXE boot from [[FOG]] and configures the settings they need to boot from [[FOG]].&lt;br /&gt;
&lt;br /&gt;
==Policies==&lt;br /&gt;
&lt;br /&gt;
These are settings that are applied to certain devices based off of rules defined by the policy, like IP address range, vendor, etc.&lt;br /&gt;
&lt;br /&gt;
The only policy we have currently configured is called UEFI, which applies to network booting via UEFI. It sets options 66 and 67 to make sure devices will boot properly off of [[FOG]]. 67 is set to ipxe.efi, and 66 is set to 10.21.25.4.&lt;br /&gt;
&lt;br /&gt;
==Server Options==&lt;br /&gt;
&lt;br /&gt;
This is where settings can be configured globally across the whole DHCP server. We have none of these currently configured.&lt;br /&gt;
&lt;br /&gt;
==Policies (Not within scope)==&lt;br /&gt;
&lt;br /&gt;
Same as above policies but global, we do not have this configured.&lt;br /&gt;
&lt;br /&gt;
==Filters==&lt;br /&gt;
&lt;br /&gt;
This allows you to block or allow certain MAC addresses from receiving DHCP addresses.&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=Welcome_to_the_24PinTech_Wiki!&amp;diff=1042</id>
		<title>Welcome to the 24PinTech Wiki!</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=Welcome_to_the_24PinTech_Wiki!&amp;diff=1042"/>
		<updated>2020-01-10T20:13:22Z</updated>

		<summary type="html">&lt;p&gt;KWahl: updated the &amp;quot;Social Media Stuff&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Logo-extended.jpg|733x188px|center]]&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
==Who are we?==&lt;br /&gt;
The 24PinTech team consists of a group of students all currently attending Maricopa High School. We are all extremely enthusiastic about all things technological based, which prompted us to create the company. The company will allow students to be able to gain experience in Information Technology, thus preparing them for future careers within the technology industry. As part of the training program, employees will be certified in various courses, including but not limited to, the A+ Certificate, CCNA certification and multiple TestOut Course certifications. We also partner with [https://www.azstrut.org/ AZStRUT] to help them repair old computers which will be given back out, giving employees great hands-on hardware repair and software diagnosis experience.&lt;br /&gt;
&lt;br /&gt;
[https://youtu.be/LWSuHAxm-n8 24PinTech Commercial]&lt;br /&gt;
&lt;br /&gt;
==What do we do?==&lt;br /&gt;
Computer Service Technicians assets, repair, and maintain computers for companies, businesses, or consumers.&lt;br /&gt;
&lt;br /&gt;
==What are our obligations?==&lt;br /&gt;
Service Technicians are responsible for installing and repairing internal and external components, implementing proper security settings and programs, installing operating systems and software, making a system’s performance efficient and smooth, and helping customers better understand how to maintain their system(s).&lt;br /&gt;
&lt;br /&gt;
==What are our skills?==&lt;br /&gt;
&lt;br /&gt;
*'''Analytical Skills:''' Computer repair technicians need to be able to solve issues that might not have a clear solution. Being able to experiment and use trial and error is important.&lt;br /&gt;
*'''Troubleshooting:''' Computer repair technicians must be able to diagnose, repair and test computer problems as they arise&lt;br /&gt;
*'''Communication:''' Computer repair technicians have to ask questions and listen to customers in order to find out the issue, explain the problem in a clear and understandable way, and give them options for repair or replacement.&lt;br /&gt;
*'''IT Skills:''' Using diagnostic tools to assess or monitor computer systems requires knowledge of IT skills.&lt;br /&gt;
*'''Dexterity:''' Computer repair technicians use their hands to manipulate objects within the computer.&lt;br /&gt;
&lt;br /&gt;
==Social Media Stuff!==&lt;br /&gt;
&lt;br /&gt;
*'''Website:''' [http://24pin.tech/ 24pin.tech]&lt;br /&gt;
*'''Twitter:''' [https://twitter.com/24pinTech?s=20 @24PinTech]&lt;br /&gt;
*'''Instagram:''' [https://www.instagram.com/24pin.tech/ @24pintech]&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=Migrating_Spiceworks_(Retired)&amp;diff=1031</id>
		<title>Migrating Spiceworks (Retired)</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=Migrating_Spiceworks_(Retired)&amp;diff=1031"/>
		<updated>2019-12-11T18:30:58Z</updated>

		<summary type="html">&lt;p&gt;KWahl: Added captions to the pictures.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
Spiceworks is the site at which 24PinTech can access all work orders that have been assigned to a technician. Once a technician is logged in, they can view, edit, and comment about their work order as well as complete any documentation that is affiliated with the work order. For whatever reason Spiceworks may need to get migrated to another server. &lt;br /&gt;
&lt;br /&gt;
==Prep==&lt;br /&gt;
Make sure you have access to the following utilities.&lt;br /&gt;
&lt;br /&gt;
*A New Server&lt;br /&gt;
*A Flash Drive&lt;br /&gt;
*A Spiceworks Installation usually found at, &amp;lt;nowiki&amp;gt;https://www.spiceworks.com/download&amp;lt;/nowiki&amp;gt; (note this site will immediately start downloading the Spiceworks Installer)&lt;br /&gt;
&lt;br /&gt;
==Backups==&lt;br /&gt;
[[File:Migrating Wiki 1.png|left|thumb|387x387px|Navigate to the Spiceworks Settings drop-down menu, and select Global settings.]]&lt;br /&gt;
In the old server with your current Spicework installation, you will need to sign in using your account and navigate to the settings tab, which would like this (red circle)...&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
[[File:Migrating Wiki 2.png|left|thumb|390x390px|Highlighting the Edit option to change where the Back-up is saved.]]&lt;br /&gt;
Then click on ‘Global Settings’ in the drop down menu. Open up the ‘Backup Configuration’ menu. If you haven't already, insert your Flash Drive into the server. Find the ‘Backup Locations’ menu and change the current path to a path leading to your Flash Drive. Once selected click ‘Backup Now’ at the bottom. (red circle)&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
Eject the Flash Drive and head over to your new server.&lt;br /&gt;
&lt;br /&gt;
==Installing Spiceworks and Transplanting the Data==&lt;br /&gt;
Once on the new server use the link provided to download the Spiceworks Installer. Make sure the ports mimic the ports of your old server. When given the option Install NMAP and WinPCap through Spiceworks. Once done run the Installer, but '''MAKE SURE''' you '''DO NOT''' start Spiceworks itself, just have it installed. Make sure Spiceworks is completely stopped by checking to see if all the services are stopped. Below are the services. &lt;br /&gt;
 &amp;gt; spiceworks.exe &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spicetray.exe  &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spiceworks-finder.exe  &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spiceworks-httpd.exe  &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spiceworks-httpd.exe&lt;br /&gt;
[[File:Migrating Wiki 3.png|left|thumb|340x340px|Highlighting the Folders that need to be transferred.]]&lt;br /&gt;
If they are all stopped then you can continue with the migration. Find the installation files and open them in File Explorer. Delete the ‘data’ and ‘db’ folders, make sure it is '''ONLY''' these folders that get deleted.        &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
.  &lt;br /&gt;
&lt;br /&gt;
Now access the Backup files on your Flash Drive and extract them right into the Spiceworks Installation folder. If everything went well new ‘data’ and ‘db’ folders should appear. &lt;br /&gt;
&lt;br /&gt;
==Starting Spiceworks==&lt;br /&gt;
[[File:Migrating Wiki 4.png|left|thumb|342x342px|Highlighting the Application file needed to properly start Spiceworks.]]&lt;br /&gt;
Navigate to the application titled ‘spiceworks_desktop’ and run it. (red circle)&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
[[File:Migrating Wiki 5.png|left|thumb|340x340px|The final login-screen for Spiceworks.]]&lt;br /&gt;
&lt;br /&gt;
Spiceworks should now say something like ‘'''''HEATING UP'''''’ or something rather. This might take a few minutes, so just wait. Once it is done ‘'''''HEATING UP'''''’ it should load into a login screen, shown to the left. &lt;br /&gt;
&lt;br /&gt;
If everything went swimmingly you should be able to login using the same credentials from your old Spiceworks server. &lt;br /&gt;
&lt;br /&gt;
==='''''Congrats!'''''===&lt;br /&gt;
Now you just need to disable the Windows Firewall, and add it onto the domain, which is CiscoACA.local for us. Now just test functionality by copying the same URL and entering it on another system, and your good. &lt;br /&gt;
&lt;br /&gt;
-Your Welcome, Koby&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=NIC_Teaming&amp;diff=1029</id>
		<title>NIC Teaming</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=NIC_Teaming&amp;diff=1029"/>
		<updated>2019-12-11T18:25:20Z</updated>

		<summary type="html">&lt;p&gt;KWahl: added captions to the pictures.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
NIC Teaming is using two or more Ethernet ports simultaneously in a team as a ambiguate. An ambiguate is a sort of situation in which something is getting labeled as ambiguous, a NIC Team is making the wired connection to the internet ambiguous for security reasons. This is very useful for servers where constant web services are required, just in case one fails another one is already set up. &lt;br /&gt;
&lt;br /&gt;
==Creating or Editing a NIC Team==&lt;br /&gt;
[[File:Snip -1.png|thumb|Server Manager Window, the NIC Teaming option is available here.]]&lt;br /&gt;
In Windows Server open the “Server Manager” window and navigate to the “Local Server” category. Look for the “NIC Teaming” option and it will either say “Disabled” or “Enabled” click on this to open the “NIC Teaming” window.&lt;br /&gt;
&lt;br /&gt;
==='''    Editing'''===&lt;br /&gt;
Click on an existing NIC Team and edit the options to fit your needs, see '''Options and What to Use''' heading. &lt;br /&gt;
&lt;br /&gt;
===    '''Creating a New Team'''===&lt;br /&gt;
Click on the “Tasks” drop-down menu next to the Teams category. Select the “New Team” option, this will open a new window. The available Ethernet Adapters will be shown on the bottom left corner. Make sure all of them are connected to a router and have connectivity.&lt;br /&gt;
&lt;br /&gt;
Select the Ethernet Adapters you would like to use, make sure you select two or more for an effective NIC Team. Once selected give the team an appropriate name and then select the appropriate options for the team under the Additional Properties tab. See '''Options and What to Use''' for help on these options. Once all are set, press “OK” and verify connectivity. &lt;br /&gt;
&lt;br /&gt;
===    '''Verifying Connectivity'''===&lt;br /&gt;
[[File:Snip -2.png|thumb|Control Panel window showing the configured NIC Team for verifying connectivity.]]&lt;br /&gt;
Navigate to Control Panel, Then click on “Network and Internet”, then “Networking and Sharing Center”, then next to Connections click on “Ethernet” or Hopefully the name assigned to your NIC Team will show up. If the name of your NIC Team shows up then connectivity is established. If not click on it and a “Properties” window should pop up. Use this window to verify connectivity, if not plausible do basic networking troubleshooting for the NIC Team.&lt;br /&gt;
&lt;br /&gt;
==Options and What to Use==&lt;br /&gt;
&lt;br /&gt;
==='''Teaming Mode'''===&lt;br /&gt;
Two available options, Switch Dependent and Switch Independent. &lt;br /&gt;
&lt;br /&gt;
With Switch Independent mode, the switch or switches to which the NIC Team members are connected are unaware of the presence of the NIC team and do not determine how to distribute network traffic to NIC Team members - instead, the NIC Team distributes inbound network traffic across the NIC Team members. &lt;br /&gt;
&lt;br /&gt;
With Switch Dependent modes, the switch to which the NIC Team members are connected determines how to distribute the inbound network traffic among the NIC Team members. The switch has complete independence to determine how to distribute the network traffic across the NIC Team members.&lt;br /&gt;
&lt;br /&gt;
==='''Load Balancing Mode'''===&lt;br /&gt;
Three Available options, Address Hash, Hyper-V Port, and Dynamic.&lt;br /&gt;
&lt;br /&gt;
With Address Hash, this mode creates a hash based on address components of the packet, which then get assigned to one of the available adapters. Usually, this mechanism alone is sufficient to create a reasonable balance across the available adapters. The TCP ports hash creates the most granular distribution of traffic streams, resulting in smaller streams that can be independently moved between NIC team members. However, you cannot use the TCP ports hash for traffic that is not TCP or UDP-based, or where the TCP and UDP ports are hidden from the stack, such as with IPsec-protected traffic. In these cases, the hash automatically uses the IP address hash or, if the traffic is not IP traffic, the MAC address hash is used.&lt;br /&gt;
&lt;br /&gt;
With Hyper-V Port, NIC Teams configured on Hyper-V hosts give VMs independent MAC addresses. The VMs MAC address or the VM ported connected to the Hyper-V switch, can be used to divide network traffic between NIC Team members. You cannot configure NIC Teams that you create within VMs with the Hyper-V Port load balancing mode. Instead, use the Address Hash mode. Because the adjacent switch always sees a particular MAC address on one port, the switch distributes the ingress load (the traffic from the switch to the host) on multiple links based on the destination MAC (VM MAC) address. This is particularly useful when Virtual Machine Queues (VMQs) are used because a queue can be placed on the specific NIC where the traffic is expected to arrive. However, if the host has only a few VMs, this mode might not be granular enough to achieve a well-balanced distribution. This mode will also always limit a single VM (i.e., the traffic from a single switch port) to the bandwidth that is available on a single interface. NIC Teaming uses the Hyper-V Virtual Switch Port as the identifier instead of using the source MAC address because, in some instances, a VM might be configured with more than one MAC address on a switch port. &lt;br /&gt;
&lt;br /&gt;
With Dynamic, outbound loads are distributed based on a hash of the TCP ports and IP addresses. Dynamic mode also rebalances loads in real-time so that a given outbound flow may move back and forth between team members. Inbound loads, on the other hand, get distributed the same way as Hyper-V Port. In a nutshell, Dynamic mode utilizes the best aspects of both Address Hash and Hyper-V Port and is the highest performing load balancing mode. When you use Switch Independent mode with Dynamic distribution, the network traffic load is distributed based on the TCP Ports address hash as modified by the Dynamic load balancing algorithm. The Dynamic load balancing algorithm redistributes flows to optimize team member bandwidth utilization so that individual flow transmissions can move from one active team member to another. The algorithm takes into account the small possibility that redistributing traffic could cause out-of-order delivery of packets, so it takes steps to minimize that possibility.&lt;br /&gt;
&lt;br /&gt;
==='''Standby Adapter'''===&lt;br /&gt;
None or a certain selection based on the NIC Adapters selected. &lt;br /&gt;
&lt;br /&gt;
Just simply select a standby(s) and then proceed with the rest of the Options. No standby has to selected, but it is recommended if you have extra Ethernet Adapters available.&lt;br /&gt;
&lt;br /&gt;
If you have a two-NIC team and you choose to configure one NIC as a Standby adapter, you lose the bandwidth aggregation advantages that exist with two active NICs. You do not need to designate a Standby Adapter to achieve fault tolerance; fault tolerance is always present whenever there are at least two network adapters in a NIC Team.&lt;br /&gt;
&lt;br /&gt;
==='''Primary Team Interface'''===&lt;br /&gt;
The options are a Default setting, or either a Custom VLAN. &lt;br /&gt;
&lt;br /&gt;
If you are using a VLAN then select Custom VLAN and input the VLAN number.&lt;br /&gt;
&lt;br /&gt;
==Citations==&lt;br /&gt;
&amp;lt;blockquote&amp;gt;https://docs.microsoft.com/en-us/windows-server/networking/technologies/nic-teaming/nic-teaming&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=NIC_Teaming&amp;diff=1024</id>
		<title>NIC Teaming</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=NIC_Teaming&amp;diff=1024"/>
		<updated>2019-12-10T19:49:01Z</updated>

		<summary type="html">&lt;p&gt;KWahl: Added definition for ambiguate.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
NIC Teaming is using two or more Ethernet ports simultaneously in a team as a ambiguate. An ambiguate is a sort of situation in which something is getting labeled as ambiguous, a NIC Team is making the wired connection to the internet ambiguous for security reasons. This is very useful for servers where constant web services are required, just in case one fails another one is already set up. &lt;br /&gt;
&lt;br /&gt;
==Creating or Editing a NIC Team==&lt;br /&gt;
[[File:Snip -1.png|thumb]]&lt;br /&gt;
In Windows Server open the “Server Manager” window and navigate to the “Local Server” category. Look for the “NIC Teaming” option and it will either say “Disabled” or “Enabled” click on this to open the “NIC Teaming” window.&lt;br /&gt;
&lt;br /&gt;
==='''    Editing'''===&lt;br /&gt;
Click on an existing NIC Team and edit the options to fit your needs, see '''Options and What to Use''' heading. &lt;br /&gt;
&lt;br /&gt;
===    '''Creating a New Team'''===&lt;br /&gt;
Click on the “Tasks” drop-down menu next to the Teams category. Select the “New Team” option, this will open a new window. The available Ethernet Adapters will be shown on the bottom left corner. Make sure all of them are connected to a router and have connectivity.&lt;br /&gt;
&lt;br /&gt;
Select the Ethernet Adapters you would like to use, make sure you select two or more for an effective NIC Team. Once selected give the team an appropriate name and then select the appropriate options for the team under the Additional Properties tab. See '''Options and What to Use''' for help on these options. Once all are set, press “OK” and verify connectivity. &lt;br /&gt;
&lt;br /&gt;
===    '''Verifying Connectivity'''===&lt;br /&gt;
[[File:Snip -2.png|thumb]]&lt;br /&gt;
Navigate to Control Panel, Then click on “Network and Internet”, then “Networking and Sharing Center”, then next to Connections click on “Ethernet” or Hopefully the name assigned to your NIC Team will show up. If the name of your NIC Team shows up then connectivity is established. If not click on it and a “Properties” window should pop up. Use this window to verify connectivity, if not plausible do basic networking troubleshooting for the NIC Team.&lt;br /&gt;
&lt;br /&gt;
==Options and What to Use==&lt;br /&gt;
&lt;br /&gt;
==='''Teaming Mode'''===&lt;br /&gt;
Two available options, Switch Dependent and Switch Independent. &lt;br /&gt;
&lt;br /&gt;
With Switch Independent mode, the switch or switches to which the NIC Team members are connected are unaware of the presence of the NIC team and do not determine how to distribute network traffic to NIC Team members - instead, the NIC Team distributes inbound network traffic across the NIC Team members. &lt;br /&gt;
&lt;br /&gt;
With Switch Dependent modes, the switch to which the NIC Team members are connected determines how to distribute the inbound network traffic among the NIC Team members. The switch has complete independence to determine how to distribute the network traffic across the NIC Team members.&lt;br /&gt;
&lt;br /&gt;
==='''Load Balancing Mode'''===&lt;br /&gt;
Three Available options, Address Hash, Hyper-V Port, and Dynamic.&lt;br /&gt;
&lt;br /&gt;
With Address Hash, this mode creates a hash based on address components of the packet, which then get assigned to one of the available adapters. Usually, this mechanism alone is sufficient to create a reasonable balance across the available adapters. The TCP ports hash creates the most granular distribution of traffic streams, resulting in smaller streams that can be independently moved between NIC team members. However, you cannot use the TCP ports hash for traffic that is not TCP or UDP-based, or where the TCP and UDP ports are hidden from the stack, such as with IPsec-protected traffic. In these cases, the hash automatically uses the IP address hash or, if the traffic is not IP traffic, the MAC address hash is used.&lt;br /&gt;
&lt;br /&gt;
With Hyper-V Port, NIC Teams configured on Hyper-V hosts give VMs independent MAC addresses. The VMs MAC address or the VM ported connected to the Hyper-V switch, can be used to divide network traffic between NIC Team members. You cannot configure NIC Teams that you create within VMs with the Hyper-V Port load balancing mode. Instead, use the Address Hash mode. Because the adjacent switch always sees a particular MAC address on one port, the switch distributes the ingress load (the traffic from the switch to the host) on multiple links based on the destination MAC (VM MAC) address. This is particularly useful when Virtual Machine Queues (VMQs) are used because a queue can be placed on the specific NIC where the traffic is expected to arrive. However, if the host has only a few VMs, this mode might not be granular enough to achieve a well-balanced distribution. This mode will also always limit a single VM (i.e., the traffic from a single switch port) to the bandwidth that is available on a single interface. NIC Teaming uses the Hyper-V Virtual Switch Port as the identifier instead of using the source MAC address because, in some instances, a VM might be configured with more than one MAC address on a switch port. &lt;br /&gt;
&lt;br /&gt;
With Dynamic, outbound loads are distributed based on a hash of the TCP ports and IP addresses. Dynamic mode also rebalances loads in real-time so that a given outbound flow may move back and forth between team members. Inbound loads, on the other hand, get distributed the same way as Hyper-V Port. In a nutshell, Dynamic mode utilizes the best aspects of both Address Hash and Hyper-V Port and is the highest performing load balancing mode. When you use Switch Independent mode with Dynamic distribution, the network traffic load is distributed based on the TCP Ports address hash as modified by the Dynamic load balancing algorithm. The Dynamic load balancing algorithm redistributes flows to optimize team member bandwidth utilization so that individual flow transmissions can move from one active team member to another. The algorithm takes into account the small possibility that redistributing traffic could cause out-of-order delivery of packets, so it takes steps to minimize that possibility.&lt;br /&gt;
&lt;br /&gt;
==='''Standby Adapter'''===&lt;br /&gt;
None or a certain selection based on the NIC Adapters selected. &lt;br /&gt;
&lt;br /&gt;
Just simply select a standby(s) and then proceed with the rest of the Options. No standby has to selected, but it is recommended if you have extra Ethernet Adapters available.&lt;br /&gt;
&lt;br /&gt;
If you have a two-NIC team and you choose to configure one NIC as a Standby adapter, you lose the bandwidth aggregation advantages that exist with two active NICs. You do not need to designate a Standby Adapter to achieve fault tolerance; fault tolerance is always present whenever there are at least two network adapters in a NIC Team.&lt;br /&gt;
&lt;br /&gt;
==='''Primary Team Interface'''===&lt;br /&gt;
The options are a Default setting, or either a Custom VLAN. &lt;br /&gt;
&lt;br /&gt;
If you are using a VLAN then select Custom VLAN and input the VLAN number.&lt;br /&gt;
&lt;br /&gt;
==Citations==&lt;br /&gt;
&amp;lt;blockquote&amp;gt;https://docs.microsoft.com/en-us/windows-server/networking/technologies/nic-teaming/nic-teaming&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=NIC_Teaming&amp;diff=1023</id>
		<title>NIC Teaming</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=NIC_Teaming&amp;diff=1023"/>
		<updated>2019-12-10T19:44:26Z</updated>

		<summary type="html">&lt;p&gt;KWahl: Added Link for citations.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
NIC Teaming is using two or more Ethernet ports simultaneously in a team as a ambiguate. This is very useful for servers where constant web services are required, just in case one fails another one is already set up. &lt;br /&gt;
&lt;br /&gt;
==Creating or Editing a NIC Team==&lt;br /&gt;
[[File:Snip -1.png|thumb]]&lt;br /&gt;
In Windows Server open the “Server Manager” window and navigate to the “Local Server” category. Look for the “NIC Teaming” option and it will either say “Disabled” or “Enabled” click on this to open the “NIC Teaming” window.&lt;br /&gt;
&lt;br /&gt;
==='''    Editing'''===&lt;br /&gt;
Click on an existing NIC Team and edit the options to fit your needs, see '''Options and What to Use''' heading. &lt;br /&gt;
&lt;br /&gt;
===    '''Creating a New Team'''===&lt;br /&gt;
Click on the “Tasks” drop-down menu next to the Teams category. Select the “New Team” option, this will open a new window. The available Ethernet Adapters will be shown on the bottom left corner. Make sure all of them are connected to a router and have connectivity.&lt;br /&gt;
&lt;br /&gt;
Select the Ethernet Adapters you would like to use, make sure you select two or more for an effective NIC Team. Once selected give the team an appropriate name and then select the appropriate options for the team under the Additional Properties tab. See '''Options and What to Use''' for help on these options. Once all are set, press “OK” and verify connectivity. &lt;br /&gt;
&lt;br /&gt;
===    '''Verifying Connectivity'''===&lt;br /&gt;
[[File:Snip -2.png|thumb]]&lt;br /&gt;
Navigate to Control Panel, Then click on “Network and Internet”, then “Networking and Sharing Center”, then next to Connections click on “Ethernet” or Hopefully the name assigned to your NIC Team will show up. If the name of your NIC Team shows up then connectivity is established. If not click on it and a “Properties” window should pop up. Use this window to verify connectivity, if not plausible do basic networking troubleshooting for the NIC Team.&lt;br /&gt;
&lt;br /&gt;
==Options and What to Use==&lt;br /&gt;
&lt;br /&gt;
==='''Teaming Mode'''===&lt;br /&gt;
Two available options, Switch Dependent and Switch Independent. &lt;br /&gt;
&lt;br /&gt;
With Switch Independent mode, the switch or switches to which the NIC Team members are connected are unaware of the presence of the NIC team and do not determine how to distribute network traffic to NIC Team members - instead, the NIC Team distributes inbound network traffic across the NIC Team members. &lt;br /&gt;
&lt;br /&gt;
With Switch Dependent modes, the switch to which the NIC Team members are connected determines how to distribute the inbound network traffic among the NIC Team members. The switch has complete independence to determine how to distribute the network traffic across the NIC Team members.&lt;br /&gt;
&lt;br /&gt;
==='''Load Balancing Mode'''===&lt;br /&gt;
Three Available options, Address Hash, Hyper-V Port, and Dynamic.&lt;br /&gt;
&lt;br /&gt;
With Address Hash, this mode creates a hash based on address components of the packet, which then get assigned to one of the available adapters. Usually, this mechanism alone is sufficient to create a reasonable balance across the available adapters. The TCP ports hash creates the most granular distribution of traffic streams, resulting in smaller streams that can be independently moved between NIC team members. However, you cannot use the TCP ports hash for traffic that is not TCP or UDP-based, or where the TCP and UDP ports are hidden from the stack, such as with IPsec-protected traffic. In these cases, the hash automatically uses the IP address hash or, if the traffic is not IP traffic, the MAC address hash is used.&lt;br /&gt;
&lt;br /&gt;
With Hyper-V Port, NIC Teams configured on Hyper-V hosts give VMs independent MAC addresses. The VMs MAC address or the VM ported connected to the Hyper-V switch, can be used to divide network traffic between NIC Team members. You cannot configure NIC Teams that you create within VMs with the Hyper-V Port load balancing mode. Instead, use the Address Hash mode. Because the adjacent switch always sees a particular MAC address on one port, the switch distributes the ingress load (the traffic from the switch to the host) on multiple links based on the destination MAC (VM MAC) address. This is particularly useful when Virtual Machine Queues (VMQs) are used because a queue can be placed on the specific NIC where the traffic is expected to arrive. However, if the host has only a few VMs, this mode might not be granular enough to achieve a well-balanced distribution. This mode will also always limit a single VM (i.e., the traffic from a single switch port) to the bandwidth that is available on a single interface. NIC Teaming uses the Hyper-V Virtual Switch Port as the identifier instead of using the source MAC address because, in some instances, a VM might be configured with more than one MAC address on a switch port. &lt;br /&gt;
&lt;br /&gt;
With Dynamic, outbound loads are distributed based on a hash of the TCP ports and IP addresses. Dynamic mode also rebalances loads in real-time so that a given outbound flow may move back and forth between team members. Inbound loads, on the other hand, get distributed the same way as Hyper-V Port. In a nutshell, Dynamic mode utilizes the best aspects of both Address Hash and Hyper-V Port and is the highest performing load balancing mode. When you use Switch Independent mode with Dynamic distribution, the network traffic load is distributed based on the TCP Ports address hash as modified by the Dynamic load balancing algorithm. The Dynamic load balancing algorithm redistributes flows to optimize team member bandwidth utilization so that individual flow transmissions can move from one active team member to another. The algorithm takes into account the small possibility that redistributing traffic could cause out-of-order delivery of packets, so it takes steps to minimize that possibility.&lt;br /&gt;
&lt;br /&gt;
==='''Standby Adapter'''===&lt;br /&gt;
None or a certain selection based on the NIC Adapters selected. &lt;br /&gt;
&lt;br /&gt;
Just simply select a standby(s) and then proceed with the rest of the Options. No standby has to selected, but it is recommended if you have extra Ethernet Adapters available.&lt;br /&gt;
&lt;br /&gt;
If you have a two-NIC team and you choose to configure one NIC as a Standby adapter, you lose the bandwidth aggregation advantages that exist with two active NICs. You do not need to designate a Standby Adapter to achieve fault tolerance; fault tolerance is always present whenever there are at least two network adapters in a NIC Team.&lt;br /&gt;
&lt;br /&gt;
==='''Primary Team Interface'''===&lt;br /&gt;
The options are a Default setting, or either a Custom VLAN. &lt;br /&gt;
&lt;br /&gt;
If you are using a VLAN then select Custom VLAN and input the VLAN number.&lt;br /&gt;
&lt;br /&gt;
== Citations ==&lt;br /&gt;
&amp;lt;blockquote&amp;gt;https://docs.microsoft.com/en-us/windows-server/networking/technologies/nic-teaming/nic-teaming&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=NIC_Teaming&amp;diff=1022</id>
		<title>NIC Teaming</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=NIC_Teaming&amp;diff=1022"/>
		<updated>2019-12-09T20:27:17Z</updated>

		<summary type="html">&lt;p&gt;KWahl: Created the NIC Teaming documentation.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
NIC Teaming is using two or more Ethernet ports simultaneously in a team as a ambiguate. This is very useful for servers where constant web services are required, just in case one fails another one is already set up. &lt;br /&gt;
&lt;br /&gt;
== Creating or Editing a NIC Team ==&lt;br /&gt;
[[File:Snip -1.png|thumb]]&lt;br /&gt;
In Windows Server open the “Server Manager” window and navigate to the “Local Server” category. Look for the “NIC Teaming” option and it will either say “Disabled” or “Enabled” click on this to open the “NIC Teaming” window.&lt;br /&gt;
&lt;br /&gt;
=== '''    Editing''' ===&lt;br /&gt;
Click on an existing NIC Team and edit the options to fit your needs, see '''Options and What to Use''' heading. &lt;br /&gt;
&lt;br /&gt;
===    '''Creating a New Team''' ===&lt;br /&gt;
Click on the “Tasks” drop-down menu next to the Teams category. Select the “New Team” option, this will open a new window. The available Ethernet Adapters will be shown on the bottom left corner. Make sure all of them are connected to a router and have connectivity.&lt;br /&gt;
&lt;br /&gt;
Select the Ethernet Adapters you would like to use, make sure you select two or more for an effective NIC Team. Once selected give the team an appropriate name and then select the appropriate options for the team under the Additional Properties tab. See '''Options and What to Use''' for help on these options. Once all are set, press “OK” and verify connectivity. &lt;br /&gt;
&lt;br /&gt;
===    '''Verifying Connectivity''' ===&lt;br /&gt;
[[File:Snip -2.png|thumb]]&lt;br /&gt;
Navigate to Control Panel, Then click on “Network and Internet”, then “Networking and Sharing Center”, then next to Connections click on “Ethernet” or Hopefully the name assigned to your NIC Team will show up. If the name of your NIC Team shows up then connectivity is established. If not click on it and a “Properties” window should pop up. Use this window to verify connectivity, if not plausible do basic networking troubleshooting for the NIC Team.&lt;br /&gt;
&lt;br /&gt;
== Options and What to Use ==&lt;br /&gt;
&lt;br /&gt;
=== '''Teaming Mode''' ===&lt;br /&gt;
Two available options, Switch Dependent and Switch Independent. &lt;br /&gt;
&lt;br /&gt;
With Switch Independent mode, the switch or switches to which the NIC Team members are connected are unaware of the presence of the NIC team and do not determine how to distribute network traffic to NIC Team members - instead, the NIC Team distributes inbound network traffic across the NIC Team members. &lt;br /&gt;
&lt;br /&gt;
With Switch Dependent modes, the switch to which the NIC Team members are connected determines how to distribute the inbound network traffic among the NIC Team members. The switch has complete independence to determine how to distribute the network traffic across the NIC Team members.&lt;br /&gt;
&lt;br /&gt;
=== '''Load Balancing Mode''' ===&lt;br /&gt;
Three Available options, Address Hash, Hyper-V Port, and Dynamic.&lt;br /&gt;
&lt;br /&gt;
With Address Hash, this mode creates a hash based on address components of the packet, which then get assigned to one of the available adapters. Usually, this mechanism alone is sufficient to create a reasonable balance across the available adapters. The TCP ports hash creates the most granular distribution of traffic streams, resulting in smaller streams that can be independently moved between NIC team members. However, you cannot use the TCP ports hash for traffic that is not TCP or UDP-based, or where the TCP and UDP ports are hidden from the stack, such as with IPsec-protected traffic. In these cases, the hash automatically uses the IP address hash or, if the traffic is not IP traffic, the MAC address hash is used.&lt;br /&gt;
&lt;br /&gt;
With Hyper-V Port, NIC Teams configured on Hyper-V hosts give VMs independent MAC addresses. The VMs MAC address or the VM ported connected to the Hyper-V switch, can be used to divide network traffic between NIC Team members. You cannot configure NIC Teams that you create within VMs with the Hyper-V Port load balancing mode. Instead, use the Address Hash mode. Because the adjacent switch always sees a particular MAC address on one port, the switch distributes the ingress load (the traffic from the switch to the host) on multiple links based on the destination MAC (VM MAC) address. This is particularly useful when Virtual Machine Queues (VMQs) are used because a queue can be placed on the specific NIC where the traffic is expected to arrive. However, if the host has only a few VMs, this mode might not be granular enough to achieve a well-balanced distribution. This mode will also always limit a single VM (i.e., the traffic from a single switch port) to the bandwidth that is available on a single interface. NIC Teaming uses the Hyper-V Virtual Switch Port as the identifier instead of using the source MAC address because, in some instances, a VM might be configured with more than one MAC address on a switch port. &lt;br /&gt;
&lt;br /&gt;
With Dynamic, outbound loads are distributed based on a hash of the TCP ports and IP addresses. Dynamic mode also rebalances loads in real-time so that a given outbound flow may move back and forth between team members. Inbound loads, on the other hand, get distributed the same way as Hyper-V Port. In a nutshell, Dynamic mode utilizes the best aspects of both Address Hash and Hyper-V Port and is the highest performing load balancing mode. When you use Switch Independent mode with Dynamic distribution, the network traffic load is distributed based on the TCP Ports address hash as modified by the Dynamic load balancing algorithm. The Dynamic load balancing algorithm redistributes flows to optimize team member bandwidth utilization so that individual flow transmissions can move from one active team member to another. The algorithm takes into account the small possibility that redistributing traffic could cause out-of-order delivery of packets, so it takes steps to minimize that possibility.&lt;br /&gt;
&lt;br /&gt;
=== '''Standby Adapter''' ===&lt;br /&gt;
None or a certain selection based on the NIC Adapters selected. &lt;br /&gt;
&lt;br /&gt;
Just simply select a standby(s) and then proceed with the rest of the Options. No standby has to selected, but it is recommended if you have extra Ethernet Adapters available.&lt;br /&gt;
&lt;br /&gt;
If you have a two-NIC team and you choose to configure one NIC as a Standby adapter, you lose the bandwidth aggregation advantages that exist with two active NICs. You do not need to designate a Standby Adapter to achieve fault tolerance; fault tolerance is always present whenever there are at least two network adapters in a NIC Team.&lt;br /&gt;
&lt;br /&gt;
=== '''Primary Team Interface''' ===&lt;br /&gt;
The options are a Default setting, or either a Custom VLAN. &lt;br /&gt;
&lt;br /&gt;
If you are using a VLAN then select Custom VLAN and input the VLAN number.&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=File:Snip_-2.png&amp;diff=1021</id>
		<title>File:Snip -2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=File:Snip_-2.png&amp;diff=1021"/>
		<updated>2019-12-09T20:25:18Z</updated>

		<summary type="html">&lt;p&gt;KWahl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Showing the NIC Team successfully funning.&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=File:Snip_-1.png&amp;diff=1020</id>
		<title>File:Snip -1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=File:Snip_-1.png&amp;diff=1020"/>
		<updated>2019-12-09T20:22:17Z</updated>

		<summary type="html">&lt;p&gt;KWahl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Shows the NIC Teaming option.&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=NIC_Teaming&amp;diff=1019</id>
		<title>NIC Teaming</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=NIC_Teaming&amp;diff=1019"/>
		<updated>2019-12-09T20:18:43Z</updated>

		<summary type="html">&lt;p&gt;KWahl: Created blank page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=DHCP&amp;diff=1017</id>
		<title>DHCP</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=DHCP&amp;diff=1017"/>
		<updated>2019-11-26T19:43:08Z</updated>

		<summary type="html">&lt;p&gt;KWahl: Add Surtr to the list&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Our DHCP Setup=&lt;br /&gt;
&lt;br /&gt;
Our DHCP is run on [[Loki]] mainly, but [[Logan]] is on hot standby. DHCP is what gives out the IP addresses to the devices on our network. Without it, we would have to use static IP addresses, or we would not be able to communicate properly. Both of the servers keep each other synced on what IP addresses have been given out to ensure there are no conflicts.&lt;br /&gt;
&lt;br /&gt;
==Address Pool==&lt;br /&gt;
&lt;br /&gt;
Our scope is 10.21.25.0, as that is our network. The DHCP server only distributes addresses in from 10.21.25.20 to 10.21.25.247. The rest in the network are reserved for servers and printers, or anything else that needs a static IP.  The following chart represents our current setup...&lt;br /&gt;
&lt;br /&gt;
===Hostname                   IP address===&lt;br /&gt;
Gateway                              10.21.25.1&lt;br /&gt;
&lt;br /&gt;
Surtr                                     10.21.25.2&lt;br /&gt;
&lt;br /&gt;
Loki (PDC)                           10.21.25.3&lt;br /&gt;
&lt;br /&gt;
Fog                                      10.21.25.4&lt;br /&gt;
&lt;br /&gt;
Freyr                                    10.21.25.5&lt;br /&gt;
&lt;br /&gt;
MacMini                               10.21.25.6&lt;br /&gt;
&lt;br /&gt;
MediaXserve                        10.21.25.7&lt;br /&gt;
&lt;br /&gt;
Heimdall (ESXI VM's)          10.21.25.8&lt;br /&gt;
&lt;br /&gt;
Logan (BDC)                       10.21.25.10&lt;br /&gt;
&lt;br /&gt;
LoganWeb (VM on Logan)  10.21.25.11&lt;br /&gt;
&lt;br /&gt;
Macmini Backup                  10.21.25.15&lt;br /&gt;
&lt;br /&gt;
NAS 24PinTech                   10.21.25.16&lt;br /&gt;
&lt;br /&gt;
Perle IOLAN Console Serv  10.21.25.17&lt;br /&gt;
&lt;br /&gt;
Opengear                            10.21.25.18&lt;br /&gt;
&lt;br /&gt;
==Address Leases==&lt;br /&gt;
&lt;br /&gt;
These are all of the current DHCP releases that the DHCP servers have put out that are active.&lt;br /&gt;
&lt;br /&gt;
==Reservations==&lt;br /&gt;
&lt;br /&gt;
This is where all of our static DHCP-side reservations for our servers, printers, NAS, etc., are located. You can double click any of them to edit their specific settings.&lt;br /&gt;
&lt;br /&gt;
==Scope Options==&lt;br /&gt;
&lt;br /&gt;
This is where we configure our DHCP options. To configure options that we don't already have set, right click &amp;quot;Scope Options&amp;quot; and click on &amp;quot;Configure Options&amp;quot; and configure what you need. Below are the options we already have set:&lt;br /&gt;
&lt;br /&gt;
[[File:DHCP_Options.PNG]]&lt;br /&gt;
&lt;br /&gt;
These options set where the computers will look for DNS, what our domain name is ([[CISCOACA.local]]) and the other options tell computers to PXE boot from [[FOG]] and configures the settings they need to boot from [[FOG]].&lt;br /&gt;
&lt;br /&gt;
==Policies==&lt;br /&gt;
&lt;br /&gt;
These are settings that are applied to certain devices based off of rules defined by the policy, like IP address range, vendor, etc.&lt;br /&gt;
&lt;br /&gt;
The only policy we have currently configured is called UEFI, which applies to network booting via UEFI. It sets options 66 and 67 to make sure devices will boot properly off of [[FOG]]. 67 is set to ipxe.efi, and 66 is set to 10.21.25.4.&lt;br /&gt;
&lt;br /&gt;
==Server Options==&lt;br /&gt;
&lt;br /&gt;
This is where settings can be configured globally across the whole DHCP server. We have non of these currently configured.&lt;br /&gt;
&lt;br /&gt;
==Policies (Not within scope)==&lt;br /&gt;
&lt;br /&gt;
Same as above policies but global, we do not have this configured.&lt;br /&gt;
&lt;br /&gt;
==Filters==&lt;br /&gt;
&lt;br /&gt;
This allows you to block or allow certain MAC addresses from receiving DHCP addresses.&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=DHCP&amp;diff=1016</id>
		<title>DHCP</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=DHCP&amp;diff=1016"/>
		<updated>2019-11-26T19:37:13Z</updated>

		<summary type="html">&lt;p&gt;KWahl: Added the Static IP for Freyr.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Our DHCP Setup=&lt;br /&gt;
&lt;br /&gt;
Our DHCP is run on [[Loki]] mainly, but [[Logan]] is on hot standby. DHCP is what gives out the IP addresses to the devices on our network. Without it, we would have to use static IP addresses, or we would not be able to communicate properly. Both of the servers keep each other synced on what IP addresses have been given out to ensure there are no conflicts.&lt;br /&gt;
&lt;br /&gt;
==Address Pool==&lt;br /&gt;
&lt;br /&gt;
Our scope is 10.21.25.0, as that is our network. The DHCP server only distributes addresses in from 10.21.25.20 to 10.21.25.247. The rest in the network are reserved for servers and printers, or anything else that needs a static IP.  The following chart represents our current setup...&lt;br /&gt;
&lt;br /&gt;
===Hostname                   IP address===&lt;br /&gt;
Gateway                              10.21.25.1&lt;br /&gt;
&lt;br /&gt;
Loki (PDC)                           10.21.25.3&lt;br /&gt;
&lt;br /&gt;
Fog                                      10.21.25.4&lt;br /&gt;
&lt;br /&gt;
Freyr                                    10.21.25.5&lt;br /&gt;
&lt;br /&gt;
MacMini                               10.21.25.6&lt;br /&gt;
&lt;br /&gt;
MediaXserve                        10.21.25.7&lt;br /&gt;
&lt;br /&gt;
Heimdall (ESXI VM's)          10.21.25.8&lt;br /&gt;
&lt;br /&gt;
Odin (Spiceworks)               10.21.25.9&lt;br /&gt;
&lt;br /&gt;
Logan (BDC)                       10.21.25.10&lt;br /&gt;
&lt;br /&gt;
LoganWeb (VM on Logan)  10.21.25.11&lt;br /&gt;
&lt;br /&gt;
Macmini Backup                  10.21.25.15&lt;br /&gt;
&lt;br /&gt;
NAS 24PinTech                   10.21.25.16&lt;br /&gt;
&lt;br /&gt;
Perle IOLAN Console Serv  10.21.25.17&lt;br /&gt;
&lt;br /&gt;
Opengear                            10.21.25.18&lt;br /&gt;
&lt;br /&gt;
==Address Leases==&lt;br /&gt;
&lt;br /&gt;
These are all of the current DHCP releases that the DHCP servers have put out that are active.&lt;br /&gt;
&lt;br /&gt;
==Reservations==&lt;br /&gt;
&lt;br /&gt;
This is where all of our static DHCP-side reservations for our servers, printers, NAS, etc., are located. You can double click any of them to edit their specific settings.&lt;br /&gt;
&lt;br /&gt;
==Scope Options==&lt;br /&gt;
&lt;br /&gt;
This is where we configure our DHCP options. To configure options that we don't already have set, right click &amp;quot;Scope Options&amp;quot; and click on &amp;quot;Configure Options&amp;quot; and configure what you need. Below are the options we already have set:&lt;br /&gt;
&lt;br /&gt;
[[File:DHCP_Options.PNG]]&lt;br /&gt;
&lt;br /&gt;
These options set where the computers will look for DNS, what our domain name is ([[CISCOACA.local]]) and the other options tell computers to PXE boot from [[FOG]] and configures the settings they need to boot from [[FOG]].&lt;br /&gt;
&lt;br /&gt;
==Policies==&lt;br /&gt;
&lt;br /&gt;
These are settings that are applied to certain devices based off of rules defined by the policy, like IP address range, vendor, etc.&lt;br /&gt;
&lt;br /&gt;
The only policy we have currently configured is called UEFI, which applies to network booting via UEFI. It sets options 66 and 67 to make sure devices will boot properly off of [[FOG]]. 67 is set to ipxe.efi, and 66 is set to 10.21.25.4.&lt;br /&gt;
&lt;br /&gt;
==Server Options==&lt;br /&gt;
&lt;br /&gt;
This is where settings can be configured globally across the whole DHCP server. We have non of these currently configured.&lt;br /&gt;
&lt;br /&gt;
==Policies (Not within scope)==&lt;br /&gt;
&lt;br /&gt;
Same as above policies but global, we do not have this configured.&lt;br /&gt;
&lt;br /&gt;
==Filters==&lt;br /&gt;
&lt;br /&gt;
This allows you to block or allow certain MAC addresses from receiving DHCP addresses.&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=WordPress&amp;diff=1000</id>
		<title>WordPress</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=WordPress&amp;diff=1000"/>
		<updated>2019-09-30T19:16:45Z</updated>

		<summary type="html">&lt;p&gt;KWahl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
[[File:Wp-admin.png|thumb|screenshot of the WordPress admin dashboard]]&lt;br /&gt;
[https://wordpress.org/ WordPress] is a content management system (CMS) that is functions primarily serve our [http://24pin.tech/ homepage] to users that would like to get help or discover more about the program. It's a very powerful platform that grants administrators creative freedom over whatever they want on their website.&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
The installation for WordPress is really simple. All you have to do is download the compressed file for the installation and extract it in the directory that you'd want to install it to. You can either download it from their [https://wordpress.org/download/ website here] or alternatively you can download it using &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt;. The command would be &amp;lt;code&amp;gt;sudo wget &amp;lt;nowiki&amp;gt;https://wordpress.org/latest.tar.gz&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on UNIX systems (if you're using aptitude for your package manager.) Once you've downloaded the file, run &amp;lt;code&amp;gt;sudo tar -xzvf latest.tar.gz&amp;lt;/code&amp;gt; to extract it.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
Once you've downloaded and extracted the file, visit your web server to continue with the installation process. The rest of the instructions are on the page of the web installer. &lt;br /&gt;
&lt;br /&gt;
==Management==&lt;br /&gt;
WordPress was created with the user's experience in mind. The dashboard is very intuitive, and the community is large enough to have answers to most questions/problems. In order to manage a WordPress powered website, you need to use the admin dashboard. In order to get to it, go to the WordPress installation's root directory and then navigate to the &amp;lt;code&amp;gt;/wp-admin&amp;lt;/code&amp;gt; directory (i.e. website.com/wp-admin). From there, you can edit posts, the theme, pages, plugins, and more. If you don't know how to do something, Google it! The WordPress community has been around since 2003, so your question has most likely been asked and answered before.&lt;br /&gt;
&lt;br /&gt;
===Logging In===&lt;br /&gt;
In order to log into WordPress, go to website.com'''/wp-admin''' (replace website.com with your domain).&lt;br /&gt;
[[File:W1.png|left|frameless|208x208px|screenshot of the login page]]&lt;br /&gt;
&lt;br /&gt;
[[File:W2.png|left|thumb|150x150px|the ''Users'' tab on the sidebar in the dashboard]]&lt;br /&gt;
&lt;br /&gt;
===Creating Accounts===&lt;br /&gt;
If you need to create an account, go to '''Users → Add New''' from the WordPress dashboard. From there, fill out all of the information for the new account and press the ''Add New User'' button.&lt;br /&gt;
&lt;br /&gt;
If you need to edit any of the users (change username, reset password, etc), navigate to '''Users → All Users''' and click on the one that you need to modify.&lt;br /&gt;
&lt;br /&gt;
===Adding Menu Items===&lt;br /&gt;
Before you can add an item to your primary menu, you need to have a new (or preexisting) page. If you need to create one, go to '''Pages → Add New''' and create it. Once it's created, navigate to '''Appearance → Menus''' and draw your attention to the ''Add Menu Items'' section. Find your new page in the list and click on the checkbox and click ''Add To Menu''.&lt;br /&gt;
[[File:W3.png|left|thumb|204x204px|adding an item to the ''Menu structure'' section]]&lt;br /&gt;
&lt;br /&gt;
===Editing Page Contents===&lt;br /&gt;
lksjdfladsjf&lt;br /&gt;
[[File:W4.png|left|thumb|what it should look like when trying to create a dropdown menu]]&lt;br /&gt;
&lt;br /&gt;
===Adding/Modifying Themes===&lt;br /&gt;
adfadfasdf&lt;br /&gt;
&lt;br /&gt;
===Uploading Images===&lt;br /&gt;
ldkfjalkdfj&lt;br /&gt;
&lt;br /&gt;
==Troubleshooting==&lt;br /&gt;
f after an installation you get prompted for FTP credentials, add the following line to the wp-config.php file in the directory that WordPress was installed &lt;br /&gt;
 define(“FS_METHOD”, “direct”);&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=WordPress&amp;diff=999</id>
		<title>WordPress</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=WordPress&amp;diff=999"/>
		<updated>2019-09-30T19:15:50Z</updated>

		<summary type="html">&lt;p&gt;KWahl: fixed a Minor Command issue&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
[[File:Wp-admin.png|thumb|screenshot of the WordPress admin dashboard]]&lt;br /&gt;
[https://wordpress.org/ WordPress] is a content management system (CMS) that is functions primarily serve our [http://24pin.tech/ homepage] to users that would like to get help or discover more about the program. It's a very powerful platform that grants administrators creative freedom over whatever they want on their website.&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
The installation for WordPress is really simple. All you have to do is download the compressed file for the installation and extract it in the directory that you'd want to install it to. You can either download it from their [https://wordpress.org/download/ website here] or alternatively you can download it using &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt;. The command would be &amp;lt;code&amp;gt;sudo wget &amp;lt;nowiki&amp;gt;https://wordpress.org/latest.tar.gz&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on UNIX systems (if you're using aptitude for your package manager.) Once you've downloaded the file, run &amp;lt;code&amp;gt;tar -xzvf latest.tar.gz&amp;lt;/code&amp;gt; to extract it.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
Once you've downloaded and extracted the file, visit your web server to continue with the installation process. The rest of the instructions are on the page of the web installer. &lt;br /&gt;
&lt;br /&gt;
==Management==&lt;br /&gt;
WordPress was created with the user's experience in mind. The dashboard is very intuitive, and the community is large enough to have answers to most questions/problems. In order to manage a WordPress powered website, you need to use the admin dashboard. In order to get to it, go to the WordPress installation's root directory and then navigate to the &amp;lt;code&amp;gt;/wp-admin&amp;lt;/code&amp;gt; directory (i.e. website.com/wp-admin). From there, you can edit posts, the theme, pages, plugins, and more. If you don't know how to do something, Google it! The WordPress community has been around since 2003, so your question has most likely been asked and answered before.&lt;br /&gt;
&lt;br /&gt;
===Logging In===&lt;br /&gt;
In order to log into WordPress, go to website.com'''/wp-admin''' (replace website.com with your domain).&lt;br /&gt;
[[File:W1.png|left|frameless|208x208px|screenshot of the login page]]&lt;br /&gt;
&lt;br /&gt;
[[File:W2.png|left|thumb|150x150px|the ''Users'' tab on the sidebar in the dashboard]]&lt;br /&gt;
&lt;br /&gt;
===Creating Accounts===&lt;br /&gt;
If you need to create an account, go to '''Users → Add New''' from the WordPress dashboard. From there, fill out all of the information for the new account and press the ''Add New User'' button.&lt;br /&gt;
&lt;br /&gt;
If you need to edit any of the users (change username, reset password, etc), navigate to '''Users → All Users''' and click on the one that you need to modify.&lt;br /&gt;
&lt;br /&gt;
===Adding Menu Items===&lt;br /&gt;
Before you can add an item to your primary menu, you need to have a new (or preexisting) page. If you need to create one, go to '''Pages → Add New''' and create it. Once it's created, navigate to '''Appearance → Menus''' and draw your attention to the ''Add Menu Items'' section. Find your new page in the list and click on the checkbox and click ''Add To Menu''.&lt;br /&gt;
[[File:W3.png|left|thumb|204x204px|adding an item to the ''Menu structure'' section]]&lt;br /&gt;
&lt;br /&gt;
===Editing Page Contents===&lt;br /&gt;
lksjdfladsjf&lt;br /&gt;
[[File:W4.png|left|thumb|what it should look like when trying to create a dropdown menu]]&lt;br /&gt;
&lt;br /&gt;
===Adding/Modifying Themes===&lt;br /&gt;
adfadfasdf&lt;br /&gt;
&lt;br /&gt;
===Uploading Images===&lt;br /&gt;
ldkfjalkdfj&lt;br /&gt;
&lt;br /&gt;
==Troubleshooting==&lt;br /&gt;
f after an installation you get prompted for FTP credentials, add the following line to the wp-config.php file in the directory that WordPress was installed &lt;br /&gt;
 define(“FS_METHOD”, “direct”);&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=Migrating_Spiceworks_(Retired)&amp;diff=998</id>
		<title>Migrating Spiceworks (Retired)</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=Migrating_Spiceworks_(Retired)&amp;diff=998"/>
		<updated>2019-09-30T18:35:55Z</updated>

		<summary type="html">&lt;p&gt;KWahl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
Spiceworks is the site at which 24PinTech can access all work orders that have been assigned to a technician. Once a technician is logged in, they can view, edit, and comment about their work order as well as complete any documentation that is affiliated with the work order. For whatever reason Spiceworks may need to get migrated to another server. &lt;br /&gt;
&lt;br /&gt;
==Prep==&lt;br /&gt;
Make sure you have access to the following utilities.&lt;br /&gt;
&lt;br /&gt;
*A New Server&lt;br /&gt;
*A Flash Drive&lt;br /&gt;
*A Spiceworks Installation usually found at, &amp;lt;nowiki&amp;gt;https://www.spiceworks.com/download&amp;lt;/nowiki&amp;gt; (note this site will immediately start downloading the Spiceworks Installer)&lt;br /&gt;
&lt;br /&gt;
==Backups==&lt;br /&gt;
[[File:Migrating Wiki 1.png|left|thumb|387x387px]]&lt;br /&gt;
In the old server with your current Spicework installation, you will need to sign in using your account and navigate to the settings tab, which would like this (red circle)...&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
[[File:Migrating Wiki 2.png|left|thumb|390x390px]]&lt;br /&gt;
Then click on ‘Global Settings’ in the drop down menu. Open up the ‘Backup Configuration’ menu. If you haven't already, insert your Flash Drive into the server. Find the ‘Backup Locations’ menu and change the current path to a path leading to your Flash Drive. Once selected click ‘Backup Now’ at the bottom. (red circle)&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
Eject the Flash Drive and head over to your new server.&lt;br /&gt;
&lt;br /&gt;
==Installing Spiceworks and Transplanting the Data==&lt;br /&gt;
Once on the new server use the link provided to download the Spiceworks Installer. Make sure the ports mimic the ports of your old server. When given the option Install NMAP and WinPCap through Spiceworks. Once done run the Installer, but '''MAKE SURE''' you '''DO NOT''' start Spiceworks itself, just have it installed. Make sure Spiceworks is completely stopped by checking to see if all the services are stopped. Below are the services. &lt;br /&gt;
 &amp;gt; spiceworks.exe &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spicetray.exe  &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spiceworks-finder.exe  &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spiceworks-httpd.exe  &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spiceworks-httpd.exe&lt;br /&gt;
[[File:Migrating Wiki 3.png|left|thumb|340x340px]]&lt;br /&gt;
If they are all stopped then you can continue with the migration. Find the installation files and open them in File Explorer. Delete the ‘data’ and ‘db’ folders, make sure it is '''ONLY''' these folders that get deleted.        &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
.  &lt;br /&gt;
&lt;br /&gt;
Now access the Backup files on your Flash Drive and extract them right into the Spiceworks Installation folder. If everything went well new ‘data’ and ‘db’ folders should appear. &lt;br /&gt;
&lt;br /&gt;
==Starting Spiceworks==&lt;br /&gt;
[[File:Migrating Wiki 4.png|left|thumb|342x342px]]&lt;br /&gt;
Navigate to the application titled ‘spiceworks_desktop’ and run it. (red circle)&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
[[File:Migrating Wiki 5.png|left|thumb|340x340px]]&lt;br /&gt;
&lt;br /&gt;
Spiceworks should now say something like ‘'''''HEATING UP'''''’ or something rather. This might take a few minutes, so just wait. Once it is done ‘'''''HEATING UP'''''’ it should load into a login screen, shown to the left. &lt;br /&gt;
&lt;br /&gt;
If everything went swimmingly you should be able to login using the same credentials from your old Spiceworks server. &lt;br /&gt;
&lt;br /&gt;
==='''''Congrats!'''''===&lt;br /&gt;
Now you just need to disable the Windows Firewall, and add it onto the domain, which is CiscoACA.local for us. Now just test functionality by copying the same URL and entering it on another system, and your good. &lt;br /&gt;
&lt;br /&gt;
-Your Welcome, Koby&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=Migrating_Spiceworks_(Retired)&amp;diff=997</id>
		<title>Migrating Spiceworks (Retired)</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=Migrating_Spiceworks_(Retired)&amp;diff=997"/>
		<updated>2019-09-30T18:35:35Z</updated>

		<summary type="html">&lt;p&gt;KWahl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
Spiceworks is the site at which 24PinTech can access all work orders that have been assigned to a technician. Once a technician is logged in, they can view, edit, and comment about their work order as well as complete any documentation that is affiliated with the work order. For whatever reason Spiceworks may need to get migrated to another server. &lt;br /&gt;
&lt;br /&gt;
==Prep==&lt;br /&gt;
Make sure you have access to the following utilities.&lt;br /&gt;
&lt;br /&gt;
*A New Server&lt;br /&gt;
*A Flash Drive&lt;br /&gt;
*A Spiceworks Installation usually found at, &amp;lt;nowiki&amp;gt;https://www.spiceworks.com/download&amp;lt;/nowiki&amp;gt; (note this site will immediately start downloading the Spiceworks Installer)&lt;br /&gt;
&lt;br /&gt;
==Backups==&lt;br /&gt;
[[File:Migrating Wiki 1.png|left|thumb|387x387px]]&lt;br /&gt;
In the old server with your current Spicework installation, you will need to sign in using your account and navigate to the settings tab, which would like this (red circle)...&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
[[File:Migrating Wiki 2.png|left|thumb|390x390px]]&lt;br /&gt;
Then click on ‘Global Settings’ in the drop down menu. Open up the ‘Backup Configuration’ menu. If you haven't already, insert your Flash Drive into the server. Find the ‘Backup Locations’ menu and change the current path to a path leading to your Flash Drive. Once selected click ‘Backup Now’ at the bottom. (red circle)&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
Eject the Flash Drive and head over to your new server.&lt;br /&gt;
&lt;br /&gt;
==Installing Spiceworks and Transplanting the Data==&lt;br /&gt;
Once on the new server use the link provided to download the Spiceworks Installer. Make sure the ports mimic the ports of your old server. When given the option Install NMAP and WinPCap through Spiceworks. Once done run the Installer, but '''MAKE SURE''' you '''DO NOT''' start Spiceworks itself, just have it installed. Make sure Spiceworks is completely stopped by checking to see if all the services are stopped. Below are the services. &lt;br /&gt;
 &amp;gt; spiceworks.exe &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spicetray.exe  &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spiceworks-finder.exe  &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spiceworks-httpd.exe  &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spiceworks-httpd.exe&lt;br /&gt;
[[File:Migrating Wiki 3.png|left|thumb|340x340px]]&lt;br /&gt;
If they are all stopped then you can continue with the migration. Find the installation files and open them in File Explorer. Delete the ‘data’ and ‘db’ folders, make sure it is '''ONLY''' these folders that get deleted.        &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
. &lt;br /&gt;
&lt;br /&gt;
Now access the Backup files on your Flash Drive and extract them right into the Spiceworks Installation folder. If everything went well new ‘data’ and ‘db’ folders should appear. &lt;br /&gt;
&lt;br /&gt;
==Starting Spiceworks==&lt;br /&gt;
[[File:Migrating Wiki 4.png|left|thumb|342x342px]]&lt;br /&gt;
Navigate to the application titled ‘spiceworks_desktop’ and run it. (red circle)&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
[[File:Migrating Wiki 5.png|left|thumb|340x340px]]&lt;br /&gt;
&lt;br /&gt;
Spiceworks should now say something like ‘'''''HEATING UP'''''’ or something rather. This might take a few minutes, so just wait. Once it is done ‘'''''HEATING UP'''''’ it should load into a login screen, shown to the left. &lt;br /&gt;
&lt;br /&gt;
If everything went swimmingly you should be able to login using the same credentials from your old Spiceworks server. &lt;br /&gt;
&lt;br /&gt;
==='''''Congrats!'''''===&lt;br /&gt;
Now you just need to disable the Windows Firewall, and add it onto the domain, which is CiscoACA.local for us. Now just test functionality by copying the same URL and entering it on another system, and your good. &lt;br /&gt;
&lt;br /&gt;
-Your Welcome, Koby&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=Migrating_Spiceworks_(Retired)&amp;diff=996</id>
		<title>Migrating Spiceworks (Retired)</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=Migrating_Spiceworks_(Retired)&amp;diff=996"/>
		<updated>2019-09-30T18:33:45Z</updated>

		<summary type="html">&lt;p&gt;KWahl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
Spiceworks is the site at which 24PinTech can access all work orders that have been assigned to a technician. Once a technician is logged in, they can view, edit, and comment about their work order as well as complete any documentation that is affiliated with the work order. For whatever reason Spiceworks may need to get migrated to another server. &lt;br /&gt;
&lt;br /&gt;
==Prep==&lt;br /&gt;
Make sure you have access to the following utilities.&lt;br /&gt;
&lt;br /&gt;
*A New Server&lt;br /&gt;
*A Flash Drive&lt;br /&gt;
*A Spiceworks Installation usually found at, &amp;lt;nowiki&amp;gt;https://www.spiceworks.com/download&amp;lt;/nowiki&amp;gt; (note this site will immediately start downloading the Spiceworks Installer)&lt;br /&gt;
&lt;br /&gt;
==Backups==&lt;br /&gt;
[[File:Migrating Wiki 1.png|left|thumb|387x387px]]&lt;br /&gt;
In the old server with your current Spicework installation, you will need to sign in using your account and navigate to the settings tab, which would like this (red circle)...&lt;br /&gt;
&lt;br /&gt;
[[File:Migrating Wiki 2.png|left|thumb|390x390px]]&lt;br /&gt;
Then click on ‘Global Settings’ in the drop down menu. Open up the ‘Backup Configuration’ menu. If you haven't already, insert your Flash Drive into the server. Find the ‘Backup Locations’ menu and change the current path to a path leading to your Flash Drive. Once selected click ‘Backup Now’ at the bottom. (red circle)&lt;br /&gt;
&lt;br /&gt;
Eject the Flash Drive and head over to your new server.&lt;br /&gt;
&lt;br /&gt;
==Installing Spiceworks and Transplanting the Data==&lt;br /&gt;
Once on the new server use the link provided to download the Spiceworks Installer. Make sure the ports mimic the ports of your old server. When given the option Install NMAP and WinPCap through Spiceworks. Once done run the Installer, but '''MAKE SURE''' you '''DO NOT''' start Spiceworks itself, just have it installed. Make sure Spiceworks is completely stopped by checking to see if all the services are stopped. Below are the services. &lt;br /&gt;
 &amp;gt; spiceworks.exe &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spicetray.exe  &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spiceworks-finder.exe  &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spiceworks-httpd.exe  &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spiceworks-httpd.exe&lt;br /&gt;
[[File:Migrating Wiki 3.png|left|thumb|340x340px]]&lt;br /&gt;
If they are all stopped then you can continue with the migration. Find the installation files and open them in File Explorer. Delete the ‘data’ and ‘db’ folders, make sure it is '''ONLY''' these folders that get deleted.        &lt;br /&gt;
&lt;br /&gt;
Now access the Backup files on your Flash Drive and extract them right into the Spiceworks Installation folder. If everything went well new ‘data’ and ‘db’ folders should appear. &lt;br /&gt;
&lt;br /&gt;
==Starting Spiceworks==&lt;br /&gt;
[[File:Migrating Wiki 4.png|left|thumb|342x342px]]&lt;br /&gt;
Navigate to the application titled ‘spiceworks_desktop’ and run it. (red circle)&lt;br /&gt;
&lt;br /&gt;
[[File:Migrating Wiki 5.png|left|thumb|340x340px]]&lt;br /&gt;
&lt;br /&gt;
Spiceworks should now say something like ‘'''''HEATING UP'''''’ or something rather. This might take a few minutes, so just wait. Once it is done ‘'''''HEATING UP'''''’ it should load into a login screen, shown to the left. &lt;br /&gt;
&lt;br /&gt;
If everything went swimmingly you should be able to login using the same credentials from your old Spiceworks server. &lt;br /&gt;
&lt;br /&gt;
==='''''Congrats!'''''===&lt;br /&gt;
Now you just need to disable the Windows Firewall, and add it onto the domain, which is CiscoACA.local for us. Now just test functionality by copying the same URL and entering it on another system, and your good. &lt;br /&gt;
&lt;br /&gt;
-Your Welcome, Koby&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=Migrating_Spiceworks_(Retired)&amp;diff=995</id>
		<title>Migrating Spiceworks (Retired)</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=Migrating_Spiceworks_(Retired)&amp;diff=995"/>
		<updated>2019-09-30T18:31:16Z</updated>

		<summary type="html">&lt;p&gt;KWahl: Made a page documenting the process Migrating Spiceworks.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
Spiceworks is the site at which 24PinTech can access all work orders that have been assigned to a technician. Once a technician is logged in, they can view, edit, and comment about their work order as well as complete any documentation that is affiliated with the work order. For whatever reason Spiceworks may need to get migrated to another server. &lt;br /&gt;
&lt;br /&gt;
== Prep ==&lt;br /&gt;
Make sure you have access to the following utilities.&lt;br /&gt;
&lt;br /&gt;
* A New Server&lt;br /&gt;
* A Flash Drive&lt;br /&gt;
* A Spiceworks Installation usually found at, &amp;lt;nowiki&amp;gt;https://www.spiceworks.com/download&amp;lt;/nowiki&amp;gt; (note this site will immediately start downloading the Spiceworks Installer)&lt;br /&gt;
&lt;br /&gt;
== Backups ==&lt;br /&gt;
[[File:Migrating Wiki 1.png|left|thumb|387x387px]]&lt;br /&gt;
In the old server with your current Spicework installation, you will need to sign in using your account and navigate to the settings tab, which would like this (red circle)...&lt;br /&gt;
&lt;br /&gt;
[[File:Migrating Wiki 2.png|left|thumb|390x390px]]&lt;br /&gt;
Then click on ‘Global Settings’ in the drop down menu. Open up the ‘Backup Configuration’ menu. If you haven't already, insert your Flash Drive into the server. Find the ‘Backup Locations’ menu and change the current path to a path leading to your Flash Drive. Once selected click ‘Backup Now’ at the bottom. (red circle)&lt;br /&gt;
&lt;br /&gt;
Eject the Flash Drive and head over to your new server.&lt;br /&gt;
&lt;br /&gt;
== Installing Spiceworks and Transplanting the Data ==&lt;br /&gt;
Once on the new server use the link provided to download the Spiceworks Installer. Make sure the ports mimic the ports of your old server. When given the option Install NMAP and WinPCap through Spiceworks. Once done run the Installer, but '''MAKE SURE''' you '''DO NOT''' start Spiceworks itself, just have it installed. Make sure Spiceworks is completely stopped by checking to see if all the services are stopped. Below are the services. &lt;br /&gt;
 &amp;gt; spiceworks.exe &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spicetray.exe  &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spiceworks-finder.exe  &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spiceworks-httpd.exe  &lt;br /&gt;
&lt;br /&gt;
 &amp;gt; spiceworks-httpd.exe&lt;br /&gt;
[[File:Migrating Wiki 3.png|left|thumb|340x340px]]&lt;br /&gt;
If they are all stopped then you can continue with the migration. Find the installation files and open them in File Explorer. Delete the ‘data’ and ‘db’ folders, make sure it is '''ONLY''' these folders that get deleted. &lt;br /&gt;
&lt;br /&gt;
Now access the Backup files on your Flash Drive and extract them right into the Spiceworks Installation folder. If everything went well new ‘data’ and ‘db’ folders should appear. &lt;br /&gt;
&lt;br /&gt;
== Starting Spiceworks ==&lt;br /&gt;
[[File:Migrating Wiki 4.png|left|thumb|342x342px]]&lt;br /&gt;
Navigate to the application titled ‘spiceworks_desktop’ and run it. (red circle)&lt;br /&gt;
&lt;br /&gt;
[[File:Migrating Wiki 5.png|left|thumb|340x340px]]&lt;br /&gt;
&lt;br /&gt;
Spiceworks should now say something like ‘'''''HEATING UP'''''’ or something rather. This might take a few minutes, so just wait. Once it is done ‘'''''HEATING UP'''''’ it should load into a login screen, shown to the left. &lt;br /&gt;
&lt;br /&gt;
If everything went swimmingly you should be able to login using the same credentials from your old Spiceworks server. &lt;br /&gt;
&lt;br /&gt;
=== '''''Congrats!''''' ===&lt;br /&gt;
Now you just need to disable the Windows Firewall, and add it onto the domain, which is CiscoACA.local for us. Now just test functionality by copying the same URL and entering it on another system, and your good. &lt;br /&gt;
&lt;br /&gt;
-Your Welcome, Koby&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=File:Migrating_Wiki_5.png&amp;diff=994</id>
		<title>File:Migrating Wiki 5.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=File:Migrating_Wiki_5.png&amp;diff=994"/>
		<updated>2019-09-30T18:25:13Z</updated>

		<summary type="html">&lt;p&gt;KWahl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;More Context&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=File:Migrating_Wiki_4.png&amp;diff=993</id>
		<title>File:Migrating Wiki 4.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=File:Migrating_Wiki_4.png&amp;diff=993"/>
		<updated>2019-09-30T18:23:23Z</updated>

		<summary type="html">&lt;p&gt;KWahl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;More Context&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=File:Migrating_Wiki_3.png&amp;diff=992</id>
		<title>File:Migrating Wiki 3.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=File:Migrating_Wiki_3.png&amp;diff=992"/>
		<updated>2019-09-30T18:21:32Z</updated>

		<summary type="html">&lt;p&gt;KWahl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;More Context&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=File:Migrating_Wiki_2.png&amp;diff=991</id>
		<title>File:Migrating Wiki 2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=File:Migrating_Wiki_2.png&amp;diff=991"/>
		<updated>2019-09-30T18:12:44Z</updated>

		<summary type="html">&lt;p&gt;KWahl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;More Context&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=File:Migrating_Wiki_1.png&amp;diff=990</id>
		<title>File:Migrating Wiki 1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=File:Migrating_Wiki_1.png&amp;diff=990"/>
		<updated>2019-09-30T18:11:09Z</updated>

		<summary type="html">&lt;p&gt;KWahl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;An Image for context to see where the button may be.&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=Migrating_Spiceworks_(Retired)&amp;diff=989</id>
		<title>Migrating Spiceworks (Retired)</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=Migrating_Spiceworks_(Retired)&amp;diff=989"/>
		<updated>2019-09-30T18:03:19Z</updated>

		<summary type="html">&lt;p&gt;KWahl: Created page with &amp;quot;yes&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;yes&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
	<entry>
		<id>https://wiki.24pin.tech/index.php?title=Spiceworks_(Retired)&amp;diff=988</id>
		<title>Spiceworks (Retired)</title>
		<link rel="alternate" type="text/html" href="https://wiki.24pin.tech/index.php?title=Spiceworks_(Retired)&amp;diff=988"/>
		<updated>2019-09-30T17:55:18Z</updated>

		<summary type="html">&lt;p&gt;KWahl: Changed the URL to match our new URL.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Accessing and Using Spiceworks==&lt;br /&gt;
&lt;br /&gt;
'''What is Spiceworks?'''&lt;br /&gt;
&lt;br /&gt;
Spiceworks is the site at which 24PinTech can access all work orders that have been assigned to a technician. Once a technician is logged in, they can view, edit, and comment about their work order as well as complete any documentation that is affiliated with the work order.&lt;br /&gt;
&lt;br /&gt;
'''Accessing Spiceworks'''&lt;br /&gt;
&lt;br /&gt;
Any computer in the 24PinTech classroom can access the Spiceworks service. To access the 24PinTech's reserved section in Spiceworks type the upcoming URL into the address bar and it will take you to the login screen for Spiceworks.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://surtr/pro_users/login&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Assigning Work Orders (Manager)'''&lt;br /&gt;
&lt;br /&gt;
#Log into Spiceworks using your email and password.&lt;br /&gt;
#Towards the top left of the screen you will see a drop down box with “Inventory,&amp;quot; click to drop down other options and navigate to the tab that is labeled “Help Desk.&amp;quot;&lt;br /&gt;
#To enter a work order process into Spiceworks click on “New Ticket” found towards the top middle of the screen.&lt;br /&gt;
#Using information found in the Google work order spreadsheet, give the ticket a name that is related to the customer. In the description text field, include the customer's name, email address and  brief breakdown of the issue. Then assign the ticket to a technician (make sure the assigned technician is the same as the one assigned in the google sheets).&lt;br /&gt;
##Under the comments, enter the client's email address that the technician should use to contact.&lt;br /&gt;
#Inform the technician that they have a new ticket.&lt;br /&gt;
&lt;br /&gt;
'''Adding a New User to Spiceworks'''&lt;br /&gt;
&lt;br /&gt;
#Log into Spiceworks using your email and password.&lt;br /&gt;
#Navigate to the &amp;quot;Help Desk&amp;quot; section.&lt;br /&gt;
#On the right-hand side of the screen you will see a box labeled &amp;quot;Settings&amp;quot;. Click on it.&lt;br /&gt;
#On the left side of the web page under help desk, you will see “User Accounts.&amp;quot; Click on it and it will take you to all the users available on Spiceworks.&lt;br /&gt;
#Towards the right side of the screen you will see “Add Users,&amp;quot; click on it.&lt;br /&gt;
#Fill out the invitation with first and last names and the email the technician uses most often. Assign them a proper role in Spiceworks. (Put billing rate as $0.00)&lt;br /&gt;
#Send invitation&lt;br /&gt;
&lt;br /&gt;
'''Checking Tickets'''&lt;br /&gt;
&lt;br /&gt;
#Log into Spiceworks&lt;br /&gt;
#Towards the top left of the screen you will see a drop down box with “Inventory,&amp;quot; click to drop down other options and navigate to the tab that is labeled “Help Desk.&amp;quot;&lt;br /&gt;
#Next to “Tickets” there is a gray drop down box. The default is labeled “Unassigned Tickets.&amp;quot; Click the drop down box and navigate to “My Tickets.&amp;quot;&lt;br /&gt;
#You will see your assigned work order, with a description and the customer's contact information.&lt;/div&gt;</summary>
		<author><name>KWahl</name></author>
	</entry>
</feed>