{"id":1751,"date":"2023-01-15T12:30:00","date_gmt":"2023-01-15T18:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1751"},"modified":"2022-12-27T03:22:37","modified_gmt":"2022-12-27T09:22:37","slug":"how-to-install-bagisto-ecommerce-on-almalinux","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/","title":{"rendered":"How to Install Bagisto Ecommerce on Almalinux"},"content":{"rendered":"\n<div id=\"linux-2027834803\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>Bagisto is an open-source eCommerce platform built using Laravel framework and VueJS. The framework is very flexible and easy to use, even for non-tech users. Bagisto offers Multi-Warehouse Inventory; almost everything you need when building an <a href=\"https:\/\/www.rosehosting.com\/ecommerce-hosting\/\">eCommerce website<\/a> is available in Bagisto. In this tutorial, we will show you how to install Bagisto Ecommerce on Almalinux.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server with AlmaLinux as the operating system<\/li>\n\n\n\n<li>Root access or regular access with sudo privileges<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1. Log in to your server via SSH<\/h2>\n\n\n\n<p>First, you will need to log in to your AlmaLinux VPS via SSH as the root user:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ssh root@IP_Address -p Port_number<\/pre>\n\n\n\n<p>You will need to replace &#8216;IP_Address&#8217; and &#8216;Port_number&#8217; with your server&#8217;s respective IP address and SSH port number. Additionally, replace &#8216;root&#8217; with the username of the system user with sudo privileges.<\/p>\n\n\n\n<p>You can check whether you have the proper AlmaLinux version installed on your server with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># cat \/etc\/almalinux-release<\/pre>\n\n\n\n<p>You will see an output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@almalinux9 ~]# cat \/etc\/almalinux-release\nAlmaLinux release 9.1 (Lime Lynx)<\/pre>\n\n\n\n<p>The shell commands in this article are executed using &#8216;root&#8217; account. If you want to use your regular user with sudo privileges to run the commands, make sure to append &#8216;sudo&#8217; in front of the commands.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2. Update the system<\/h2>\n\n\n\n<p>Before starting, you have to make sure that all AlmaLinux OS packages installed on the server are up to date. You can do this by running the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># dnf update\n# dnf upgrade<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3. Install and Configure the Web Server<\/h2>\n\n\n\n<p>In this tutorial, we are going to use Nginx as the web server. Run this command to install it.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># dnf install nginx -y<\/pre>\n\n\n\n<p>Start nginx and enable it on boot.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># systemctl enable --now nginx<\/pre>\n\n\n\n<p>Now, let&#8217;s create an nginx server block or virtual host.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># nano \/etc\/nginx\/conf\/bagisto.conf<\/pre>\n\n\n\n<p>Paste the following and make sure you replace bagisto.yourdomain.com with your actual domain or subdomain name:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">server {\n   listen 80;\n   server_name bagisto.yourdomain.com;\n   root \/opt\/bagisto\/public;\n\n   add_header X-Frame-Options \"SAMEORIGIN\";\n   add_header X-Content-Type-Options \"nosniff\";\n\n   index index.php;\n\n   charset utf-8;\n\n   location \/ {\n      try_files $uri $uri\/ \/index.php?$query_string;\n   }\n\n   location = \/favicon.ico { access_log off; log_not_found off; }\n   location = \/robots.txt { access_log off; log_not_found off; }\n\n   error_page 404 \/index.php;\n\n   location ~ \\.php$ {\n      fastcgi_pass unix:\/run\/php-fpm\/www.sock;\n      fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;\n      include fastcgi_params;\n   }\n\n   location ~ \/\\.(?!well-known).* {\n      deny all;\n   }\n}<\/pre>\n\n\n\n<p>Save the file, then exit and restart nginx.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># systemctl restart nginx<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4. Install MariaDB and Create a Database<\/h2>\n\n\n\n<p>In this step, we are going to install the MariaDB server from the default repository. To install the MariaDB server, execute this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># dnf install mariadb-server<\/pre>\n\n\n\n<p>Let&#8217;s run the MariaDB service and enable it on boot.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># systemctl enable --now mariadb<\/pre>\n\n\n\n<p>MariaDB has been successfully installed, and it is running; now we can proceed with creating a new database and a user for our Bagisto website.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># mysql<\/pre>\n\n\n\n<p>There is no password for root at the moment, so that you can log in to MySQL\/MariaDB shell without one.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mysql&gt; CREATE DATABASE bagisto;\nmysql&gt; GRANT ALL on bagisto.* to bagisto@localhost identified by 'm0d1fyth15';\nmysql&gt; FLUSH PRIVILEGES;\nmysql&gt; \\q<\/pre>\n\n\n\n<p>Make sure to create a stronger database password, and replace m0d1fyth15 in the command above with a stronger password.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5. Install PHP<\/h2>\n\n\n\n<p>The default version of PHP available in AlmaLinux 9 is version 8. We can use this PHP version to proceed with Bagisto installation.<\/p>\n\n\n\n<p>Run this command to install PHP and the required extensions<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># dnf install php-{bcmath,common,curl,fpm,gd,intl,mbstring,mysqlnd,soap,xml,xsl,zip,cli,devel,pear} libsodium-devel<\/pre>\n\n\n\n<p>We would also need to install Sodium, and this can be installed using PECL<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># pecl install libsodium<\/pre>\n\n\n\n<p>To enable Sodium extension, we can add enable it by adding extension=sodium.so in php.ini file, run this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># echo \"extension=sodium.so\" &gt;&gt; \/etc\/php.ini<\/pre>\n\n\n\n<p>You can check and verify the installed PHP version with this command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># php -v<\/pre>\n\n\n\n<p>It will return an output like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@almalinux9 ~]# php -v\nPHP 8.0.20 (cli) (built: Jun 8 2022 00:33:06) ( NTS gcc x86_64 )\nCopyright (c) The PHP Group\nZend Engine v4.0.20, Copyright (c) Zend Technologies\nwith Zend OPcache v8.0.20, Copyright (c), by Zend Technologies<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6. Install Composer<\/h2>\n\n\n\n<p>Composer is a package manager for the PHP programming language that can be used for managing dependencies of PHP software and required libraries.<\/p>\n\n\n\n<p>The installation of Composer is fairly easy and straightforward. Simply download and install Composer with these commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># curl -sS https:\/\/getcomposer.org\/installer -o composer-setup.php\n# php composer-setup.php --install-dir=\/usr\/local\/bin --filename=composer<\/pre>\n\n\n\n<p>That&#8217;s it. You have successfully installed Composer on your AlmaLinux server. To check the Composer version, you can run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># composer -V<\/pre>\n\n\n\n<p>Or<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># composer --version<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7. Install NodeJS<\/h2>\n\n\n\n<p>For this tutorial purpose, we are going to install the latest LTS version of NodeJS. Invoke these commands to add the NodeJS repository, then install it.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># curl -sL https:\/\/rpm.nodesource.com\/setup_lts.x | bash -\n# dnf install nodejs -y<\/pre>\n\n\n\n<p>NodeJS has been installed, and we can verify the installation by checking the node and vpm versions.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># node -v; npm -v<\/pre>\n\n\n\n<p>You should see this output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@almalinux9 ~]# node -v; npm -v\nv18.12.1\n8.19.2<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 8. Install Bagisto using Composer<\/h2>\n\n\n\n<p>When running composer using the root account, we would receive a warning message. Since we are using the &#8216;root&#8217; user in this tutorial to install Bagisto, we need to run this command to allow the root to run composer.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># export COMPOSER_ALLOW_SUPERUSER=1<\/pre>\n\n\n\n<p>We should be able to run the composer executable without warning. Next, go to \/opt; we will install Bagisto in \/opt\/bagisto<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># cd \/opt<\/pre>\n\n\n\n<p>Execute the command below to start downloading Bagisto.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># composer create-project bagisto\/bagisto<\/pre>\n\n\n\n<p>Now, we need to modify the .env file to proceed with the installation.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># nano \/opt\/bagisto\/.env<\/pre>\n\n\n\n<p>Make sure to edit the followings:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">APP_URL=http:\/\/localhost\nDB_DATABASE=\nDB_USERNAME=\nDB_PASSWORD=\nDB_PREFIX=<\/pre>\n\n\n\n<p>You need to use the MySQL database credentials we created earlier. It should look like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">APP_URL=http:\/\/bagisto.yourdomain.com\nDB_DATABASE=bagisto\nDB_USERNAME=bagisto\nDB_PASSWORD=m0d1fyth15\nDB_PREFIX=bgs_<\/pre>\n\n\n\n<p>Save the changes, then exit from the editor. Now, we can start the installation.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># cd bagisto\n# php artisan bagisto:install<\/pre>\n\n\n\n<p>The command above will install Bagisto, and you will see an output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Congratulations!\nThe installation has been finished and you can now use Bagisto.\nGo to http:\/\/bagisto.yourdomain.com\/admin and authenticate with:\nEmail: admin@example.com\nPassword: admin123<\/pre>\n\n\n\n<p>You can use a web browser and navigate to http:\/\/bagisto.yourdomain.com\/admin now.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"593\" height=\"648\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/12\/bagisto-login.webp\" alt=\"\" class=\"wp-image-1752\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/12\/bagisto-login.webp 593w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/12\/bagisto-login-275x300.webp 275w\" sizes=\"(max-width: 593px) 100vw, 593px\" \/><\/figure>\n<\/div>\n\n\n<p>Once logged in, you will be brought to the dashboard.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"1024\" height=\"562\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/12\/bagisto-dashboard.webp\" alt=\"\" class=\"wp-image-1753\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/12\/bagisto-dashboard.webp 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/12\/bagisto-dashboard-300x165.webp 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/12\/bagisto-dashboard-768x422.webp 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\">Step 9. Install SSL\/TLS Certificate<\/h2>\n\n\n\n<p>This step is optional but highly recommended to complete. This step will walk you through SSL installation from Let&#8217;s Encrypt using certbot.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># dnf install certbot python3-certbot-nginx<\/pre>\n\n\n\n<p>Prior to generating a new SSL certificate for your bagisto.yourdomain.com, make sure that the domain\/subdomain DNS A record is already pointing to your server IP address. If there is an issue when generating a free SSL certificate, most likely, the DNS update is not fully propagated.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># certbot<\/pre>\n\n\n\n<p>You will get an output like this; you need to answer the prompts.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@almalinux9 bagisto]# certbot\n\nSaving debug log to \/var\/log\/letsencrypt\/letsencrypt.log\nEnter email address (used for urgent renewal and security notices)\n(Enter 'c' to cancel): you@yourdomain.com\n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\nPlease read the Terms of Service at\nhttps:\/\/letsencrypt.org\/documents\/LE-SA-v1.3-September-21-2022.pdf. You must\nagree in order to register with the ACME server. Do you agree?\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n(Y)es\/(N)o: y\n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\nWould you be willing, once your first certificate is successfully issued, to\nshare your email address with the Electronic Frontier Foundation, a founding\npartner of the Let's Encrypt project and the non-profit organization that\ndevelops Certbot? We'd like to send you email about our work encrypting the web,\nEFF news, campaigns, and ways to support digital freedom.\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n(Y)es\/(N)o: n\nAccount registered.\n\nWhich names would you like to activate HTTPS for?\nWe recommend selecting either all domains, or all domains in a VirtualHost\/server block.\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n1: bagisto.yourdomain.com\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\nSelect the appropriate numbers separated by commas and\/or spaces, or leave input\nblank to select all options shown (Enter 'c' to cancel): 1\nRequesting a certificate for bagisto.yourdomain.com\n\nSuccessfully received certificate.\nCertificate is saved at: \/etc\/letsencrypt\/live\/bagisto.yourdomain.com\/fullchain.pem\nKey is saved at: \/etc\/letsencrypt\/live\/bagisto.yourdomain.com\/privkey.pem\nThis certificate expires on 2023-03-04.\nThese files will be updated when the certificate renews.\nCertbot has set up a scheduled task to automatically renew this certificate in the background.\n\nDeploying certificate\nSuccessfully deployed certificate for bagisto.yourdomain.com to \/etc\/nginx\/conf.d\/bagisto.yourdomain.com.conf\nCongratulations! You have successfully enabled HTTPS on https:\/\/bagisto.yourdomain.com\n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\nIf you like Certbot, please consider supporting our work by:\n* Donating to ISRG \/ Let's Encrypt: https:\/\/letsencrypt.org\/donate\n* Donating to EFF: https:\/\/eff.org\/donate-le\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -<\/pre>\n\n\n\n<p>That&#8217;s it! You have learned how to install Bagisto Ecommerce on Almalinux. Your bagisto website should be accessible at https:\/\/bagisto.yourdomain.com.<\/p>\n\n\n\n<p>Of course, you don&#8217;t have to install <a href=\"https:\/\/bagisto.com\/en\/\">Bagisto Ecommerce<\/a> on Almalinux if you use one of our Django VPS Hosting services. You can simply ask our expert Linux admins to install Bagisto Ecommerce on Almalinux VPS for you. They are available 24\/7 and will take care of your request immediately.<\/p>\n\n\n\n<p>PS. If you liked this post on how to install Bagisto Ecommerce on <a href=\"https:\/\/www.rosehosting.com\/almalinux-hosting\/\">Almalinux<\/a>, please share it with your friends on the social networks using the buttons below or simply leave a reply in the comments sections. Thanks.<\/p><div id=\"linux-3451262008\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Bagisto is an open-source eCommerce platform built using Laravel framework and VueJS. The framework is very flexible and easy to use, even for non-tech users. Bagisto offers Multi-Warehouse Inventory; almost everything you need when building an eCommerce website is available in Bagisto. In this tutorial, we will show you how to install Bagisto Ecommerce on [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1757,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[228,2],"tags":[220,236,237],"class_list":["post-1751","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","category-tutorials","tag-almalinux","tag-bagisto","tag-ecommerce"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Bagisto Ecommerce on Almalinux | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Bagisto is an open-source eCommerce platform built using Laravel framework and VueJS. Today we will install it quickly on AlmaLinux. Let&#039;s get started\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Bagisto Ecommerce on Almalinux | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Bagisto is an open-source eCommerce platform built using Laravel framework and VueJS. Today we will install it quickly on AlmaLinux. Let&#039;s get started\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-15T18:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/12\/install-bagisto-ecommerce-almalinux.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bagisto-ecommerce-on-almalinux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bagisto-ecommerce-on-almalinux\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Bagisto Ecommerce on Almalinux\",\"datePublished\":\"2023-01-15T18:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bagisto-ecommerce-on-almalinux\\\/\"},\"wordCount\":983,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bagisto-ecommerce-on-almalinux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/install-bagisto-ecommerce-almalinux.webp\",\"keywords\":[\"almalinux\",\"bagisto\",\"ecommerce\"],\"articleSection\":[\"Linux\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bagisto-ecommerce-on-almalinux\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bagisto-ecommerce-on-almalinux\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bagisto-ecommerce-on-almalinux\\\/\",\"name\":\"How to Install Bagisto Ecommerce on Almalinux | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bagisto-ecommerce-on-almalinux\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bagisto-ecommerce-on-almalinux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/install-bagisto-ecommerce-almalinux.webp\",\"datePublished\":\"2023-01-15T18:30:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Bagisto is an open-source eCommerce platform built using Laravel framework and VueJS. Today we will install it quickly on AlmaLinux. Let's get started\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bagisto-ecommerce-on-almalinux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bagisto-ecommerce-on-almalinux\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bagisto-ecommerce-on-almalinux\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/install-bagisto-ecommerce-almalinux.webp\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/install-bagisto-ecommerce-almalinux.webp\",\"width\":742,\"height\":372,\"caption\":\"install bagisto ecommerce on almalinux\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bagisto-ecommerce-on-almalinux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Bagisto Ecommerce on Almalinux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Bagisto Ecommerce on Almalinux | LinuxHostSupport","description":"Bagisto is an open-source eCommerce platform built using Laravel framework and VueJS. Today we will install it quickly on AlmaLinux. Let's get started","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Bagisto Ecommerce on Almalinux | LinuxHostSupport","og_description":"Bagisto is an open-source eCommerce platform built using Laravel framework and VueJS. Today we will install it quickly on AlmaLinux. Let's get started","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2023-01-15T18:30:00+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/12\/install-bagisto-ecommerce-almalinux.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Bagisto Ecommerce on Almalinux","datePublished":"2023-01-15T18:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/"},"wordCount":983,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/12\/install-bagisto-ecommerce-almalinux.webp","keywords":["almalinux","bagisto","ecommerce"],"articleSection":["Linux","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/","name":"How to Install Bagisto Ecommerce on Almalinux | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/12\/install-bagisto-ecommerce-almalinux.webp","datePublished":"2023-01-15T18:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Bagisto is an open-source eCommerce platform built using Laravel framework and VueJS. Today we will install it quickly on AlmaLinux. Let's get started","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/12\/install-bagisto-ecommerce-almalinux.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/12\/install-bagisto-ecommerce-almalinux.webp","width":742,"height":372,"caption":"install bagisto ecommerce on almalinux"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bagisto-ecommerce-on-almalinux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Bagisto Ecommerce on Almalinux"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1751","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=1751"}],"version-history":[{"count":1,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1751\/revisions"}],"predecessor-version":[{"id":1754,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1751\/revisions\/1754"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1757"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1751"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1751"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1751"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}