<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.wreckroom.nyc/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Josh</id>
	<title>Wreckroom - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.wreckroom.nyc/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Josh"/>
	<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Special:Contributions/Josh"/>
	<updated>2026-04-29T15:38:40Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.2</generator>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=344</id>
		<title>MacPro</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=344"/>
		<updated>2024-01-10T10:04:30Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* DaVinci Resolve Project Server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[MacPro]] is a MacOS server that hosts A/V editing software e.g., [[DaVinci Resolve (Studio)]] and [[DaVinci Resolve Server]].&lt;br /&gt;
&lt;br /&gt;
Born in 2012 and still a formidable machine in the year of our Lord 2024! It has been upgraded with a dual hex-core (12-core) Xeon Processors, 512GB NVMe storage, and 96GB RAM.&lt;br /&gt;
&lt;br /&gt;
It's the only machine we know of that can edit 6K video and still burn CD-ROMs!&lt;br /&gt;
&lt;br /&gt;
For security, there is no port forwarding to the device; it can only be accessed via SSH or VNC over [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve (Studio)]]=&lt;br /&gt;
&lt;br /&gt;
The [[MacPro]] is capable of 6K Video editing locally or remote via [[VNC]] over [[VPN]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;vnc://username@resolve.wreckroom.nyc&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve Project Server]]=&lt;br /&gt;
The [[MacPro]] also hosts the [[DaVinci Resolve Server]] via [[PostgreSQL]].&lt;br /&gt;
&lt;br /&gt;
=== Configuration File===&lt;br /&gt;
Here is the location of the config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo vim /Library/PostgreSQL/13/data/pg_hba.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For the initial configuration, update the config as such:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
# pg_hba.conf file has been edited by DaVinci Project Server. Hence, it is recommended to not edit this file manually.&lt;br /&gt;
# TYPE    DATABASE    USER    ADDRESS    METHOD&lt;br /&gt;
local    all    all    scram-sha-256&lt;br /&gt;
host    all    all    127.0.0.1/32    scram-sha-256&lt;br /&gt;
host    all    all    ::1/128    scram-sha-256&lt;br /&gt;
host all all 192.168.1.0/24 scram-sha-256&lt;br /&gt;
host all all 192.168.3.0/24 scram-sha-256&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note:''' You ''must'' add entries for hosting the WAN (e.g. 192.168.1.0/24) and the VPN (192.168.3.0/24). The VPN address will always need to be added, otherwise you will not be able to connect from [[VPN]].&lt;br /&gt;
&lt;br /&gt;
====Restart Postgres====&lt;br /&gt;
&lt;br /&gt;
Restart the postgres services via terminal to apply changes to config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo -u postgres /Library/PostgreSQL/13/bin/pg_ctl restart -D /Library/PostgreSQL/13/data&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Daily Logs ===&lt;br /&gt;
&lt;br /&gt;
I was able to find the cause of the VPN not connecting by reviewing the logs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo ls /Library/PostgreSQL/13/data/log&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here was the output from the failed config:&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
resolve:~ Joshua$ sudo cat /Library/PostgreSQL/13/data/log/postgresql-2024-01-09_235442.log&lt;br /&gt;
2024-01-09 23:54:42.917 EST [55004] LOG:  starting PostgreSQL 13.4 on x86_64-apple-darwin, compiled by Apple clang version 11.0.3 (clang-1103.0.32.59), 64-bit&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv6 address &amp;quot;::&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv4 address &amp;quot;0.0.0.0&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on Unix socket &amp;quot;/tmp/.s.PGSQL.5432&amp;quot;&lt;br /&gt;
2024-01-09 23:54:42.940 EST [55006] LOG:  database system was shut down at 2024-01-09 23:54:42 EST&lt;br /&gt;
2024-01-09 23:54:42.948 EST [55004] LOG:  database system is ready to accept connections&lt;br /&gt;
2024-01-09 23:54:52.605 EST [55048] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
2024-01-09 23:54:55.709 EST [55049] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Software Updates =&lt;br /&gt;
&lt;br /&gt;
We use [https://dortania.github.io/OpenCore-Legacy-Patcher/ OpenCore] to keep MacOS up-to-date and extend the life of this now vintage machine.&lt;br /&gt;
&lt;br /&gt;
===Limitations===&lt;br /&gt;
&lt;br /&gt;
*As a result, WiFi and Bluetooth no longer work as of OS X Catalina.&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=343</id>
		<title>MacPro</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=343"/>
		<updated>2024-01-10T10:04:03Z</updated>

		<summary type="html">&lt;p&gt;Josh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[MacPro]] is a MacOS server that hosts A/V editing software e.g., [[DaVinci Resolve (Studio)]] and [[DaVinci Resolve Server]].&lt;br /&gt;
&lt;br /&gt;
Born in 2012 and still a formidable machine in the year of our Lord 2024! It has been upgraded with a dual hex-core (12-core) Xeon Processors, 512GB NVMe storage, and 96GB RAM.&lt;br /&gt;
&lt;br /&gt;
It's the only machine we know of that can edit 6K video and still burn CD-ROMs!&lt;br /&gt;
&lt;br /&gt;
For security, there is no port forwarding to the device; it can only be accessed via SSH or VNC over [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve (Studio)]]=&lt;br /&gt;
&lt;br /&gt;
The [[MacPro]] is capable of 6K Video editing locally or remote via [[VNC]] over [[VPN]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;vnc://username@resolve.wreckroom.nyc&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve Project Server]]=&lt;br /&gt;
The [[MacPro]] hosts the [[DaVinci Resolve Server]] via [[PostgreSQL]].&lt;br /&gt;
&lt;br /&gt;
=== Configuration File===&lt;br /&gt;
Here is the location of the config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo vim /Library/PostgreSQL/13/data/pg_hba.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For the initial configuration, update the config as such:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
# pg_hba.conf file has been edited by DaVinci Project Server. Hence, it is recommended to not edit this file manually.&lt;br /&gt;
# TYPE    DATABASE    USER    ADDRESS    METHOD&lt;br /&gt;
local    all    all    scram-sha-256&lt;br /&gt;
host    all    all    127.0.0.1/32    scram-sha-256&lt;br /&gt;
host    all    all    ::1/128    scram-sha-256&lt;br /&gt;
host all all 192.168.1.0/24 scram-sha-256&lt;br /&gt;
host all all 192.168.3.0/24 scram-sha-256&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note:''' You ''must'' add entries for hosting the WAN (e.g. 192.168.1.0/24) and the VPN (192.168.3.0/24). The VPN address will always need to be added, otherwise you will not be able to connect from [[VPN]].&lt;br /&gt;
&lt;br /&gt;
====Restart Postgres====&lt;br /&gt;
&lt;br /&gt;
Restart the postgres services via terminal to apply changes to config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo -u postgres /Library/PostgreSQL/13/bin/pg_ctl restart -D /Library/PostgreSQL/13/data&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Daily Logs ===&lt;br /&gt;
&lt;br /&gt;
I was able to find the cause of the VPN not connecting by reviewing the logs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo ls /Library/PostgreSQL/13/data/log&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here was the output from the failed config:&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
resolve:~ Joshua$ sudo cat /Library/PostgreSQL/13/data/log/postgresql-2024-01-09_235442.log&lt;br /&gt;
2024-01-09 23:54:42.917 EST [55004] LOG:  starting PostgreSQL 13.4 on x86_64-apple-darwin, compiled by Apple clang version 11.0.3 (clang-1103.0.32.59), 64-bit&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv6 address &amp;quot;::&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv4 address &amp;quot;0.0.0.0&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on Unix socket &amp;quot;/tmp/.s.PGSQL.5432&amp;quot;&lt;br /&gt;
2024-01-09 23:54:42.940 EST [55006] LOG:  database system was shut down at 2024-01-09 23:54:42 EST&lt;br /&gt;
2024-01-09 23:54:42.948 EST [55004] LOG:  database system is ready to accept connections&lt;br /&gt;
2024-01-09 23:54:52.605 EST [55048] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
2024-01-09 23:54:55.709 EST [55049] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Software Updates =&lt;br /&gt;
&lt;br /&gt;
We use [https://dortania.github.io/OpenCore-Legacy-Patcher/ OpenCore] to keep MacOS up-to-date and extend the life of this now vintage machine.&lt;br /&gt;
&lt;br /&gt;
===Limitations===&lt;br /&gt;
&lt;br /&gt;
*As a result, WiFi and Bluetooth no longer work as of OS X Catalina.&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=DaVinci_Resolve_Project_Server&amp;diff=342</id>
		<title>DaVinci Resolve Project Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=DaVinci_Resolve_Project_Server&amp;diff=342"/>
		<updated>2024-01-10T10:03:17Z</updated>

		<summary type="html">&lt;p&gt;Josh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[DaVinci Resolve Server]] is a dedicated server which hosts all Resolve projects at [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
This guide is designed to assist you in connecting to the [[DaVinci Resolve Server]]. It's important to note that this server is distinct from the [[Media Server]].&lt;br /&gt;
&lt;br /&gt;
=Prerequisites=&lt;br /&gt;
You must be running '''DaVinci Resolve 18.5''' or '''DaVinci Resolve Studio''' '''18.5''' ''or higher''.&lt;br /&gt;
&lt;br /&gt;
Ensure you are connected to the [[Media Server]] and have access to all the files in the &amp;lt;code&amp;gt;wreckroom&amp;lt;/code&amp;gt; disk.&lt;br /&gt;
&lt;br /&gt;
=Step-by-Step Guide=&lt;br /&gt;
Accessing the DaVinci Project Library through the [[DaVinci Resolve Server]]:&lt;br /&gt;
&lt;br /&gt;
===Network Setting:===&lt;br /&gt;
Begin by being on the network setting in the main open folder when you start the software.&lt;br /&gt;
&lt;br /&gt;
===Add Project Library:===&lt;br /&gt;
Within this section, you have two primary actions: 'Connect' and 'Create'.&lt;br /&gt;
&lt;br /&gt;
===Connect (For Existing Projects):===&lt;br /&gt;
If you need to access an already established project (e.g., remote access from a different location):&lt;br /&gt;
&lt;br /&gt;
Click 'Add Project Library', then go to the 'Connect' tab.&lt;br /&gt;
&lt;br /&gt;
Here, you can access pre-made folders, such as WSP INTERVIEWS, created on '''resolve.wreckroom.nyc'''&lt;br /&gt;
&lt;br /&gt;
By selecting 'Connect', you will onboard all the projects, including those for future months (e.g., December 2023).&lt;br /&gt;
Create (For New Projects):&lt;br /&gt;
&lt;br /&gt;
===Create (For New Projects):===&lt;br /&gt;
&lt;br /&gt;
To create a new folder for projects that haven't been done before (e.g., daylight session, showcase, or a completely new project):&lt;br /&gt;
&lt;br /&gt;
Go under the 'Create' tab after selecting 'Add Project Library'.&lt;br /&gt;
&lt;br /&gt;
Name the new folder, adhering to the naming conventions (preferably in all caps).&lt;br /&gt;
&lt;br /&gt;
Crucial: Set the location to '''resolve.wreckroom.nyc''' to ensure that the new project library is created on the Resolve server.&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
By following these steps, you can effectively log into the [[DaVinci Resolve Server]] and manage your projects. If you encounter any issues or have questions, please don't hesitate to reach out for support.&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=341</id>
		<title>MacPro</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=341"/>
		<updated>2024-01-10T10:02:55Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* DaVinci Resolve Server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[MacPro]] is a MacOS server that hosts A/V editing software e.g., [[DaVinci Resolve Studio]] and [[DaVinci Resolve Server]].&lt;br /&gt;
&lt;br /&gt;
Born in 2012 and still a formidable machine in the year of our Lord 2024! It has been upgraded with a dual hex-core (12-core) Xeon Processors, 512GB NVMe storage, and 96GB RAM.&lt;br /&gt;
&lt;br /&gt;
It's the only machine we know of that can edit 6K video and still burn CD-ROMs!&lt;br /&gt;
&lt;br /&gt;
For security, there is no port forwarding to the device; it can only be accessed via SSH or VNC over [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve (Studio)]]=&lt;br /&gt;
&lt;br /&gt;
The [[MacPro]] is capable of 6K Video editing locally or remote via [[VNC]] over [[VPN]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;vnc://username@resolve.wreckroom.nyc&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve Project Server]]=&lt;br /&gt;
The [[MacPro]] hosts the [[DaVinci Resolve Server]] via [[PostgreSQL]].&lt;br /&gt;
&lt;br /&gt;
=== Configuration File===&lt;br /&gt;
Here is the location of the config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo vim /Library/PostgreSQL/13/data/pg_hba.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For the initial configuration, update the config as such:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
# pg_hba.conf file has been edited by DaVinci Project Server. Hence, it is recommended to not edit this file manually.&lt;br /&gt;
# TYPE    DATABASE    USER    ADDRESS    METHOD&lt;br /&gt;
local    all    all    scram-sha-256&lt;br /&gt;
host    all    all    127.0.0.1/32    scram-sha-256&lt;br /&gt;
host    all    all    ::1/128    scram-sha-256&lt;br /&gt;
host all all 192.168.1.0/24 scram-sha-256&lt;br /&gt;
host all all 192.168.3.0/24 scram-sha-256&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note:''' You ''must'' add entries for hosting the WAN (e.g. 192.168.1.0/24) and the VPN (192.168.3.0/24). The VPN address will always need to be added, otherwise you will not be able to connect from [[VPN]].&lt;br /&gt;
&lt;br /&gt;
====Restart Postgres====&lt;br /&gt;
&lt;br /&gt;
Restart the postgres services via terminal to apply changes to config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo -u postgres /Library/PostgreSQL/13/bin/pg_ctl restart -D /Library/PostgreSQL/13/data&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Daily Logs ===&lt;br /&gt;
&lt;br /&gt;
I was able to find the cause of the VPN not connecting by reviewing the logs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo ls /Library/PostgreSQL/13/data/log&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here was the output from the failed config:&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
resolve:~ Joshua$ sudo cat /Library/PostgreSQL/13/data/log/postgresql-2024-01-09_235442.log&lt;br /&gt;
2024-01-09 23:54:42.917 EST [55004] LOG:  starting PostgreSQL 13.4 on x86_64-apple-darwin, compiled by Apple clang version 11.0.3 (clang-1103.0.32.59), 64-bit&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv6 address &amp;quot;::&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv4 address &amp;quot;0.0.0.0&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on Unix socket &amp;quot;/tmp/.s.PGSQL.5432&amp;quot;&lt;br /&gt;
2024-01-09 23:54:42.940 EST [55006] LOG:  database system was shut down at 2024-01-09 23:54:42 EST&lt;br /&gt;
2024-01-09 23:54:42.948 EST [55004] LOG:  database system is ready to accept connections&lt;br /&gt;
2024-01-09 23:54:52.605 EST [55048] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
2024-01-09 23:54:55.709 EST [55049] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Software Updates =&lt;br /&gt;
&lt;br /&gt;
We use [https://dortania.github.io/OpenCore-Legacy-Patcher/ OpenCore] to keep MacOS up-to-date and extend the life of this now vintage machine.&lt;br /&gt;
&lt;br /&gt;
===Limitations===&lt;br /&gt;
&lt;br /&gt;
*As a result, WiFi and Bluetooth no longer work as of OS X Catalina.&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Web_Server&amp;diff=340</id>
		<title>Web Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Web_Server&amp;diff=340"/>
		<updated>2024-01-10T09:12:02Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* PM2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Synology hosts [https://wreckroom.nyc https://wreckroom.nyc] over 443 using a NGINX Reverse Proxy via &amp;lt;code&amp;gt;localhost:3000&amp;lt;/code&amp;gt;.&lt;br /&gt;
==PM2==&lt;br /&gt;
&lt;br /&gt;
'''PM2''' is a process manager that serves the [https://en.wikipedia.org/wiki/Npm npm] NextJS App [https://wreckroom.nyc https://wreckroom.nyc]&lt;br /&gt;
&lt;br /&gt;
Upon restarting the Synology, you will to restart PM2 in &amp;lt;code&amp;gt;/volume1/wreckroom.nyc/wreckroom&amp;lt;/code&amp;gt; by following these steps:&lt;br /&gt;
&lt;br /&gt;
#End all processes: &amp;lt;code&amp;gt;sudo pm2 delete all&amp;lt;/code&amp;gt;.&lt;br /&gt;
#Start the [https://en.wikipedia.org/wiki/Npm npm] process using '''PM2''': &amp;lt;code&amp;gt;sudo pm2 start npm -- start&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If you are having issues with '''PM2''' process manager serving the NextJS app (when &amp;lt;code&amp;gt;sudo npm run start&amp;lt;/code&amp;gt; works fine), use the above steps as well.&lt;br /&gt;
&lt;br /&gt;
==Certificates==&lt;br /&gt;
If you make changes to a Certificate's FQDN, in addition to migrating the certificate, you ''must'' go to Control Panel / Login Portal / Advanced / Reverse Proxy. The hostname must be changed there for everything to work properly! This took half a day to figure out last time, hope it saves you some time in the future :)&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Web_Server&amp;diff=339</id>
		<title>Web Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Web_Server&amp;diff=339"/>
		<updated>2024-01-10T09:11:32Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* PM2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Synology hosts [https://wreckroom.nyc https://wreckroom.nyc] over 443 using a NGINX Reverse Proxy via &amp;lt;code&amp;gt;localhost:3000&amp;lt;/code&amp;gt;.&lt;br /&gt;
==PM2==&lt;br /&gt;
&lt;br /&gt;
'''PM2''' is a process manager that serves the [https://en.wikipedia.org/wiki/Npm npm] NextJS App [https://wreckroom.nyc https://wreckroom.nyc]&lt;br /&gt;
&lt;br /&gt;
Upon restarting the Synology, you will to restart PM2 in &amp;lt;code&amp;gt;/volume1/wreckroom.nyc/wreckroom&amp;lt;/code&amp;gt; by following these steps:&lt;br /&gt;
&lt;br /&gt;
#End all processes: &amp;lt;code&amp;gt;sudo pm2 delete all&amp;lt;/code&amp;gt;.&lt;br /&gt;
#Start the [https://en.wikipedia.org/wiki/Npm npm] process using '''PM2''': &amp;lt;code&amp;gt;sudo pm2 start npm -- start&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If you are having issues with '''PM2''' process manager serving the NextJs app (when &amp;lt;code&amp;gt;sudo npm run start&amp;lt;/code&amp;gt; works fine), use the above steps as well.&lt;br /&gt;
&lt;br /&gt;
==Certificates==&lt;br /&gt;
If you make changes to a Certificate's FQDN, in addition to migrating the certificate, you ''must'' go to Control Panel / Login Portal / Advanced / Reverse Proxy. The hostname must be changed there for everything to work properly! This took half a day to figure out last time, hope it saves you some time in the future :)&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Synology&amp;diff=338</id>
		<title>Synology</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Synology&amp;diff=338"/>
		<updated>2024-01-10T09:11:03Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* SMB File Server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Public=&lt;br /&gt;
&lt;br /&gt;
===[[MediaWiki]]===&lt;br /&gt;
Uses MariaDB 10 and MediaWiki applications.&lt;br /&gt;
&lt;br /&gt;
===[[Web Server]]===&lt;br /&gt;
NGINX reverse proxy runs wreckroom.nyc over 443/3000.&lt;br /&gt;
&lt;br /&gt;
==Private==&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Serves files behind the [[VPN]].&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Synology&amp;diff=337</id>
		<title>Synology</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Synology&amp;diff=337"/>
		<updated>2024-01-10T09:10:42Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* =Public */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Public=&lt;br /&gt;
&lt;br /&gt;
===[[MediaWiki]]===&lt;br /&gt;
Uses MariaDB 10 and MediaWiki applications.&lt;br /&gt;
&lt;br /&gt;
===[[Web Server]]===&lt;br /&gt;
NGINX reverse proxy runs wreckroom.nyc over 443/3000.&lt;br /&gt;
&lt;br /&gt;
==Private==&lt;br /&gt;
===[[SMB File Server]]===&lt;br /&gt;
Serves files behind the [[VPN]].&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=VPN&amp;diff=336</id>
		<title>VPN</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=VPN&amp;diff=336"/>
		<updated>2024-01-10T09:10:22Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* SMB File Server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A [[VPN]] is a virtual private network which allows remote users to access resources (files, audio, video and DaVinci Resolve projects) on another person organizations local network, over the internet. &lt;br /&gt;
&lt;br /&gt;
Once connected to the VPN it is like your are at [[Wreckroom]] studios.&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
&lt;br /&gt;
To setup a [[VPN]] Connection reach out to Justin for the login credentials.&lt;br /&gt;
&lt;br /&gt;
===[[Meida Server]]===&lt;br /&gt;
&lt;br /&gt;
Once you are connected to the [[VPN]] you would connect to the wreckroom drive via the [[Media Server]].&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Server]]===&lt;br /&gt;
If you are working on editing within a DaVinci Resolve project click [[DaVinci Resolve Server | here]].&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=UniFi&amp;diff=335</id>
		<title>UniFi</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=UniFi&amp;diff=335"/>
		<updated>2024-01-10T09:09:54Z</updated>

		<summary type="html">&lt;p&gt;Josh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Network Topology =&lt;br /&gt;
&lt;br /&gt;
https://app.diagrams.net/#G11IoJb1M7YoS0FUSj-TjkHPVlAgNTu0S4&lt;br /&gt;
&lt;br /&gt;
===[[VPN | OpenVPN]]===&lt;br /&gt;
Runs on TCP port 1194 hosted on [[UniFi | UniFi Network]].&lt;br /&gt;
&lt;br /&gt;
===Adopting Devices===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ssh command&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Synology&amp;diff=334</id>
		<title>Synology</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Synology&amp;diff=334"/>
		<updated>2024-01-10T09:09:41Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Public */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
==Public=&lt;br /&gt;
&lt;br /&gt;
===[[MediaWiki]]===&lt;br /&gt;
Uses MariaDB 10 and MediaWiki applications.&lt;br /&gt;
&lt;br /&gt;
===[[Web Server]]===&lt;br /&gt;
NGINX reverse proxy runs wreckroom.nyc over 443/3000.&lt;br /&gt;
&lt;br /&gt;
==Private==&lt;br /&gt;
===[[SMB File Server]]===&lt;br /&gt;
Serves files behind the [[VPN]].&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=333</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=333"/>
		<updated>2024-01-10T08:44:32Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Access */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
JK: What is a media vertical?&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
JK: What is this?&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
JK: What is that?&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[Media Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Connect to [[Wreckroom]]'s vast media library.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
Learn how creating proxy media on the [[Media Server]] helps speed up performance over the [[DaVinci Resolve Project Server]]!&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
We have a 2.5G network...LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=332</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=332"/>
		<updated>2024-01-10T08:44:21Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Access */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
JK: What is a media vertical?&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
JK: What is this?&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
JK: What is that?&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[Meida Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Connect to [[Wreckroom]]'s vast media library.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
Learn how creating proxy media on the [[Media Server]] helps speed up performance over the [[DaVinci Resolve Project Server]]!&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
We have a 2.5G network...LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=DaVinci_Resolve_Project_Server&amp;diff=331</id>
		<title>DaVinci Resolve Project Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=DaVinci_Resolve_Project_Server&amp;diff=331"/>
		<updated>2024-01-10T08:41:12Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Prerequisites */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[DaVinci Resolve Server]] is a dedicated server which hosts all Resolve projects at [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
This guide is designed to assist you in connecting to the [[DaVinci Resolve Server]]. It's important to note that this server is distinct from the [[SMB File Server]].&lt;br /&gt;
&lt;br /&gt;
=Prerequisites=&lt;br /&gt;
You must be running '''DaVinci Resolve 18.5''' or '''DaVinci Resolve Studio''' '''18.5''' ''or higher''.&lt;br /&gt;
&lt;br /&gt;
Ensure you are connected to the [[Media Server]] and have access to all the files in the &amp;lt;code&amp;gt;wreckroom&amp;lt;/code&amp;gt; disk.&lt;br /&gt;
&lt;br /&gt;
=Step-by-Step Guide=&lt;br /&gt;
Accessing the DaVinci Project Library through the [[DaVinci Resolve Server]]:&lt;br /&gt;
&lt;br /&gt;
===Network Setting:===&lt;br /&gt;
Begin by being on the network setting in the main open folder when you start the software.&lt;br /&gt;
&lt;br /&gt;
===Add Project Library:===&lt;br /&gt;
Within this section, you have two primary actions: 'Connect' and 'Create'.&lt;br /&gt;
&lt;br /&gt;
===Connect (For Existing Projects):===&lt;br /&gt;
If you need to access an already established project (e.g., remote access from a different location):&lt;br /&gt;
&lt;br /&gt;
Click 'Add Project Library', then go to the 'Connect' tab.&lt;br /&gt;
&lt;br /&gt;
Here, you can access pre-made folders, such as WSP INTERVIEWS, created on '''resolve.wreckroom.nyc'''&lt;br /&gt;
&lt;br /&gt;
By selecting 'Connect', you will onboard all the projects, including those for future months (e.g., December 2023).&lt;br /&gt;
Create (For New Projects):&lt;br /&gt;
&lt;br /&gt;
===Create (For New Projects):===&lt;br /&gt;
&lt;br /&gt;
To create a new folder for projects that haven't been done before (e.g., daylight session, showcase, or a completely new project):&lt;br /&gt;
&lt;br /&gt;
Go under the 'Create' tab after selecting 'Add Project Library'.&lt;br /&gt;
&lt;br /&gt;
Name the new folder, adhering to the naming conventions (preferably in all caps).&lt;br /&gt;
&lt;br /&gt;
Crucial: Set the location to '''resolve.wreckroom.nyc''' to ensure that the new project library is created on the Resolve server.&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
By following these steps, you can effectively log into the [[DaVinci Resolve Server]] and manage your projects. If you encounter any issues or have questions, please don't hesitate to reach out for support.&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=330</id>
		<title>MacPro</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=330"/>
		<updated>2024-01-10T08:40:14Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Software Updates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[MacPro]] is a MacOS server that hosts A/V editing software e.g., [[DaVinci Resolve Studio]] and [[DaVinci Resolve Server]].&lt;br /&gt;
&lt;br /&gt;
Born in 2012 and still a formidable machine in the year of our Lord 2024! It has been upgraded with a dual hex-core (12-core) Xeon Processors, 512GB NVMe storage, and 96GB RAM.&lt;br /&gt;
&lt;br /&gt;
It's the only machine we know of that can edit 6K video and still burn CD-ROMs!&lt;br /&gt;
&lt;br /&gt;
For security, there is no port forwarding to the device; it can only be accessed via SSH or VNC over [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve (Studio)]]=&lt;br /&gt;
&lt;br /&gt;
The [[MacPro]] is capable of 6K Video editing locally or remote via [[VNC]] over [[VPN]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;vnc://username@resolve.wreckroom.nyc&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve Server]]=&lt;br /&gt;
The [[MacPro]] hosts the [[DaVinci Resolve Server]] via [[PostgreSQL]].&lt;br /&gt;
&lt;br /&gt;
=== Configuration File===&lt;br /&gt;
Here is the location of the config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo vim /Library/PostgreSQL/13/data/pg_hba.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For the initial configuration, update the config as such:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
# pg_hba.conf file has been edited by DaVinci Project Server. Hence, it is recommended to not edit this file manually.&lt;br /&gt;
# TYPE    DATABASE    USER    ADDRESS    METHOD&lt;br /&gt;
local    all    all    scram-sha-256&lt;br /&gt;
host    all    all    127.0.0.1/32    scram-sha-256&lt;br /&gt;
host    all    all    ::1/128    scram-sha-256&lt;br /&gt;
host all all 192.168.1.0/24 scram-sha-256&lt;br /&gt;
host all all 192.168.3.0/24 scram-sha-256&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note:''' You ''must'' add entries for hosting the WAN (e.g. 192.168.1.0/24) and the VPN (192.168.3.0/24). The VPN address will always need to be added, otherwise you will not be able to connect from [[VPN]].&lt;br /&gt;
&lt;br /&gt;
====Restart Postgres====&lt;br /&gt;
&lt;br /&gt;
Restart the postgres services via terminal to apply changes to config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo -u postgres /Library/PostgreSQL/13/bin/pg_ctl restart -D /Library/PostgreSQL/13/data&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Daily Logs ===&lt;br /&gt;
&lt;br /&gt;
I was able to find the cause of the VPN not connecting by reviewing the logs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo ls /Library/PostgreSQL/13/data/log&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here was the output from the failed config:&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
resolve:~ Joshua$ sudo cat /Library/PostgreSQL/13/data/log/postgresql-2024-01-09_235442.log&lt;br /&gt;
2024-01-09 23:54:42.917 EST [55004] LOG:  starting PostgreSQL 13.4 on x86_64-apple-darwin, compiled by Apple clang version 11.0.3 (clang-1103.0.32.59), 64-bit&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv6 address &amp;quot;::&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv4 address &amp;quot;0.0.0.0&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on Unix socket &amp;quot;/tmp/.s.PGSQL.5432&amp;quot;&lt;br /&gt;
2024-01-09 23:54:42.940 EST [55006] LOG:  database system was shut down at 2024-01-09 23:54:42 EST&lt;br /&gt;
2024-01-09 23:54:42.948 EST [55004] LOG:  database system is ready to accept connections&lt;br /&gt;
2024-01-09 23:54:52.605 EST [55048] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
2024-01-09 23:54:55.709 EST [55049] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Software Updates =&lt;br /&gt;
&lt;br /&gt;
We use [https://dortania.github.io/OpenCore-Legacy-Patcher/ OpenCore] to keep MacOS up-to-date and extend the life of this now vintage machine.&lt;br /&gt;
&lt;br /&gt;
===Limitations===&lt;br /&gt;
&lt;br /&gt;
*As a result, WiFi and Bluetooth no longer work as of OS X Catalina.&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=329</id>
		<title>MacPro</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=329"/>
		<updated>2024-01-10T08:36:14Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Configuration File */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[MacPro]] is a MacOS server that hosts A/V editing software e.g., [[DaVinci Resolve Studio]] and [[DaVinci Resolve Server]].&lt;br /&gt;
&lt;br /&gt;
Born in 2012 and still a formidable machine in the year of our Lord 2024! It has been upgraded with a dual hex-core (12-core) Xeon Processors, 512GB NVMe storage, and 96GB RAM.&lt;br /&gt;
&lt;br /&gt;
It's the only machine we know of that can edit 6K video and still burn CD-ROMs!&lt;br /&gt;
&lt;br /&gt;
For security, there is no port forwarding to the device; it can only be accessed via SSH or VNC over [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve (Studio)]]=&lt;br /&gt;
&lt;br /&gt;
The [[MacPro]] is capable of 6K Video editing locally or remote via [[VNC]] over [[VPN]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;vnc://username@resolve.wreckroom.nyc&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve Server]]=&lt;br /&gt;
The [[MacPro]] hosts the [[DaVinci Resolve Server]] via [[PostgreSQL]].&lt;br /&gt;
&lt;br /&gt;
=== Configuration File===&lt;br /&gt;
Here is the location of the config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo vim /Library/PostgreSQL/13/data/pg_hba.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For the initial configuration, update the config as such:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
# pg_hba.conf file has been edited by DaVinci Project Server. Hence, it is recommended to not edit this file manually.&lt;br /&gt;
# TYPE    DATABASE    USER    ADDRESS    METHOD&lt;br /&gt;
local    all    all    scram-sha-256&lt;br /&gt;
host    all    all    127.0.0.1/32    scram-sha-256&lt;br /&gt;
host    all    all    ::1/128    scram-sha-256&lt;br /&gt;
host all all 192.168.1.0/24 scram-sha-256&lt;br /&gt;
host all all 192.168.3.0/24 scram-sha-256&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note:''' You ''must'' add entries for hosting the WAN (e.g. 192.168.1.0/24) and the VPN (192.168.3.0/24). The VPN address will always need to be added, otherwise you will not be able to connect from [[VPN]].&lt;br /&gt;
&lt;br /&gt;
====Restart Postgres====&lt;br /&gt;
&lt;br /&gt;
Restart the postgres services via terminal to apply changes to config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo -u postgres /Library/PostgreSQL/13/bin/pg_ctl restart -D /Library/PostgreSQL/13/data&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Daily Logs ===&lt;br /&gt;
&lt;br /&gt;
I was able to find the cause of the VPN not connecting by reviewing the logs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo ls /Library/PostgreSQL/13/data/log&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here was the output from the failed config:&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
resolve:~ Joshua$ sudo cat /Library/PostgreSQL/13/data/log/postgresql-2024-01-09_235442.log&lt;br /&gt;
2024-01-09 23:54:42.917 EST [55004] LOG:  starting PostgreSQL 13.4 on x86_64-apple-darwin, compiled by Apple clang version 11.0.3 (clang-1103.0.32.59), 64-bit&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv6 address &amp;quot;::&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv4 address &amp;quot;0.0.0.0&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on Unix socket &amp;quot;/tmp/.s.PGSQL.5432&amp;quot;&lt;br /&gt;
2024-01-09 23:54:42.940 EST [55006] LOG:  database system was shut down at 2024-01-09 23:54:42 EST&lt;br /&gt;
2024-01-09 23:54:42.948 EST [55004] LOG:  database system is ready to accept connections&lt;br /&gt;
2024-01-09 23:54:52.605 EST [55048] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
2024-01-09 23:54:55.709 EST [55049] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Software Updates =&lt;br /&gt;
&lt;br /&gt;
We use [https://dortania.github.io/OpenCore-Legacy-Patcher/ OpenCore] to keep MacOS up-to-date and extend the life of this now vintage machine.&lt;br /&gt;
&lt;br /&gt;
As a result, WiFi and Bluetooth no longer work as of OS X Catalina.&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=328</id>
		<title>MacPro</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=328"/>
		<updated>2024-01-10T08:35:36Z</updated>

		<summary type="html">&lt;p&gt;Josh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[MacPro]] is a MacOS server that hosts A/V editing software e.g., [[DaVinci Resolve Studio]] and [[DaVinci Resolve Server]].&lt;br /&gt;
&lt;br /&gt;
Born in 2012 and still a formidable machine in the year of our Lord 2024! It has been upgraded with a dual hex-core (12-core) Xeon Processors, 512GB NVMe storage, and 96GB RAM.&lt;br /&gt;
&lt;br /&gt;
It's the only machine we know of that can edit 6K video and still burn CD-ROMs!&lt;br /&gt;
&lt;br /&gt;
For security, there is no port forwarding to the device; it can only be accessed via SSH or VNC over [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve (Studio)]]=&lt;br /&gt;
&lt;br /&gt;
The [[MacPro]] is capable of 6K Video editing locally or remote via [[VNC]] over [[VPN]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;vnc://username@resolve.wreckroom.nyc&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve Server]]=&lt;br /&gt;
The [[MacPro]] hosts the [[DaVinci Resolve Server]] via [[PostgreSQL]].&lt;br /&gt;
&lt;br /&gt;
=== Configuration File===&lt;br /&gt;
Here is the location of the config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo vim /Library/PostgreSQL/13/data/pg_hba.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Update the config as such:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
# pg_hba.conf file has been edited by DaVinci Project Server. Hence, it is recommended to not edit this file manually.&lt;br /&gt;
# TYPE    DATABASE    USER    ADDRESS    METHOD&lt;br /&gt;
local    all    all    scram-sha-256&lt;br /&gt;
host    all    all    127.0.0.1/32    scram-sha-256&lt;br /&gt;
host    all    all    ::1/128    scram-sha-256&lt;br /&gt;
host all all 192.168.1.0/24 scram-sha-256&lt;br /&gt;
host all all 192.168.3.0/24 scram-sha-256&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note:''' You ''must'' add entries for hosting the WAN (e.g. 192.168.1.0/24) and the VPN (192.168.3.0/24). The VPN address will always need to be added, otherwise you will not be able to connect from [[VPN]].&lt;br /&gt;
&lt;br /&gt;
====Restart Postgres====&lt;br /&gt;
&lt;br /&gt;
Restart the postgres services via terminal to apply changes to config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo -u postgres /Library/PostgreSQL/13/bin/pg_ctl restart -D /Library/PostgreSQL/13/data&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Daily Logs ===&lt;br /&gt;
&lt;br /&gt;
I was able to find the cause of the VPN not connecting by reviewing the logs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo ls /Library/PostgreSQL/13/data/log&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here was the output from the failed config:&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
resolve:~ Joshua$ sudo cat /Library/PostgreSQL/13/data/log/postgresql-2024-01-09_235442.log&lt;br /&gt;
2024-01-09 23:54:42.917 EST [55004] LOG:  starting PostgreSQL 13.4 on x86_64-apple-darwin, compiled by Apple clang version 11.0.3 (clang-1103.0.32.59), 64-bit&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv6 address &amp;quot;::&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv4 address &amp;quot;0.0.0.0&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on Unix socket &amp;quot;/tmp/.s.PGSQL.5432&amp;quot;&lt;br /&gt;
2024-01-09 23:54:42.940 EST [55006] LOG:  database system was shut down at 2024-01-09 23:54:42 EST&lt;br /&gt;
2024-01-09 23:54:42.948 EST [55004] LOG:  database system is ready to accept connections&lt;br /&gt;
2024-01-09 23:54:52.605 EST [55048] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
2024-01-09 23:54:55.709 EST [55049] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Software Updates =&lt;br /&gt;
&lt;br /&gt;
We use [https://dortania.github.io/OpenCore-Legacy-Patcher/ OpenCore] to keep MacOS up-to-date and extend the life of this now vintage machine.&lt;br /&gt;
&lt;br /&gt;
As a result, WiFi and Bluetooth no longer work as of OS X Catalina.&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=327</id>
		<title>MacPro</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=327"/>
		<updated>2024-01-10T08:35:04Z</updated>

		<summary type="html">&lt;p&gt;Josh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[MacPro]] is a MacOS server that hosts A/V editing software e.g., [[DaVinci Resolve Studio]] and [[DaVinci Resolve Server]].&lt;br /&gt;
&lt;br /&gt;
Born in 2012 and still a formidable machine in the year of our Lord 2024! It has been upgraded with a dual hex-core (12-core) Xeon Processors, 512GB NVMe storage, and 96GB RAM.&lt;br /&gt;
&lt;br /&gt;
It can edit 6K video and it can still burn CD-ROMs!&lt;br /&gt;
&lt;br /&gt;
For security, there is no port forwarding to the device; it can only be accessed via SSH or VNC over [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve (Studio)]]=&lt;br /&gt;
&lt;br /&gt;
The [[MacPro]] is capable of 6K Video editing locally or remote via [[VNC]] over [[VPN]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;vnc://username@resolve.wreckroom.nyc&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve Server]]=&lt;br /&gt;
The [[MacPro]] hosts the [[DaVinci Resolve Server]] via [[PostgreSQL]].&lt;br /&gt;
&lt;br /&gt;
=== Configuration File===&lt;br /&gt;
Here is the location of the config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo vim /Library/PostgreSQL/13/data/pg_hba.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Update the config as such:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
# pg_hba.conf file has been edited by DaVinci Project Server. Hence, it is recommended to not edit this file manually.&lt;br /&gt;
# TYPE    DATABASE    USER    ADDRESS    METHOD&lt;br /&gt;
local    all    all    scram-sha-256&lt;br /&gt;
host    all    all    127.0.0.1/32    scram-sha-256&lt;br /&gt;
host    all    all    ::1/128    scram-sha-256&lt;br /&gt;
host all all 192.168.1.0/24 scram-sha-256&lt;br /&gt;
host all all 192.168.3.0/24 scram-sha-256&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note:''' You ''must'' add entries for hosting the WAN (e.g. 192.168.1.0/24) and the VPN (192.168.3.0/24). The VPN address will always need to be added, otherwise you will not be able to connect from [[VPN]].&lt;br /&gt;
&lt;br /&gt;
====Restart Postgres====&lt;br /&gt;
&lt;br /&gt;
Restart the postgres services via terminal to apply changes to config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo -u postgres /Library/PostgreSQL/13/bin/pg_ctl restart -D /Library/PostgreSQL/13/data&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Daily Logs ===&lt;br /&gt;
&lt;br /&gt;
I was able to find the cause of the VPN not connecting by reviewing the logs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo ls /Library/PostgreSQL/13/data/log&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here was the output from the failed config:&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
resolve:~ Joshua$ sudo cat /Library/PostgreSQL/13/data/log/postgresql-2024-01-09_235442.log&lt;br /&gt;
2024-01-09 23:54:42.917 EST [55004] LOG:  starting PostgreSQL 13.4 on x86_64-apple-darwin, compiled by Apple clang version 11.0.3 (clang-1103.0.32.59), 64-bit&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv6 address &amp;quot;::&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv4 address &amp;quot;0.0.0.0&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on Unix socket &amp;quot;/tmp/.s.PGSQL.5432&amp;quot;&lt;br /&gt;
2024-01-09 23:54:42.940 EST [55006] LOG:  database system was shut down at 2024-01-09 23:54:42 EST&lt;br /&gt;
2024-01-09 23:54:42.948 EST [55004] LOG:  database system is ready to accept connections&lt;br /&gt;
2024-01-09 23:54:52.605 EST [55048] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
2024-01-09 23:54:55.709 EST [55049] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Software Updates =&lt;br /&gt;
&lt;br /&gt;
We use [https://dortania.github.io/OpenCore-Legacy-Patcher/ OpenCore] to keep MacOS up-to-date and extend the life of this now vintage machine.&lt;br /&gt;
&lt;br /&gt;
As a result, WiFi and Bluetooth no longer work as of OS X Catalina.&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=326</id>
		<title>MacPro</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=326"/>
		<updated>2024-01-10T08:34:26Z</updated>

		<summary type="html">&lt;p&gt;Josh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[MacPro]] is a MacOS server that hosts A/V editing software e.g., [[DaVinci Resolve Studio]] and [[DaVinci Resolve Server]].&lt;br /&gt;
&lt;br /&gt;
Born in 2012 and still a formidable machine in the year of our Lord 2024! It has been upgraded with a dual hex-core (12-core) Xeon Processors, 1TB NVMe storage, and 96GB RAM.&lt;br /&gt;
&lt;br /&gt;
It can edit 6K video and it can still burn CD-ROMs!&lt;br /&gt;
&lt;br /&gt;
For security, there is no port forwarding to the device; it can only be accessed via SSH or VNC over [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve (Studio)]]=&lt;br /&gt;
&lt;br /&gt;
The [[MacPro]] is capable of 6K Video editing locally or remote via [[VNC]] over [[VPN]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;vnc://username@resolve.wreckroom.nyc&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve Server]]=&lt;br /&gt;
The [[MacPro]] hosts the [[DaVinci Resolve Server]] via [[PostgreSQL]].&lt;br /&gt;
&lt;br /&gt;
=== Configuration File===&lt;br /&gt;
Here is the location of the config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo vim /Library/PostgreSQL/13/data/pg_hba.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Update the config as such:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
# pg_hba.conf file has been edited by DaVinci Project Server. Hence, it is recommended to not edit this file manually.&lt;br /&gt;
# TYPE    DATABASE    USER    ADDRESS    METHOD&lt;br /&gt;
local    all    all    scram-sha-256&lt;br /&gt;
host    all    all    127.0.0.1/32    scram-sha-256&lt;br /&gt;
host    all    all    ::1/128    scram-sha-256&lt;br /&gt;
host all all 192.168.1.0/24 scram-sha-256&lt;br /&gt;
host all all 192.168.3.0/24 scram-sha-256&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note:''' You ''must'' add entries for hosting the WAN (e.g. 192.168.1.0/24) and the VPN (192.168.3.0/24). The VPN address will always need to be added, otherwise you will not be able to connect from [[VPN]].&lt;br /&gt;
&lt;br /&gt;
====Restart Postgres====&lt;br /&gt;
&lt;br /&gt;
Restart the postgres services via terminal to apply changes to config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo -u postgres /Library/PostgreSQL/13/bin/pg_ctl restart -D /Library/PostgreSQL/13/data&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Daily Logs ===&lt;br /&gt;
&lt;br /&gt;
I was able to find the cause of the VPN not connecting by reviewing the logs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo ls /Library/PostgreSQL/13/data/log&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here was the output from the failed config:&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
resolve:~ Joshua$ sudo cat /Library/PostgreSQL/13/data/log/postgresql-2024-01-09_235442.log&lt;br /&gt;
2024-01-09 23:54:42.917 EST [55004] LOG:  starting PostgreSQL 13.4 on x86_64-apple-darwin, compiled by Apple clang version 11.0.3 (clang-1103.0.32.59), 64-bit&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv6 address &amp;quot;::&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv4 address &amp;quot;0.0.0.0&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on Unix socket &amp;quot;/tmp/.s.PGSQL.5432&amp;quot;&lt;br /&gt;
2024-01-09 23:54:42.940 EST [55006] LOG:  database system was shut down at 2024-01-09 23:54:42 EST&lt;br /&gt;
2024-01-09 23:54:42.948 EST [55004] LOG:  database system is ready to accept connections&lt;br /&gt;
2024-01-09 23:54:52.605 EST [55048] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
2024-01-09 23:54:55.709 EST [55049] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Software Updates =&lt;br /&gt;
&lt;br /&gt;
We use [https://dortania.github.io/OpenCore-Legacy-Patcher/ OpenCore] to keep MacOS up-to-date and extend the life of this now vintage machine.&lt;br /&gt;
&lt;br /&gt;
As a result, WiFi and Bluetooth no longer work as of OS X Catalina.&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=325</id>
		<title>MacPro</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=325"/>
		<updated>2024-01-10T08:34:01Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[MacPro]] is a MacOS server that hosts A/V editing software e.g., [[DaVinci Resolve Studio]] and [[DaVinci Resolve Server]].&lt;br /&gt;
&lt;br /&gt;
Born in 2012 and still a formidable machine in the year of our lord 2024! It has been upgraded with a dual hex-core (12-core) Xeon Processors, 1TB NVMe storage, and 96GB RAM.&lt;br /&gt;
&lt;br /&gt;
It can edit 6K video and it can still burn CD-ROMs!&lt;br /&gt;
&lt;br /&gt;
For security, there is no port forwarding to the device; it can only be accessed via SSH or VNC over [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve (Studio)]]=&lt;br /&gt;
&lt;br /&gt;
The [[MacPro]] is capable of 6K Video editing locally or remote via [[VNC]] over [[VPN]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;vnc://username@resolve.wreckroom.nyc&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve Server]]=&lt;br /&gt;
The [[MacPro]] hosts the [[DaVinci Resolve Server]] via [[PostgreSQL]].&lt;br /&gt;
&lt;br /&gt;
=== Configuration File===&lt;br /&gt;
Here is the location of the config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo vim /Library/PostgreSQL/13/data/pg_hba.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Update the config as such:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
# pg_hba.conf file has been edited by DaVinci Project Server. Hence, it is recommended to not edit this file manually.&lt;br /&gt;
# TYPE    DATABASE    USER    ADDRESS    METHOD&lt;br /&gt;
local    all    all    scram-sha-256&lt;br /&gt;
host    all    all    127.0.0.1/32    scram-sha-256&lt;br /&gt;
host    all    all    ::1/128    scram-sha-256&lt;br /&gt;
host all all 192.168.1.0/24 scram-sha-256&lt;br /&gt;
host all all 192.168.3.0/24 scram-sha-256&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note:''' You ''must'' add entries for hosting the WAN (e.g. 192.168.1.0/24) and the VPN (192.168.3.0/24). The VPN address will always need to be added, otherwise you will not be able to connect from [[VPN]].&lt;br /&gt;
&lt;br /&gt;
====Restart Postgres====&lt;br /&gt;
&lt;br /&gt;
Restart the postgres services via terminal to apply changes to config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo -u postgres /Library/PostgreSQL/13/bin/pg_ctl restart -D /Library/PostgreSQL/13/data&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Daily Logs ===&lt;br /&gt;
&lt;br /&gt;
I was able to find the cause of the VPN not connecting by reviewing the logs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo ls /Library/PostgreSQL/13/data/log&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here was the output from the failed config:&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
resolve:~ Joshua$ sudo cat /Library/PostgreSQL/13/data/log/postgresql-2024-01-09_235442.log&lt;br /&gt;
2024-01-09 23:54:42.917 EST [55004] LOG:  starting PostgreSQL 13.4 on x86_64-apple-darwin, compiled by Apple clang version 11.0.3 (clang-1103.0.32.59), 64-bit&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv6 address &amp;quot;::&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv4 address &amp;quot;0.0.0.0&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on Unix socket &amp;quot;/tmp/.s.PGSQL.5432&amp;quot;&lt;br /&gt;
2024-01-09 23:54:42.940 EST [55006] LOG:  database system was shut down at 2024-01-09 23:54:42 EST&lt;br /&gt;
2024-01-09 23:54:42.948 EST [55004] LOG:  database system is ready to accept connections&lt;br /&gt;
2024-01-09 23:54:52.605 EST [55048] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
2024-01-09 23:54:55.709 EST [55049] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Software Updates =&lt;br /&gt;
&lt;br /&gt;
We use [https://dortania.github.io/OpenCore-Legacy-Patcher/ OpenCore] to keep MacOS up-to-date and extend the life of this now vintage machine.&lt;br /&gt;
&lt;br /&gt;
As a result, WiFi and Bluetooth no longer work as of OS X Catalina.&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=324</id>
		<title>MacPro</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=324"/>
		<updated>2024-01-10T08:33:51Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Configuration File */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[MacPro]] is a MacOS server that hosts A/V editing software e.g., [[DaVinci Resolve Studio]] and [[DaVinci Resolve Server]].&lt;br /&gt;
&lt;br /&gt;
Born in 2012 and still a formidable machine in the year of our lord 2024! It has been upgraded with a dual hex-core (12-core) Xeon Processors, 1TB NVMe storage, and 96GB RAM.&lt;br /&gt;
&lt;br /&gt;
It can edit 6K video and it can still burn CD-ROMs!&lt;br /&gt;
&lt;br /&gt;
For security, there is no port forwarding to the device; it can only be accessed via SSH or VNC over [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve (Studio)]]=&lt;br /&gt;
&lt;br /&gt;
The [[MacPro]] is capable of 6K Video editing locally or remote via [[VNC]] over [[VPN]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;vnc://username@resolve.wreckroom.nyc&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve Server]]=&lt;br /&gt;
The [[MacPro]] hosts the [[DaVinci Resolve Server]] via [[PostgreSQL]].&lt;br /&gt;
&lt;br /&gt;
=== Configuration===&lt;br /&gt;
Here is the location of the config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo vim /Library/PostgreSQL/13/data/pg_hba.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Update the config as such:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
# pg_hba.conf file has been edited by DaVinci Project Server. Hence, it is recommended to not edit this file manually.&lt;br /&gt;
# TYPE    DATABASE    USER    ADDRESS    METHOD&lt;br /&gt;
local    all    all    scram-sha-256&lt;br /&gt;
host    all    all    127.0.0.1/32    scram-sha-256&lt;br /&gt;
host    all    all    ::1/128    scram-sha-256&lt;br /&gt;
host all all 192.168.1.0/24 scram-sha-256&lt;br /&gt;
host all all 192.168.3.0/24 scram-sha-256&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note:''' You ''must'' add entries for hosting the WAN (e.g. 192.168.1.0/24) and the VPN (192.168.3.0/24). The VPN address will always need to be added, otherwise you will not be able to connect from [[VPN]].&lt;br /&gt;
&lt;br /&gt;
====Restart Postgres====&lt;br /&gt;
&lt;br /&gt;
Restart the postgres services via terminal to apply changes to config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo -u postgres /Library/PostgreSQL/13/bin/pg_ctl restart -D /Library/PostgreSQL/13/data&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Daily Logs ===&lt;br /&gt;
&lt;br /&gt;
I was able to find the cause of the VPN not connecting by reviewing the logs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo ls /Library/PostgreSQL/13/data/log&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here was the output from the failed config:&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
resolve:~ Joshua$ sudo cat /Library/PostgreSQL/13/data/log/postgresql-2024-01-09_235442.log&lt;br /&gt;
2024-01-09 23:54:42.917 EST [55004] LOG:  starting PostgreSQL 13.4 on x86_64-apple-darwin, compiled by Apple clang version 11.0.3 (clang-1103.0.32.59), 64-bit&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv6 address &amp;quot;::&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv4 address &amp;quot;0.0.0.0&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on Unix socket &amp;quot;/tmp/.s.PGSQL.5432&amp;quot;&lt;br /&gt;
2024-01-09 23:54:42.940 EST [55006] LOG:  database system was shut down at 2024-01-09 23:54:42 EST&lt;br /&gt;
2024-01-09 23:54:42.948 EST [55004] LOG:  database system is ready to accept connections&lt;br /&gt;
2024-01-09 23:54:52.605 EST [55048] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
2024-01-09 23:54:55.709 EST [55049] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Software Updates =&lt;br /&gt;
&lt;br /&gt;
We use [https://dortania.github.io/OpenCore-Legacy-Patcher/ OpenCore] to keep MacOS up-to-date and extend the life of this now vintage machine.&lt;br /&gt;
&lt;br /&gt;
As a result, WiFi and Bluetooth no longer work as of OS X Catalina.&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=323</id>
		<title>MacPro</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=323"/>
		<updated>2024-01-10T08:33:36Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Restart Postgres */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[MacPro]] is a MacOS server that hosts A/V editing software e.g., [[DaVinci Resolve Studio]] and [[DaVinci Resolve Server]].&lt;br /&gt;
&lt;br /&gt;
Born in 2012 and still a formidable machine in the year of our lord 2024! It has been upgraded with a dual hex-core (12-core) Xeon Processors, 1TB NVMe storage, and 96GB RAM.&lt;br /&gt;
&lt;br /&gt;
It can edit 6K video and it can still burn CD-ROMs!&lt;br /&gt;
&lt;br /&gt;
For security, there is no port forwarding to the device; it can only be accessed via SSH or VNC over [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve (Studio)]]=&lt;br /&gt;
&lt;br /&gt;
The [[MacPro]] is capable of 6K Video editing locally or remote via [[VNC]] over [[VPN]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;vnc://username@resolve.wreckroom.nyc&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve Server]]=&lt;br /&gt;
The [[MacPro]] hosts the [[DaVinci Resolve Server]] via [[PostgreSQL]].&lt;br /&gt;
&lt;br /&gt;
=== Configuration File===&lt;br /&gt;
Here is the location of the config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo vim /Library/PostgreSQL/13/data/pg_hba.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Update the config as such:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
# pg_hba.conf file has been edited by DaVinci Project Server. Hence, it is recommended to not edit this file manually.&lt;br /&gt;
# TYPE    DATABASE    USER    ADDRESS    METHOD&lt;br /&gt;
local    all    all    scram-sha-256&lt;br /&gt;
host    all    all    127.0.0.1/32    scram-sha-256&lt;br /&gt;
host    all    all    ::1/128    scram-sha-256&lt;br /&gt;
host all all 192.168.1.0/24 scram-sha-256&lt;br /&gt;
host all all 192.168.3.0/24 scram-sha-256&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note:''' You ''must'' add entries for hosting the WAN (e.g. 192.168.1.0/24) and the VPN (192.168.3.0/24). The VPN address will always need to be added, otherwise you will not be able to connect from [[VPN]].&lt;br /&gt;
&lt;br /&gt;
====Restart Postgres====&lt;br /&gt;
&lt;br /&gt;
Restart the postgres services via terminal to apply changes to config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo -u postgres /Library/PostgreSQL/13/bin/pg_ctl restart -D /Library/PostgreSQL/13/data&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Daily Logs ===&lt;br /&gt;
&lt;br /&gt;
I was able to find the cause of the VPN not connecting by reviewing the logs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo ls /Library/PostgreSQL/13/data/log&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here was the output from the failed config:&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
resolve:~ Joshua$ sudo cat /Library/PostgreSQL/13/data/log/postgresql-2024-01-09_235442.log&lt;br /&gt;
2024-01-09 23:54:42.917 EST [55004] LOG:  starting PostgreSQL 13.4 on x86_64-apple-darwin, compiled by Apple clang version 11.0.3 (clang-1103.0.32.59), 64-bit&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv6 address &amp;quot;::&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv4 address &amp;quot;0.0.0.0&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on Unix socket &amp;quot;/tmp/.s.PGSQL.5432&amp;quot;&lt;br /&gt;
2024-01-09 23:54:42.940 EST [55006] LOG:  database system was shut down at 2024-01-09 23:54:42 EST&lt;br /&gt;
2024-01-09 23:54:42.948 EST [55004] LOG:  database system is ready to accept connections&lt;br /&gt;
2024-01-09 23:54:52.605 EST [55048] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
2024-01-09 23:54:55.709 EST [55049] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Software Updates =&lt;br /&gt;
&lt;br /&gt;
We use [https://dortania.github.io/OpenCore-Legacy-Patcher/ OpenCore] to keep MacOS up-to-date and extend the life of this now vintage machine.&lt;br /&gt;
&lt;br /&gt;
As a result, WiFi and Bluetooth no longer work as of OS X Catalina.&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=322</id>
		<title>MacPro</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=MacPro&amp;diff=322"/>
		<updated>2024-01-10T08:32:39Z</updated>

		<summary type="html">&lt;p&gt;Josh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[MacPro]] is a MacOS server that hosts A/V editing software e.g., [[DaVinci Resolve Studio]] and [[DaVinci Resolve Server]].&lt;br /&gt;
&lt;br /&gt;
Born in 2012 and still a formidable machine in the year of our lord 2024! It has been upgraded with a dual hex-core (12-core) Xeon Processors, 1TB NVMe storage, and 96GB RAM.&lt;br /&gt;
&lt;br /&gt;
It can edit 6K video and it can still burn CD-ROMs!&lt;br /&gt;
&lt;br /&gt;
For security, there is no port forwarding to the device; it can only be accessed via SSH or VNC over [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve (Studio)]]=&lt;br /&gt;
&lt;br /&gt;
The [[MacPro]] is capable of 6K Video editing locally or remote via [[VNC]] over [[VPN]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;vnc://username@resolve.wreckroom.nyc&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=[[DaVinci Resolve Server]]=&lt;br /&gt;
The [[MacPro]] hosts the [[DaVinci Resolve Server]] via [[PostgreSQL]].&lt;br /&gt;
&lt;br /&gt;
=== Configuration File===&lt;br /&gt;
Here is the location of the config:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo vim /Library/PostgreSQL/13/data/pg_hba.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Update the config as such:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
# pg_hba.conf file has been edited by DaVinci Project Server. Hence, it is recommended to not edit this file manually.&lt;br /&gt;
# TYPE    DATABASE    USER    ADDRESS    METHOD&lt;br /&gt;
local    all    all    scram-sha-256&lt;br /&gt;
host    all    all    127.0.0.1/32    scram-sha-256&lt;br /&gt;
host    all    all    ::1/128    scram-sha-256&lt;br /&gt;
host all all 192.168.1.0/24 scram-sha-256&lt;br /&gt;
host all all 192.168.3.0/24 scram-sha-256&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note:''' You ''must'' add entries for hosting the WAN (e.g. 192.168.1.0/24) and the VPN (192.168.3.0/24). The VPN address will always need to be added, otherwise you will not be able to connect from [[VPN]].&lt;br /&gt;
&lt;br /&gt;
====Restart Postgres====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo -u postgres /Library/PostgreSQL/13/bin/pg_ctl restart -D /Library/PostgreSQL/13/data&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Daily Logs ===&lt;br /&gt;
&lt;br /&gt;
I was able to find the cause of the VPN not connecting by reviewing the logs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo ls /Library/PostgreSQL/13/data/log&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here was the output from the failed config:&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
resolve:~ Joshua$ sudo cat /Library/PostgreSQL/13/data/log/postgresql-2024-01-09_235442.log&lt;br /&gt;
2024-01-09 23:54:42.917 EST [55004] LOG:  starting PostgreSQL 13.4 on x86_64-apple-darwin, compiled by Apple clang version 11.0.3 (clang-1103.0.32.59), 64-bit&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv6 address &amp;quot;::&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on IPv4 address &amp;quot;0.0.0.0&amp;quot;, port 5432&lt;br /&gt;
2024-01-09 23:54:42.918 EST [55004] LOG:  listening on Unix socket &amp;quot;/tmp/.s.PGSQL.5432&amp;quot;&lt;br /&gt;
2024-01-09 23:54:42.940 EST [55006] LOG:  database system was shut down at 2024-01-09 23:54:42 EST&lt;br /&gt;
2024-01-09 23:54:42.948 EST [55004] LOG:  database system is ready to accept connections&lt;br /&gt;
2024-01-09 23:54:52.605 EST [55048] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
2024-01-09 23:54:55.709 EST [55049] FATAL:  no pg_hba.conf entry for host &amp;quot;192.168.3.2&amp;quot;, user &amp;quot;postgres&amp;quot;, database &amp;quot;WSP INTERVIEWS&amp;quot;, SSL off&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Software Updates =&lt;br /&gt;
&lt;br /&gt;
We use [https://dortania.github.io/OpenCore-Legacy-Patcher/ OpenCore] to keep MacOS up-to-date and extend the life of this now vintage machine.&lt;br /&gt;
&lt;br /&gt;
As a result, WiFi and Bluetooth no longer work as of OS X Catalina.&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=321</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=321"/>
		<updated>2024-01-10T08:31:15Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Interviews */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
JK: What is a media vertical?&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
JK: What is this?&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
JK: What is that?&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Connect to [[Wreckroom]]'s vast media library.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
Learn how creating proxy media on the [[Media Server]] helps speed up performance over the [[DaVinci Resolve Project Server]]!&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
We have a 2.5G network...LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=320</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=320"/>
		<updated>2024-01-10T08:31:08Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Performance Series */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
JK: What is a media vertical?&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
JK: What is this?&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
What is that?&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Connect to [[Wreckroom]]'s vast media library.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
Learn how creating proxy media on the [[Media Server]] helps speed up performance over the [[DaVinci Resolve Project Server]]!&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
We have a 2.5G network...LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=319</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=319"/>
		<updated>2024-01-10T08:30:47Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* UniFi */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
JK: What is a media vertical?&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
What is this?&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
What is that?&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Connect to [[Wreckroom]]'s vast media library.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
Learn how creating proxy media on the [[Media Server]] helps speed up performance over the [[DaVinci Resolve Project Server]]!&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
We have a 2.5G network...LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=318</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=318"/>
		<updated>2024-01-10T08:30:28Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* UniFi */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
JK: What is a media vertical?&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
What is this?&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
What is that?&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Connect to [[Wreckroom]]'s vast media library.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
Learn how creating proxy media on the [[Media Server]] helps speed up performance over the [[DaVinci Resolve Project Server]]!&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
The network setup we uses 2.5G...LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Synology&amp;diff=317</id>
		<title>Synology</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Synology&amp;diff=317"/>
		<updated>2024-01-10T08:29:58Z</updated>

		<summary type="html">&lt;p&gt;Josh: /*  OpenVPN */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
==Public==&lt;br /&gt;
===[[VPN | OpenVPN]]===&lt;br /&gt;
Runs on TCP port 1194 hosted on [[UniFi | UniFi Network]].&lt;br /&gt;
&lt;br /&gt;
===[[MediaWiki]]===&lt;br /&gt;
Uses MariaDB 10 and MediaWiki applications.&lt;br /&gt;
&lt;br /&gt;
===[[Web Server]]===&lt;br /&gt;
NGINX reverse proxy runs wreckroom.nyc over 443/3000.&lt;br /&gt;
&lt;br /&gt;
==Private==&lt;br /&gt;
===[[SMB File Server]]===&lt;br /&gt;
Serves files behind the [[VPN]].&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Synology&amp;diff=316</id>
		<title>Synology</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Synology&amp;diff=316"/>
		<updated>2024-01-10T08:29:33Z</updated>

		<summary type="html">&lt;p&gt;Josh: /*  OpenVPN */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
==Public==&lt;br /&gt;
===[[VPN | OpenVPN]]===&lt;br /&gt;
Runs on TCP port 1194 hosted on [[UniFi Network | UniFi]].&lt;br /&gt;
&lt;br /&gt;
===[[MediaWiki]]===&lt;br /&gt;
Uses MariaDB 10 and MediaWiki applications.&lt;br /&gt;
&lt;br /&gt;
===[[Web Server]]===&lt;br /&gt;
NGINX reverse proxy runs wreckroom.nyc over 443/3000.&lt;br /&gt;
&lt;br /&gt;
==Private==&lt;br /&gt;
===[[SMB File Server]]===&lt;br /&gt;
Serves files behind the [[VPN]].&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=315</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=315"/>
		<updated>2024-01-10T08:27:54Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Interviews */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
JK: What is a media vertical?&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
What is this?&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
What is that?&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Connect to [[Wreckroom]]'s vast media library.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
Learn how creating proxy media on the [[Media Server]] helps speed up performance over the [[DaVinci Resolve Project Server]]!&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
The network setup we uses 2.5G LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=314</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=314"/>
		<updated>2024-01-10T08:27:48Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Performance Series */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
JK: What is a media vertical?&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
What is this?&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Connect to [[Wreckroom]]'s vast media library.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
Learn how creating proxy media on the [[Media Server]] helps speed up performance over the [[DaVinci Resolve Project Server]]!&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
The network setup we uses 2.5G LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=313</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=313"/>
		<updated>2024-01-10T08:27:38Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Media Verticals */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
JK: What is a media vertical?&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Connect to [[Wreckroom]]'s vast media library.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
Learn how creating proxy media on the [[Media Server]] helps speed up performance over the [[DaVinci Resolve Project Server]]!&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
The network setup we uses 2.5G LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=312</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=312"/>
		<updated>2024-01-10T08:27:06Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Media Server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Connect to [[Wreckroom]]'s vast media library.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
Learn how creating proxy media on the [[Media Server]] helps speed up performance over the [[DaVinci Resolve Project Server]]!&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
The network setup we uses 2.5G LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=311</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=311"/>
		<updated>2024-01-10T08:26:52Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Media Server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Connect to [[Wreckroom]]'s media.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
Learn how creating proxy media on the [[Media Server]] helps speed up performance over the [[DaVinci Resolve Project Server]]!&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
The network setup we uses 2.5G LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=310</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=310"/>
		<updated>2024-01-10T08:26:40Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Media Server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Connect to all [[Wreckroom]] media.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
Learn how creating proxy media on the [[Media Server]] helps speed up performance over the [[DaVinci Resolve Project Server]]!&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
The network setup we uses 2.5G LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=309</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=309"/>
		<updated>2024-01-10T08:26:18Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Media Access */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Contains all [[Wreckroom]] media.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
Learn how creating proxy media on the [[Media Server]] helps speed up performance over the [[DaVinci Resolve Project Server]]!&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
The network setup we uses 2.5G LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=308</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=308"/>
		<updated>2024-01-10T08:25:47Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Creating Proxies in Resolve Server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Contains all [[Wreckroom]] media.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
:Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
Learn how creating proxy media on the [[Media Server]] helps speed up performance over the [[DaVinci Resolve Project Server]]!&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
The network setup we uses 2.5G LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=307</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=307"/>
		<updated>2024-01-10T08:24:46Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Creating Proxies in Resolve Server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Contains all [[Wreckroom]] media.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
:Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
Learn how creating proxy media on the [[Media Server]] helps speed up performance over the network!&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
The network setup we uses 2.5G LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=306</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=306"/>
		<updated>2024-01-10T08:24:07Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* DaVinci Resolve Project Server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Contains all [[Wreckroom]] media.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
:Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
The network setup we uses 2.5G LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Media_Server&amp;diff=305</id>
		<title>Media Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Media_Server&amp;diff=305"/>
		<updated>2024-01-10T08:23:53Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Directory Structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[Media Server]] is used to host videos, audio, and any media capture involved with wreckroom in a centralized location that is accessible remotely via [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=Connect=&lt;br /&gt;
[[Media Server | SMB]] (Server Message Block) is a web protocol used to share files over a computer network.&lt;br /&gt;
&lt;br /&gt;
== Mac ==&lt;br /&gt;
In Finder, press &amp;lt;code&amp;gt;Command + K&amp;lt;/code&amp;gt; to bring up '''Connect to Server'''. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;smb://username@resolve.wreckroom.nyc/wreckroom&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where '''username''' is your username provided by Justin and your password was provided via email.&lt;br /&gt;
&lt;br /&gt;
=Directory Structure=&lt;br /&gt;
&lt;br /&gt;
===[[File Naming Conventions]]===&lt;br /&gt;
Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Media_Server&amp;diff=304</id>
		<title>Media Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Media_Server&amp;diff=304"/>
		<updated>2024-01-10T08:23:39Z</updated>

		<summary type="html">&lt;p&gt;Josh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[Media Server]] is used to host videos, audio, and any media capture involved with wreckroom in a centralized location that is accessible remotely via [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=Connect=&lt;br /&gt;
[[Media Server | SMB]] (Server Message Block) is a web protocol used to share files over a computer network.&lt;br /&gt;
&lt;br /&gt;
== Mac ==&lt;br /&gt;
In Finder, press &amp;lt;code&amp;gt;Command + K&amp;lt;/code&amp;gt; to bring up '''Connect to Server'''. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;smb://username@resolve.wreckroom.nyc/wreckroom&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where '''username''' is your username provided by Justin and your password was provided via email.&lt;br /&gt;
&lt;br /&gt;
=Directory Structure=&lt;br /&gt;
&lt;br /&gt;
===[[File Naming Conventions]]===&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Media_Server&amp;diff=303</id>
		<title>Media Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Media_Server&amp;diff=303"/>
		<updated>2024-01-10T08:22:46Z</updated>

		<summary type="html">&lt;p&gt;Josh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[Media Server]] is used to host videos, audio, and any media capture involved with wreckroom in a centralized location that is accessible remotely via [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=Connect=&lt;br /&gt;
[[Media Server | SMB]] (Server Message Block) is a web protocol used to share files over a computer network.&lt;br /&gt;
&lt;br /&gt;
== Mac ==&lt;br /&gt;
In Finder, press &amp;lt;code&amp;gt;Command + K&amp;lt;/code&amp;gt; to bring up '''Connect to Server'''. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;smb://username@resolve.wreckroom.nyc/wreckroom&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where '''username''' is your username provided by Justin and your password was provided via email.&lt;br /&gt;
&lt;br /&gt;
=Directory Structure=&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Media_Server&amp;diff=302</id>
		<title>Media Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Media_Server&amp;diff=302"/>
		<updated>2024-01-10T08:22:41Z</updated>

		<summary type="html">&lt;p&gt;Josh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[Media Server]] is used to host videos, audio, and any media capture involved with wreckroom in a centralized location that is accessible remotely via [[VPN]].&lt;br /&gt;
&lt;br /&gt;
=Connect=&lt;br /&gt;
&lt;br /&gt;
== Mac ==&lt;br /&gt;
In Finder, press &amp;lt;code&amp;gt;Command + K&amp;lt;/code&amp;gt; to bring up '''Connect to Server'''. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;smb://username@resolve.wreckroom.nyc/wreckroom&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where '''username''' is your username provided by Justin and your password was provided via email.&lt;br /&gt;
&lt;br /&gt;
=Directory Structure=&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Media_Server&amp;diff=301</id>
		<title>Media Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Media_Server&amp;diff=301"/>
		<updated>2024-01-10T08:22:24Z</updated>

		<summary type="html">&lt;p&gt;Josh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[Media Server]] is used to host videos, audio, and any media capture involved with wreckroom in a centralized location that is accessible remotely via [[VPN]].&lt;br /&gt;
