{"id":2308,"date":"2025-04-30T12:30:00","date_gmt":"2025-04-30T17:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=2308"},"modified":"2025-03-25T04:32:11","modified_gmt":"2025-03-25T09:32:11","slug":"how-to-install-passbolt-on-ubuntu-24-04","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/","title":{"rendered":"How to Install Passbolt on Ubuntu 24.04"},"content":{"rendered":"\n<div id=\"linux-3262256457\" 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>Welcome to our step-by-step guide on installing Passbolt CE (Community Edition) on Ubuntu 24.04! In an era where cybersecurity is more important than ever, managing passwords securely is essential. Passbolt CE is an open-source password manager designed to protect sensitive credentials while enabling secure sharing within teams.<\/p>\n\n\n\n<p>This guide provides clear instructions for both IT professionals and tech enthusiasts looking to set up Passbolt CE on Ubuntu 24.04. Whether you&#8217;re securing personal data or enhancing team password management, follow along to ensure a smooth installation.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p>Before diving into the installation, ensure you have the following:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>An Ubuntu 24.04 VPS<\/li>\n\n\n\n<li>At least 2GB of RAM<\/li>\n\n\n\n<li>SSH root access or a system user with sudo privileges<\/li>\n\n\n\n<li>A functional SMTP server for email notifications<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Update System Packages<\/h2>\n\n\n\n<p>Start by logging into your Ubuntu 24.04 VPS via SSH:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ssh root@IP_Address -p Port_number<\/code><\/pre>\n\n\n\n<p>Replace <code>IP_Address<\/code> and <code>Port_number<\/code> with your server\u2019s details. If you\u2019re not using the root account, replace <code>root<\/code> with your sudo user\u2019s username.<\/p>\n\n\n\n<p>Once logged in, update your system packages:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get update -y &amp;&amp; sudo apt-get upgrade -y<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Install Nginx Web Server<\/h2>\n\n\n\n<p>Passbolt requires a web server, and we\u2019ll use Nginx. Install Nginx with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install nginx -y<\/code><\/pre>\n\n\n\n<p>Enable and start the Nginx service:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl enable nginx\nsudo systemctl start nginx<\/code><\/pre>\n\n\n\n<p>Verify the installation:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl status nginx<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Install MariaDB Database Server<\/h2>\n\n\n\n<p>Password managers rely on a database to store their data. Install MariaDB:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install mariadb-server mariadb-client -y<\/code><\/pre>\n\n\n\n<p>Enable and start MariaDB:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl enable mariadb\nsudo systemctl start mariadb<\/code><\/pre>\n\n\n\n<p>Verify the installation:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl status mariadb<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Install PHP and Required Extensions<\/h2>\n\n\n\n<p>Passbolt is built on PHP, so install PHP and its necessary extensions:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install php php-{fpm,mysql,common,cli,opcache,readline,mbstring,xml,gd,curl,imagick,gnupg,ldap,imap,zip,bz2,intl,gmp} -y<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Create a Database for Passbolt<\/h2>\n\n\n\n<p>Log into the MariaDB console:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mysql -u root<\/code><\/pre>\n\n\n\n<p>Create a database and user:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE DATABASE passbolt;\nCREATE USER 'passbolt'@'localhost' IDENTIFIED BY 'YourStrongPasswordHere';\nGRANT ALL PRIVILEGES ON passbolt.* TO 'passbolt'@'localhost';\nFLUSH PRIVILEGES;\nEXIT;<\/code><\/pre>\n\n\n\n<p>Replace <code>YourStrongPasswordHere<\/code> with a strong, unique password.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6: Clone the Passbolt GitHub Repository<\/h2>\n\n\n\n<p>Install Git and set the correct ownership:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install git -y\nsudo chown -R www-data:www-data \/var\/www\/<\/code><\/pre>\n\n\n\n<p>Clone the Passbolt repository:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/var\/www\/\nsudo -u www-data git clone https:\/\/github.com\/passbolt\/passbolt_api.git<\/code><\/pre>\n\n\n\n<p>Navigate to the Passbolt directory and install Composer:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/var\/www\/passbolt_api\/\nsudo apt install composer -y<\/code><\/pre>\n\n\n\n<p>Install PHP dependencies:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo -u www-data composer install --no-dev<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7: Generate an OpenPGP Key<\/h2>\n\n\n\n<p>Install <code>haveged<\/code> for better entropy generation:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install haveged -y<\/code><\/pre>\n\n\n\n<p>Generate a GPG key:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo -u www-data gpg --quick-gen-key --pinentry-mode=loopback 'YourFirstName YourLastName &lt;yourMailAddress@yourDomain.com&gt;' default default never<\/code><\/pre>\n\n\n\n<p>Export the keys:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo -u www-data gpg --armor --export-secret-keys yourMailAddress@yourDomain.com &gt; \/var\/www\/passbolt_api\/config\/gpg\/serverkey_private.asc\nsudo -u www-data gpg --armor --export yourMailAddress@yourDomain.com &gt; \/var\/www\/passbolt_api\/config\/gpg\/serverkey.asc<\/code><\/pre>\n\n\n\n<p>Retrieve the fingerprint:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo -u www-data gpg --list-keys<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 8: Configure Passbolt<\/h2>\n\n\n\n<p>Navigate to the Passbolt directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/var\/www\/passbolt_api<\/code><\/pre>\n\n\n\n<p>Copy and edit the configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo cp config\/passbolt.default.php config\/passbolt.php\nsudo nano config\/passbolt.php<\/code><\/pre>\n\n\n\n<p>Update the following sections:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Base URL:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  'fullBaseUrl' =&gt; 'https:\/\/passbolt.yourdomain.com',<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Datasource Configuration:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  'database' =&gt; 'passbolt',\n  'username' =&gt; 'passbolt',\n  'password' =&gt; 'YourStrongPasswordHere',<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Email Configuration:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  'host' =&gt; 'yourSMTPHostname.com',\n  'username' =&gt; 'yourSMTPUser',\n  'password' =&gt; 'yourSMTPPassword',\n  'tls' =&gt; true,<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>GPG Configuration:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  'fingerprint' =&gt; 'YOUR_GPG_FINGERPRINT',\n  'public' =&gt; CONFIG . 'gpg' . DS . 'serverkey.asc',\n  'private' =&gt; CONFIG . 'gpg' . DS . 'serverkey_private.asc',<\/code><\/pre>\n\n\n\n<p>Save and exit the file (<code>CTRL + X<\/code>, then <code>Y<\/code> and <code>Enter<\/code>).<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 9: Run the Passbolt Installation Script<\/h2>\n\n\n\n<p>Execute the installation script:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo su -s \/bin\/bash -c \"\/var\/www\/passbolt_api\/bin\/cake passbolt install --force\" www-data<\/code><\/pre>\n\n\n\n<p>Follow the prompts to create an admin account.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 10: Configure Nginx for Passbolt<\/h2>\n\n\n\n<p>Create an Nginx configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nano \/etc\/nginx\/conf.d\/passbolt.conf<\/code><\/pre>\n\n\n\n<p>Insert the following configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>server {\n    listen 80;\n    server_name passbolt.yourdomain.com;\n    root \/var\/www\/passbolt_api\/webroot\/;\n    index index.php;\n    location \/ { try_files $uri $uri\/ \/index.php?$query_string; }\n    location ~ \\.php$ {\n        fastcgi_pass unix:\/run\/php\/php8.3-fpm.sock;\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\n        include fastcgi_params;\n    }\n}<\/code><\/pre>\n\n\n\n<p>Test the configuration and reload Nginx:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nginx -t\nsudo systemctl reload nginx<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 11: Secure with Let\u2019s Encrypt SSL<\/h2>\n\n\n\n<p>Install Certbot:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install python3-certbot-nginx -y<\/code><\/pre>\n\n\n\n<p><br>Obtain an SSL certificate:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo certbot --nginx<\/code><\/pre>\n\n\n\n<p>Follow the prompts to set up SSL and enable HTTP to HTTPS redirection.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Conclusion<br>Congratulations! Passbolt CE is now installed and secured with SSL on your Ubuntu 24.04 server. Access it via <code>https:\/\/passbolt.yourdomain.com<\/code> and complete the setup in your browser. Enjoy seamless and secure password management!<\/p>\n\n\n\n<p>If you have difficulties with this installation admins will help you with any aspect. You must sign up for one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\" target=\"_blank\" rel=\"noreferrer noopener\">monthly management<\/a> or <a href=\"https:\/\/linuxhostsupport.com\/per-incident-support.html\" target=\"_blank\" rel=\"noreferrer noopener\">per-incident server support plans<\/a>. Do not hesitate to contact us anytime you want. We are available 24\/7.<\/p>\n\n\n\n<p>If you liked this post, please share it with your friends or leave a comment below. Thanks.<\/p><div id=\"linux-2521636005\" 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>Welcome to our step-by-step guide on installing Passbolt CE (Community Edition) on Ubuntu 24.04! In an era where cybersecurity is more important than ever, managing passwords securely is essential. Passbolt CE is an open-source password manager designed to protect sensitive credentials while enabling secure sharing within teams. This guide provides clear instructions for both IT [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2313,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[253],"tags":[199,313,314,141,270],"class_list":["post-2308","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-security","tag-how-to-install","tag-passbolt","tag-password-manager","tag-security","tag-ubuntu-24-04"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Passbolt: Learn How To Install It Yourself On Ubuntu 24.04 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Learn how to install Passbolt on Ubuntu 24.04 using our latest step-by-step guide. If it&#039;s still to hard, let us do it for you.\" \/>\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-passbolt-on-ubuntu-24-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Passbolt: Learn How To Install It Yourself On Ubuntu 24.04 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Learn how to install Passbolt on Ubuntu 24.04 using our latest step-by-step guide. If it&#039;s still to hard, let us do it for you.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/\" \/>\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=\"2025-04-30T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/04\/how-to-install-passbolt-on-ubuntu-24-04.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\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=\"4 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-passbolt-on-ubuntu-24-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-passbolt-on-ubuntu-24-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Passbolt on Ubuntu 24.04\",\"datePublished\":\"2025-04-30T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-passbolt-on-ubuntu-24-04\\\/\"},\"wordCount\":492,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-passbolt-on-ubuntu-24-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/how-to-install-passbolt-on-ubuntu-24-04.webp\",\"keywords\":[\"how to install\",\"passbolt\",\"password manager\",\"security\",\"ubuntu 24.04\"],\"articleSection\":[\"Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-passbolt-on-ubuntu-24-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-passbolt-on-ubuntu-24-04\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-passbolt-on-ubuntu-24-04\\\/\",\"name\":\"Passbolt: Learn How To Install It Yourself On Ubuntu 24.04 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-passbolt-on-ubuntu-24-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-passbolt-on-ubuntu-24-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/how-to-install-passbolt-on-ubuntu-24-04.webp\",\"datePublished\":\"2025-04-30T17:30:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Learn how to install Passbolt on Ubuntu 24.04 using our latest step-by-step guide. If it's still to hard, let us do it for you.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-passbolt-on-ubuntu-24-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-passbolt-on-ubuntu-24-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-passbolt-on-ubuntu-24-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/how-to-install-passbolt-on-ubuntu-24-04.webp\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/how-to-install-passbolt-on-ubuntu-24-04.webp\",\"width\":742,\"height\":410,\"caption\":\"How to Install Passbolt on Ubuntu 24.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-passbolt-on-ubuntu-24-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Passbolt on Ubuntu 24.04\"}]},{\"@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":"Passbolt: Learn How To Install It Yourself On Ubuntu 24.04 | LinuxHostSupport","description":"Learn how to install Passbolt on Ubuntu 24.04 using our latest step-by-step guide. If it's still to hard, let us do it for you.","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-passbolt-on-ubuntu-24-04\/","og_locale":"en_US","og_type":"article","og_title":"Passbolt: Learn How To Install It Yourself On Ubuntu 24.04 | LinuxHostSupport","og_description":"Learn how to install Passbolt on Ubuntu 24.04 using our latest step-by-step guide. If it's still to hard, let us do it for you.","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2025-04-30T17:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/04\/how-to-install-passbolt-on-ubuntu-24-04.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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Passbolt on Ubuntu 24.04","datePublished":"2025-04-30T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/"},"wordCount":492,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/04\/how-to-install-passbolt-on-ubuntu-24-04.webp","keywords":["how to install","passbolt","password manager","security","ubuntu 24.04"],"articleSection":["Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/","name":"Passbolt: Learn How To Install It Yourself On Ubuntu 24.04 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/04\/how-to-install-passbolt-on-ubuntu-24-04.webp","datePublished":"2025-04-30T17:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Learn how to install Passbolt on Ubuntu 24.04 using our latest step-by-step guide. If it's still to hard, let us do it for you.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/04\/how-to-install-passbolt-on-ubuntu-24-04.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/04\/how-to-install-passbolt-on-ubuntu-24-04.webp","width":742,"height":410,"caption":"How to Install Passbolt on Ubuntu 24.04"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-passbolt-on-ubuntu-24-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Passbolt on Ubuntu 24.04"}]},{"@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\/2308","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=2308"}],"version-history":[{"count":4,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2308\/revisions"}],"predecessor-version":[{"id":2312,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2308\/revisions\/2312"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/2313"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=2308"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=2308"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=2308"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}