Posts

Showing posts from December, 2021

AWS S3 Some Backet Full Permission and read Write

 {     "Version": "2012-10-17",     "Statement": [         {             "Effect": "Allow",             "Action": [                 "s3:GetBucketLocation",                 "s3:ListAllMyBuckets"             ],             "Resource": "arn:aws:s3:::*"         },         {             "Effect": "Allow",             "Action": "s3:*",             "Resource": [                 "arn:aws:s3:::my-data-s3",                 "arn:aws:s3:::my-data-s3-1",                 "arn:aws:s3:::my-data-s3-2",     ...

How to Install GitLab enterprise edition on Ubuntu Server

  Gitalb Installion:- 1. Install and configure the necessary dependencies sudo apt-get update sudo apt-get install -y curl openssh-server ca-certificates tzdata   Next, install Postfix to send notification emails. If you want to use another solution to send emails please skip this step and configure an external SMTP server after GitLab has been installed.   sudo apt-get install -y postfix   During Postfix installation a configuration screen may appear. Select 'Internet Site' and press enter. Use your server's external DNS for 'mail name' and press enter. If additional screens appear, continue to press enter to accept the defaults. 2. Add the GitLab package repository and install the package Add the GitLab package repository.   curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh | sudo bash   Next, install the GitLab package. Make sure you have correctly set up your DNS, and change https://gitlab...