123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Install Organizr - A Homelab Services Organizer/Dashboard - on Linux</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Browser Based,Home Lab,Home Lab Ideas,Install Guide,Self-Hosted,Web Based,Web Based Tools,Application Dashboard,Homelab Dashboard,Linux,MariaDB,MySQL,Organizr,Organizr Application Dashboard,Organizr V2,PHP,Homelab,Debian,Ubuntu,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Install Organizr - A Homelab Services Organizer/Dashboard - on Linux">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="12/09/2023 01:12:40 PM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Install Organizr - A Homelab Services Organizer/Dashboard - on Linux</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>What is Organizr?</h2>
- <blockquote><em>ORGANIZR aims to be your one stop shop for your Servers Frontend. Do you have quite a bit of services running on your computer or server? Do you have a lot of bookmarks or have to memorize a bunch of ip’s and ports? Well, Organizr is here to help with that... -<a href="https://organizr.app/" target="_blank">https://organizr.app/</a></em></blockquote>
- <h2>Installation</h2>
- <ol>
- <li>Log into the Linux device</li>
- <li>Run the following commands in a terminal window:
- <div class="codeBlock"># update software repositories<br />
- sudo apt <span class="codeBlock">update</span><br />
- # install <span class="codeBlock">available</span> software updates<br />
- sudo apt upgrade -y<br />
- # install prerequisites<br />
- <span class="codeBlock">sudo</span> apt install curl wget zip git openssl -y<br />
- # install Apache HTTPD and SQLite<br />
- <span class="codeBlock">sudo apt install apache2 sqlite3 -y<br />
- # install PHP components<br />
- sudo apt install php7.4 libapache2-mod-php <span style="display: none;"> </span><span style="display: none;"> </span>php7.4-common <span style="display: none;"> </span><span style="display: none;"> </span>php7.4-mysql php7.4-sqlite3 php7.4-xml php7.4-zip php7.4-curl php7.4-fpm -y<br />
- # download the latest organizr release<br />
- wget -O ./organizr.zip https://github.com/causefx/Organizr/archive/v2-master.zip<br />
- # extract the downloaded zip to /var/www/html<br />
- sudo unzip ./organizr.zip -d /var/www/html<br />
- # rename the extracted folder organizr<br />
- sudo mv /var/www/html/Organizr* /var/www/html/organizr<br />
- # set the owner of the organizr directory<br />
- sudo chown -R www-data:www-data /var/www/html/organizr<br />
- # create <span style="display: none;"> </span>organizr apache configuration<br />
- sudo nano /etc/apache2/sites-available/organizr.conf</span><span style="display: none;"> </span></div>
- </li>
- <li>Paste the following configuration into organizr.conf
- <p><Directory /var/www/html/organizr><br />
- Options Indexes FollowSymLinks<br />
- AllowOverride All<br />
- Require all granted<br />
- RewriteEngine On<br />
- RewriteCond %{REQUEST_FILENAME} !-f<br />
- RewriteCond %{REQUEST_FILENAME} !-d<br />
- RewriteRule ^ /organizr/api/v2/index.php [QSA,L]<br />
- </Directory></p>
- </li>
- <li>Press <span class="codeBlock">CTRL+O,</span> Enter, CTRL+X to write the changes</li>
- <li>Run the following command to enable the O<span class="codeBlock">rganizr </span>site
- <div class="codeBlock"># enable rewrite module<br />
- sudo a2enmod rewrite<br />
- # enable the <span class="codeBlock">organizr </span>site<br />
- sudo a2ensite <span class="codeBlock">organizr</span><br />
- # restart the apache2 service<br />
- <span class="codeBlock">sudo systemctl restart apache2<br />
- # generate a random string<br />
- head /dev/urandom | LC_ALL=C tr -dc 'A-Za-z0-9' | head -c 30</span></div>
- </li>
- </ol>
- <h2>Organizr Web Installer</h2>
- <ol>
- <li>Open a web browser and navigate to http://DNSorIP/organizr</li>
- <li>Set the Installation Type to Personal > Click Next</li>
- <li>Complete the registration form by entering a username, email address and password > Click Next</li>
- <li>Copy the randomly generated string from the open terminal and paste it in the Hash Key field</li>
- <li>Enter a Registration Password > Click Next</li>
- <li>Enter organizr.db as the Database Name and /var/www/html/organizr/data/ as the Database Path > Click Test / Create Path > Click Next</li>
- <li>Review the summary > Click Finish</li>
- <li>Welcome to Organizr</li>
- </ol>
- <p>Source: <a href="https://docs.organizr.app/installation/prerequisites/installing-php" target="_blank">https://docs.organizr.app/installation/prerequisites/installing-php</a></p> </div>
- </div>
- </body>
- </html>
-
|