<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Architecture on IT Admin</title><link>/categories/architecture/</link><description>Recent content in Architecture on IT Admin</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Mon, 04 Apr 2022 05:00:00 +0000</lastBuildDate><atom:link href="/categories/architecture/index.xml" rel="self" type="application/rss+xml"/><item><title>How to build an Application with modern Technology</title><link>/posts/post-4/</link><pubDate>Mon, 04 Apr 2022 05:00:00 +0000</pubDate><guid>/posts/post-4/</guid><description>&lt;p>Nemo vel ad consectetur namut rutrum ex, venenatis sollicitudin urna. Aliquam erat volutpat. Integer eu ipsum sem. Ut bibendum lacus vestibulum maximus suscipit. Quisque vitae nibh iaculis neque blandit euismod.&lt;/p>
&lt;p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo vel ad consectetur ut aperiam. Itaque eligendi natus aperiam? Excepturi repellendus consequatur quibusdam optio expedita praesentium est adipisci dolorem ut eius!&lt;/p>
&lt;h2 id="creative-design">Creative Design&lt;/h2>
&lt;p>Nam ut rutrum ex, venenatis sollicitudin urna. Aliquam erat volutpat. Integer eu ipsum sem. Ut bibendum lacus vestibulum maximus suscipit. Quisque vitae nibh iaculis neque blandit euismod.&lt;/p></description></item><item><title>N8N workflow automation server deployed on Fedora.</title><link>/posts/post-5/</link><pubDate>Mon, 04 Apr 2022 05:00:00 +0000</pubDate><guid>/posts/post-5/</guid><description>&lt;h1 id="n8n-setup">n8n Setup&lt;/h1>
&lt;blockquote>
&lt;p>Created: 2026-06-02 | Status: Running (systemd managed)&lt;/p>&lt;/blockquote>
&lt;h2 id="overview">Overview&lt;/h2>
&lt;p>n8n workflow automation server deployed on Fedora workstation via Podman, managed by systemd for auto-start on boot.&lt;/p>
&lt;h2 id="access">Access&lt;/h2>
&lt;table>
 &lt;thead>
 &lt;tr>
 &lt;th>Item&lt;/th>
 &lt;th>Value&lt;/th>
 &lt;/tr>
 &lt;/thead>
 &lt;tbody>
 &lt;tr>
 &lt;td>URL&lt;/td>
 &lt;td>&lt;code>http://192.168.75.16:8081&lt;/code>&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>Version&lt;/td>
 &lt;td>2.22.6&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>Image&lt;/td>
 &lt;td>&lt;code>docker.io/n8nio/n8n:latest&lt;/code>&lt;/td>
 &lt;/tr>
 &lt;/tbody>
&lt;/table>
&lt;h2 id="container-details">Container Details&lt;/h2>
&lt;table>
 &lt;thead>
 &lt;tr>
 &lt;th>Item&lt;/th>
 &lt;th>Value&lt;/th>
 &lt;/tr>
 &lt;/thead>
 &lt;tbody>
 &lt;tr>
 &lt;td>Container name&lt;/td>
 &lt;td>&lt;code>n8n&lt;/code>&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>Port mapping&lt;/td>
 &lt;td>&lt;code>192.168.75.16:8081&lt;/code> -&amp;gt; &lt;code>5678&lt;/code> (LAN-only)&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>Data directory&lt;/td>
 &lt;td>&lt;code>/home/itadmin/projects/n8n/data&lt;/code>&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>Running as&lt;/td>
 &lt;td>Root (&lt;code>sudo podman&lt;/code>)&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>Timezone&lt;/td>
 &lt;td>Australia/Sydney&lt;/td>
 &lt;/tr>
 &lt;/tbody>
&lt;/table>
&lt;h2 id="systemd-service">Systemd Service&lt;/h2>
&lt;p>Auto-start managed by systemd service file.&lt;/p>
&lt;table>
 &lt;thead>
 &lt;tr>
 &lt;th>Item&lt;/th>
 &lt;th>Value&lt;/th>
 &lt;/tr>
 &lt;/thead>
 &lt;tbody>
 &lt;tr>
 &lt;td>Unit file&lt;/td>
 &lt;td>&lt;code>/etc/systemd/system/n8n.service&lt;/code>&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>Local copy&lt;/td>
 &lt;td>&lt;code>/home/itadmin/projects/n8n/n8n.service&lt;/code>&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>State&lt;/td>
 &lt;td>&lt;code>enabled&lt;/code> (starts on boot)&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>Restart policy&lt;/td>
 &lt;td>&lt;code>on-failure&lt;/code>&lt;/td>
 &lt;/tr>
 &lt;/tbody>
&lt;/table>
&lt;h3 id="management-commands">Management Commands&lt;/h3>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-bash" data-lang="bash">&lt;span style="display:flex;">&lt;span>sudo systemctl status n8n.service
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>sudo systemctl restart n8n.service
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>sudo systemctl stop n8n.service
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>journalctl -u n8n.service -f &lt;span style="color:#75715e"># live logs&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;h2 id="environment-variables">Environment Variables&lt;/h2>
&lt;table>
 &lt;thead>
 &lt;tr>
 &lt;th>Variable&lt;/th>
 &lt;th>Value&lt;/th>
 &lt;/tr>
 &lt;/thead>
 &lt;tbody>
 &lt;tr>
 &lt;td>&lt;code>N8N_HOST&lt;/code>&lt;/td>
 &lt;td>&lt;code>192.168.75.16&lt;/code>&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>&lt;code>N8N_PROTOCOL&lt;/code>&lt;/td>
 &lt;td>&lt;code>http&lt;/code>&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>&lt;code>N8N_LISTEN_ADDRESS&lt;/code>&lt;/td>
 &lt;td>&lt;code>0.0.0.0&lt;/code>&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>&lt;code>N8N_SECURE_COOKIE&lt;/code>&lt;/td>
 &lt;td>&lt;code>false&lt;/code> (LAN-only, no TLS)&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>&lt;code>TZ&lt;/code>&lt;/td>
 &lt;td>&lt;code>Australia/Sydney&lt;/code>&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>&lt;code>GENERIC_TIMEZONE&lt;/code>&lt;/td>
 &lt;td>&lt;code>Australia/Sydney&lt;/code>&lt;/td>
 &lt;/tr>
 &lt;/tbody>
&lt;/table>
&lt;h2 id="authentication">Authentication&lt;/h2>
&lt;p>n8n v2.x uses built-in user management (no Basic Auth middleware). Create an owner account through the web UI on first login. API access requires an API key generated in Settings.&lt;/p></description></item></channel></rss>