&lt;br /&gt;
[[Media Server | SMB]] (Server Message Block) is a web protocol used to share files over a computer network.&lt;br /&gt;
&lt;br /&gt;
=Connect=&lt;br /&gt;
&lt;br /&gt;
== Mac ==&lt;br /&gt;
In Finder, press &amp;lt;code&amp;gt;Command + K&amp;lt;/code&amp;gt; to bring up '''Connect to Server'''. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;smb://username@resolve.wreckroom.nyc/wreckroom&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where '''username''' is your username provided by Justin and your password was provided via email.&lt;br /&gt;
&lt;br /&gt;
=Directory Structure=&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=300</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=300"/>
		<updated>2024-01-10T08:22:04Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* SMB File Server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[Media Server]]===&lt;br /&gt;
Contains all [[Wreckroom]] media.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
:Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
:A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
The network setup we uses 2.5G LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=SMB_File_Server&amp;diff=299</id>
		<title>SMB File Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=SMB_File_Server&amp;diff=299"/>
		<updated>2024-01-10T08:21:52Z</updated>

		<summary type="html">&lt;p&gt;Josh: Josh moved page SMB File Server to Media Server&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Media Server]]&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Media_Server&amp;diff=298</id>
		<title>Media Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Media_Server&amp;diff=298"/>
		<updated>2024-01-10T08:21:52Z</updated>

		<summary type="html">&lt;p&gt;Josh: Josh moved page SMB File Server to Media Server&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[SMB File Server]] is used to host videos, audio, and any media capture involved with wreckroom in a centralized location that is accessible remotely via [[VPN]].&lt;br /&gt;
