{"id":1249,"date":"2022-03-22T11:09:00","date_gmt":"2022-03-22T10:09:00","guid":{"rendered":"https:\/\/irg-net.com\/?p=1249"},"modified":"2022-03-24T12:54:43","modified_gmt":"2022-03-24T11:54:43","slug":"how-to-install-bitwarden-password-manager-on-centos-stream-8","status":"publish","type":"post","link":"https:\/\/irg-net.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/","title":{"rendered":"How to install Bitwarden Password Manager on CentOS Stream 8"},"content":{"rendered":"\n<p>Bitwarden is an open-source solution that lets you manage your accounts and protect them with passwords of varying complexity. For this purpose, the program also offers a two-step authentication process, among other things.<\/p>\n\n\n\n<p>As with most popular password managers, Bitwarden secures data using 256-bit AES encryption. The data vault is then accessed via a master password, which they must assign during the installation process.<\/p>\n\n\n\n<p>The Bitwarden desktop client for Windows, Linux or macOS is available for download on the project&#8217;s website. The free app for Android and iOS, on the other hand, can be downloaded directly from the Google Play Store or the Apple Store. Alternatively, you can also open Bitwarden via a web browser and thus, for example, also conveniently retrieve your data recorded on the iPad via the PC.<\/p>\n\n\n\n<p>I want to show you on how to install Bitwarden password manager locally on your server and host it yourself on CentOS Steam 8. You can find all the details about installation and configuration on the Bitwarden website <strong><a href=\"https:\/\/bitwarden.com\/help\/install-on-premise-linux\/\">https:\/\/bitwarden.com\/help\/install-on-premise-linux\/<\/a><\/strong>.<\/p>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Step 1:<\/strong> Configure your Domain<\/p>\n\n\n\n<p>By default, Bitwarden will be served through ports 80 (<code>http<\/code>) and 443 (<code>https<\/code>) on the host machine. Open these ports so that Bitwarden can be accessed from within and\/or outside of the network. You may opt to choose different ports during installation.<\/p>\n\n\n\n<p>I recommend configuring a domain name with DNS records that point to your host machine (for example,&nbsp;<a href=\"https:\/\/irg-net.com\" target=\"_blank\" rel=\"noreferrer noopener\">(<strong>bitwarden.example.com<\/strong><\/a>), especially if you are serving Bitwarden over the internet.<\/p>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Step 2:<\/strong> Install Docker and Docker Compose<\/p>\n\n\n\n<p>For this Part I have written 3 Blog post for Docker, Docker Compose and Portainer which you can find here:<\/p>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Step 3:<\/strong> Get Installation ID and Key<\/p>\n\n\n\n<p>Visit <a href=\"https:\/\/bitwarden.com\/host\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>https:\/\/bitwarden.com\/host\/<\/strong><\/a> to get your personalized Installation ID and Key, which you will need later in the installation process<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"900\" height=\"652\" src=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/2022-02-21_192920.jpg?resize=900%2C652&#038;ssl=1\" alt=\"\" class=\"wp-image-1250\" srcset=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/2022-02-21_192920.jpg?w=900&amp;ssl=1 900w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/2022-02-21_192920.jpg?resize=300%2C217&amp;ssl=1 300w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/2022-02-21_192920.jpg?resize=768%2C556&amp;ssl=1 768w\" sizes=\"auto, (max-width: 900px) 100vw, 900px\" \/><\/figure><\/div>\n\n\n\n<p>After you submit your Email Address you will immidiately get your Installation ID and key.<\/p>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Step 4:<\/strong> Create Bitwarden Local User &amp; Directory<\/p>\n\n\n\n<p>Bitwarden recommends configuring your Linux server with a dedicated <strong>bitwarden&nbsp;<\/strong>service account, from which to install and run Bitwarden. Doing so will isolate your Bitwarden instance from other applications running on your server.<\/p>\n\n\n\n<p><strong>These steps are Bitwarden-recommended best practices, but are not required.<\/strong>&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\"># Create a bitwarden user:\nsudo adduser bitwarden\n\n# Set password for bitwarden user (strong password):\nsudo passwd bitwarden\n\n# Create a docker group (if it doesn\u2019t already exist):\nsudo groupadd docker\n\n# Add the bitwarden user to the docker group:\nsudo usermod -aG docker bitwarden\n\n# Create a bitwarden directory:\nsudo mkdir \/opt\/bitwarden\n\n# Set permissions for the \/opt\/bitwarden directory:\nsudo chmod -R 700 \/opt\/bitwarden\n\n# Set the bitwarden user ownership of the \/opt\/bitwarden directory:\nsudo chown -R bitwarden:bitwarden \/opt\/bitwarden<\/code><\/pre>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Step 5:<\/strong> Install Bitwarden<\/p>\n\n\n\n<p>Bitwarden provides a shell script for easy installation on Linux and macOS (Bash), or Windows (PowerShell). Complete the following steps to install Bitwarden using the shell script:<\/p>\n\n\n\n<ul class=\"wp-block-list\" style=\"font-size:15.5px\"><li>If you&#8217;ve&nbsp;<a href=\"https:\/\/bitwarden.com\/help\/install-on-premise-linux\/#create-bitwarden-local-user--directory\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>created a Bitwarden User &amp; Directory<\/strong><\/a>, complete the following as the&nbsp;<code>bitwarden<\/code>&nbsp;user from the&nbsp;<code>\/opt\/bitwarden<\/code>&nbsp;directory.<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\"># Download the Bitwarden installation script (bitwarden.sh) to your machine:\ncurl -Lso bitwarden.sh https:\/\/go.btwrdn.co\/bw-sh &amp;&amp; chmod 700 bitwarden.sh\n\n# Run the installer script. A .\/bwdata directory will be created relative to the location of bitwarden.sh.\n.\/bitwarden.sh install<\/code><\/pre>\n\n\n\n<p>Complete the prompts in the installer:<\/p>\n\n\n\n<ul class=\"wp-block-list\" style=\"font-size:15.5px\"><li><strong>Enter the domain name for your Bitwarden instance:<\/strong>Typically, this value should be the configured DNS record.<\/li><li><strong>Do you want to use Let&#8217;s Encrypt to generate a free SSL certificate? (y\/n):<\/strong>Specify&nbsp;<code>y<\/code>&nbsp;to generate a trusted SSL certificate using Let&#8217;s Encrypt. You will be prompted to enter an email address for expiration reminders from Let&#8217;s Encrypt. For more information, see&nbsp;<a href=\"https:\/\/bitwarden.com\/help\/certificates\/\">Certificate Options<\/a>.Alternatively, specify&nbsp;<code>n<\/code>&nbsp;and use the&nbsp;<strong>Do you have a SSL certificate to use?<\/strong>&nbsp;option.<\/li><li><strong>Enter your installation id:<\/strong>Retrieve an installation id using a valid email at&nbsp;<a href=\"https:\/\/bitwarden.com\/host\">https:\/\/bitwarden.com\/host<\/a>. For more information, see&nbsp;<a href=\"https:\/\/bitwarden.com\/help\/hosting-faqs\/#general\">What are my installation id and installation key used for?<\/a>.<\/li><li><strong>Enter your installation key:<\/strong>Retrieve an installation key using a valid email at&nbsp;<a href=\"https:\/\/bitwarden.com\/host\">https:\/\/bitwarden.com\/host<\/a>. For more information, see&nbsp;<a href=\"https:\/\/bitwarden.com\/help\/hosting-faqs\/#general\">What are my installation id and installation key used for?<\/a>.<\/li><li><strong>Do you have a SSL certificate to use? (y\/n):<\/strong>If you already have your own SSL certificate, specify&nbsp;<code>y<\/code>&nbsp;and place the necessary files in the&nbsp;<code>.\/bwdata\/ssl\/your.domain<\/code>&nbsp;directory. You will be asked whether it is a trusted SSL certificate (y\/n). For more information, see&nbsp;<a href=\"https:\/\/bitwarden.com\/help\/certificates\/\">Certificate Options<\/a>.Alternatively, specify&nbsp;<code>n<\/code>&nbsp;and use the&nbsp;<strong>self-signed SSL certificate?<\/strong>&nbsp;option, which is only recommended for testing purposes.<\/li><li><strong>Do you want to generate a self-signed SSL certificate? (y\/n):<\/strong>Specify&nbsp;<code>y<\/code>&nbsp;to have Bitwarden generate a self-signed certificate for you. This option is only recommended for testing. For more information, see&nbsp;<a href=\"https:\/\/bitwarden.com\/help\/certificates\/\">Certificate Options<\/a>.If you specify&nbsp;<code>n<\/code>, your instance will not use an SSL certificate and you will be required to front your installation with a HTTPS proxy, or else Bitwarden applications will not function properly.<\/li><\/ul>\n\n\n\n<p>After all these steps now we can start Bitwarden:<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">.\/bitwarden.sh start<\/code><\/pre>\n\n\n\n<p>You will have to wait a bit. You will see a Bitwarden Logo and at the End something like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">Bitwarden is up and running!\n===================================================\n<\/code><\/pre>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Step 6:<\/strong> Update your Bitwarden Appliance<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">.\/bitwarden.sh updateself\n\n# and then\n\n.\/bitwarden.sh update<\/code><\/pre>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Step 7:<\/strong> Access the Bitwarden Admin page<\/p>\n\n\n\n<p>Verify that all containers are running correctly:<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">docker ps<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"374\" src=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/2022-02-21_195054.jpg?resize=1024%2C374&#038;ssl=1\" alt=\"\" class=\"wp-image-1251\" srcset=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/2022-02-21_195054.jpg?resize=1024%2C374&amp;ssl=1 1024w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/2022-02-21_195054.jpg?resize=300%2C110&amp;ssl=1 300w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/2022-02-21_195054.jpg?resize=768%2C281&amp;ssl=1 768w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/2022-02-21_195054.jpg?w=1117&amp;ssl=1 1117w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>At status every container has to be healthy &#8211; Congratulations! Bitwarden is now up and running at <a href=\"https:\/\/irg-net.com\"><strong>https:\/\/your.domain.com<\/strong><\/a>. Visit the web vault in your web browser to confirm that it&#8217;s working.<\/p>\n\n\n\n<p>You may now register a new account and log in. You will need to have configured&nbsp;<code>smtp<\/code>&nbsp;environment variables (see&nbsp;<a href=\"https:\/\/bitwarden.com\/help\/environment-variables\/\">Environment Variables<\/a>) in order to verify the email for your new account.<\/p>\n\n\n\n<p>If you have any questions, please leave it in the comments. \ud83d\ude42<\/p>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Bitwarden is an open-source solution that lets you manage your accounts and protect them with passwords of varying complexity. For this purpose, the program also offers a two-step authentication process, among other things. As with most popular password managers, Bitwarden secures data using 256-bit AES encryption. The data vault is then accessed via a master [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1,37,21],"tags":[],"class_list":["post-1249","post","type-post","status-publish","format-standard","hentry","category-blog","category-container","category-rocky"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install Bitwarden Password Manager on CentOS Stream 8 - irgNET<\/title>\n<meta name=\"description\" content=\"I want to show you on how to install Bitwarden password manager locally on your server and host it yourself on CentOS Steam 8\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Bitwarden Password Manager on CentOS Stream 8 - irgNET\" \/>\n<meta property=\"og:description\" content=\"I want to show you on how to install Bitwarden password manager locally on your server and host it yourself on CentOS Steam 8\" \/>\n<meta property=\"og:url\" content=\"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/\" \/>\n<meta property=\"og:site_name\" content=\"irgNET\" \/>\n<meta property=\"article:published_time\" content=\"2022-03-22T10:09:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-24T11:54:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/wp-content\/uploads\/2022\/02\/2022-02-21_192920.jpg\" \/>\n<meta name=\"author\" content=\"H. Cemre G\u00fcnay\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@irg_net\" \/>\n<meta name=\"twitter:site\" content=\"@irg_net\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"H. Cemre G\u00fcnay\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-bitwarden-password-manager-on-centos-stream-8\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-bitwarden-password-manager-on-centos-stream-8\\\/\"},\"author\":{\"name\":\"H. Cemre G\u00fcnay\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/person\\\/71b46e79e8c12bdc8e610214a6621a66\"},\"headline\":\"How to install Bitwarden Password Manager on CentOS Stream 8\",\"datePublished\":\"2022-03-22T10:09:00+00:00\",\"dateModified\":\"2022-03-24T11:54:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-bitwarden-password-manager-on-centos-stream-8\\\/\"},\"wordCount\":856,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-bitwarden-password-manager-on-centos-stream-8\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/2022-02-21_192920.jpg\",\"articleSection\":[\"Blog\",\"Container\",\"Rocky Linux\"],\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-bitwarden-password-manager-on-centos-stream-8\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-bitwarden-password-manager-on-centos-stream-8\\\/\",\"url\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-bitwarden-password-manager-on-centos-stream-8\\\/\",\"name\":\"How to install Bitwarden Password Manager on CentOS Stream 8 - irgNET\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-bitwarden-password-manager-on-centos-stream-8\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-bitwarden-password-manager-on-centos-stream-8\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/2022-02-21_192920.jpg\",\"datePublished\":\"2022-03-22T10:09:00+00:00\",\"dateModified\":\"2022-03-24T11:54:43+00:00\",\"description\":\"I want to show you on how to install Bitwarden password manager locally on your server and host it yourself on CentOS Steam 8\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-bitwarden-password-manager-on-centos-stream-8\\\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-bitwarden-password-manager-on-centos-stream-8\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-bitwarden-password-manager-on-centos-stream-8\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/2022-02-21_192920.jpg?fit=900%2C652&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/2022-02-21_192920.jpg?fit=900%2C652&ssl=1\",\"width\":900,\"height\":652},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-bitwarden-password-manager-on-centos-stream-8\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Bitwarden Password Manager on CentOS Stream 8\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#website\",\"url\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/\",\"name\":\"irgNET\",\"description\":\"a virtual Knowledge Base\",\"publisher\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#organization\",\"name\":\"irg-NET\",\"url\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/i2.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i2.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1\",\"width\":2048,\"height\":2048,\"caption\":\"irg-NET\"},\"image\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/irg_net\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/h-cemre-g\u00fcnay-2b61601b4\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UC8GknhO5YMAkAoVxppu6aaQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/person\\\/71b46e79e8c12bdc8e610214a6621a66\",\"name\":\"H. Cemre G\u00fcnay\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g\",\"caption\":\"H. Cemre G\u00fcnay\"},\"sameAs\":[\"http:\\\/\\\/192.168.34.155\\\/wordpress\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install Bitwarden Password Manager on CentOS Stream 8 - irgNET","description":"I want to show you on how to install Bitwarden password manager locally on your server and host it yourself on CentOS Steam 8","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:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/","og_locale":"en_US","og_type":"article","og_title":"How to install Bitwarden Password Manager on CentOS Stream 8 - irgNET","og_description":"I want to show you on how to install Bitwarden password manager locally on your server and host it yourself on CentOS Steam 8","og_url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/","og_site_name":"irgNET","article_published_time":"2022-03-22T10:09:00+00:00","article_modified_time":"2022-03-24T11:54:43+00:00","og_image":[{"url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/wp-content\/uploads\/2022\/02\/2022-02-21_192920.jpg","type":"","width":"","height":""}],"author":"H. Cemre G\u00fcnay","twitter_card":"summary_large_image","twitter_creator":"@irg_net","twitter_site":"@irg_net","twitter_misc":{"Written by":"H. Cemre G\u00fcnay","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/#article","isPartOf":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/"},"author":{"name":"H. Cemre G\u00fcnay","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/person\/71b46e79e8c12bdc8e610214a6621a66"},"headline":"How to install Bitwarden Password Manager on CentOS Stream 8","datePublished":"2022-03-22T10:09:00+00:00","dateModified":"2022-03-24T11:54:43+00:00","mainEntityOfPage":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/"},"wordCount":856,"commentCount":0,"publisher":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#organization"},"image":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/#primaryimage"},"thumbnailUrl":"https:\/\/irg-net.com\/wp-content\/uploads\/2022\/02\/2022-02-21_192920.jpg","articleSection":["Blog","Container","Rocky Linux"],"inLanguage":"en","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/","url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/","name":"How to install Bitwarden Password Manager on CentOS Stream 8 - irgNET","isPartOf":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/#primaryimage"},"image":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/#primaryimage"},"thumbnailUrl":"https:\/\/irg-net.com\/wp-content\/uploads\/2022\/02\/2022-02-21_192920.jpg","datePublished":"2022-03-22T10:09:00+00:00","dateModified":"2022-03-24T11:54:43+00:00","description":"I want to show you on how to install Bitwarden password manager locally on your server and host it yourself on CentOS Steam 8","breadcrumb":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/#primaryimage","url":"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/2022-02-21_192920.jpg?fit=900%2C652&ssl=1","contentUrl":"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/2022-02-21_192920.jpg?fit=900%2C652&ssl=1","width":900,"height":652},{"@type":"BreadcrumbList","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-bitwarden-password-manager-on-centos-stream-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/"},{"@type":"ListItem","position":2,"name":"How to install Bitwarden Password Manager on CentOS Stream 8"}]},{"@type":"WebSite","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#website","url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/","name":"irgNET","description":"a virtual Knowledge Base","publisher":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#organization","name":"irg-NET","url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/logo\/image\/","url":"https:\/\/i2.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/06\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1","contentUrl":"https:\/\/i2.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/06\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1","width":2048,"height":2048,"caption":"irg-NET"},"image":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/irg_net","https:\/\/www.linkedin.com\/in\/h-cemre-g\u00fcnay-2b61601b4\/","https:\/\/www.youtube.com\/channel\/UC8GknhO5YMAkAoVxppu6aaQ"]},{"@type":"Person","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/person\/71b46e79e8c12bdc8e610214a6621a66","name":"H. Cemre G\u00fcnay","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/secure.gravatar.com\/avatar\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g","caption":"H. Cemre G\u00fcnay"},"sameAs":["http:\/\/192.168.34.155\/wordpress"]}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts\/1249","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/comments?post=1249"}],"version-history":[{"count":5,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts\/1249\/revisions"}],"predecessor-version":[{"id":1353,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts\/1249\/revisions\/1353"}],"wp:attachment":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/media?parent=1249"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/categories?post=1249"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/tags?post=1249"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}