&lt;br /&gt;
[[SMB File Server | SMB]] (Server Message Block) is a web protocol used to share files over a computer network.&lt;br /&gt;
&lt;br /&gt;
=Connect=&lt;br /&gt;
&lt;br /&gt;
== Mac ==&lt;br /&gt;
In Finder, press &amp;lt;code&amp;gt;Command + K&amp;lt;/code&amp;gt; to bring up '''Connect to Server'''. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;smb://username@resolve.wreckroom.nyc/wreckroom&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where '''username''' is your username provided by Justin and your password was provided via email.&lt;br /&gt;
&lt;br /&gt;
=Directory Structure=&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=297</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=297"/>
		<updated>2024-01-10T08:21:28Z</updated>

		<summary type="html">&lt;p&gt;Josh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Project Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[SMB File Server]]===&lt;br /&gt;
Contains all [[Wreckroom]] media.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
:Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
:A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
The network setup we uses 2.5G LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=296</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=296"/>
		<updated>2024-01-10T08:17:00Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Media and Project Access */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[SMB File Server]]===&lt;br /&gt;
Contains all [[Wreckroom]] media.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
:Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
:A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
The network setup we uses 2.5G LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
	<entry>
		<id>https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=295</id>
		<title>Wreckroom</title>
		<link rel="alternate" type="text/html" href="https://wiki.wreckroom.nyc/index.php?title=Wreckroom&amp;diff=295"/>
		<updated>2024-01-10T08:16:46Z</updated>

		<summary type="html">&lt;p&gt;Josh: /* Audio &amp;amp; Video Editing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome! Here is the place for everything you need to know about [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
=Media Verticals=&lt;br /&gt;
&lt;br /&gt;
===[[Performance Series]]===&lt;br /&gt;
&lt;br /&gt;
===[[Interviews]]===&lt;br /&gt;
&lt;br /&gt;
===[[WRNY]]===&lt;br /&gt;
&lt;br /&gt;
WRNY a 24 hour Youtube Radio Station, featuring all the artists that we have hand selected to perform at [[Safe &amp;amp; Sound Studios]].&lt;br /&gt;
&lt;br /&gt;
=Media and Project Access=&lt;br /&gt;
You can access Wreckroom remotely via [[VPN]] or onsite. You will need to mount the [[SMB File Server]] to access the media and [[DaVinci Resolve Server]] for video editing.&lt;br /&gt;
==Remote Access==&lt;br /&gt;
===[[VPN]]===&lt;br /&gt;
&lt;br /&gt;
If you are working from home, connect to the [[VPN]] to access Wreckroom media files and storage ''remotely''.&lt;br /&gt;
&lt;br /&gt;
==Media Access==&lt;br /&gt;
Regardless of if you are at home or in the studio, you can access the Wreckroom servers:&lt;br /&gt;
&lt;br /&gt;
===[[SMB File Server]]===&lt;br /&gt;
Contains all [[Wreckroom]] media.&lt;br /&gt;
&lt;br /&gt;
====[[File Naming Conventions]]====&lt;br /&gt;
:Learn about how files on the server are to be named! TL;DR ALL CAPS&lt;br /&gt;
&lt;br /&gt;
== Project Access ==&lt;br /&gt;
&lt;br /&gt;
===[[DaVinci Resolve Project Server]]===&lt;br /&gt;
:A Network Server to edit files remotely in resolve&lt;br /&gt;
&lt;br /&gt;
====[[Creating Proxies in Resolve Server]]====&lt;br /&gt;
&lt;br /&gt;
=Help=&lt;br /&gt;
&lt;br /&gt;
===[https://www.mediawiki.org/wiki/Cheatsheet Wiki Syntax Cheatsheet]===&lt;br /&gt;
&lt;br /&gt;
= Network Administration =&lt;br /&gt;
&lt;br /&gt;
===[[Synology]]===&lt;br /&gt;
The Synology is a Network Attached Storage (NAS) and Linux Server that runs many different processes that are essential to [[Wreckroom]].&lt;br /&gt;
&lt;br /&gt;
===[[MacPro]]===&lt;br /&gt;
The MacPro runs the [[DaVinci Resolve Server]] and hosts [[OBS]] for [[WRNY]].&lt;br /&gt;
&lt;br /&gt;
===[[UniFi]]===&lt;br /&gt;
The network setup we uses 2.5G LFG!&lt;/div&gt;</summary>
		<author><name>Josh</name></author>
	</entry>
</feed>