Cloud Spark House
Cloud Spark House
  • 15
  • 47 760
Complete Guide to Azure DevOps for Salesforce from Scratch PART 3
Hi Friends,
This video series will help you in setting up CI/CD DevOps deployment to any Salesforce instance from scratch.
Part 3 contains resolving of common azure-pipeline.yml script error fixes, sfdx command error fixes, Salesforce deployment error fixes and finally code deployment into Salesforce.
Final azure-pipeline.yml file-
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# aka.ms/yaml
pr:
autoCancel: "true"
branches:
include:
- Test
- main
paths:
exclude:
- README.md
- azure-pipelines.yml
stages:
- stage: TestSalesforceOrg
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/Test'))
jobs:
- job: DeployTestOrg
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
checkLatest: true
- bash:
npm install sfdx-cli --global
displayName: Install Salesforce CLI
- bash:
sfdx config:set restDeploy=false --global
displayName: Use SOAP API for Deployment
- bash:
sfdx force:auth:jwt:grant --clientid 3MVG9G9pzCUSkzZtnzxaz29KLNLs4Z1j.SpYGU__P.iugIKMWvC6KKZbUWrZ0Ax7oDfZ__etQmgbGKNZV6xK5 --jwtkeyfile ./bin/server.key --username abhirupsengupta20@gmail.com --instanceurl login.salesforce.com
displayName: Authorize Salesforce DeployTestOrg Org
- bash:
sfdx force:source:deploy -p force-app -w 10 -u abhirupsengupta20@gmail.com
displayName: Deploy source code to DeployTestOrg Org
มุมมอง: 4 695

วีดีโอ

Complete Guide to Azure DevOps for Salesforce from Scratch PART 2
มุมมอง 7K2 ปีที่แล้ว
Hi Friends, This video series will help you in setting up CI/CD DevOps deployment to any Salesforce instance from scratch. Part 2 contains creation of Server.crt and server.key file to be used in connected app, how to create conected app in Salesforce, how to write a simple azure-pipeline.yml file. OpenSSL related links and content- Link to OpenSSL video- th-cam.com/video/WW9RpDh5G58/w-d-xo.htm...
Complete Guide to Azure DevOps for Salesforce from Scratch PART 1
มุมมอง 10K2 ปีที่แล้ว
Hi Friends, This video series will help you in setting up CI/CD DevOps deployment to any Salesforce instance from scratch. Part 1 contains creation of new project and repo in Azure, taking an extract of code metadata and having an initial code commit to Azure Git repository. Link to Azure- azure.microsoft.com/en-us/services/devops/ Link to Azure DevOps account creation- th-cam.com/video/JffFTIa...
Azure DevOps Configuration, Overview and Free Account Setup
มุมมอง 4492 ปีที่แล้ว
Hi All, This video will help you understand Azure DevOps and how to get started for free. Link to Azure- azure.microsoft.com/en-us/services/devops/ Thanks. :)
SFDX Deploy from Local to Salesforce Org
มุมมอง 2.7K2 ปีที่แล้ว
Hi All, This video will help in SFDX deployment from your local machine if you don't have CI/CD setup or any repository. a) Download Salesforce CLI- developer.salesforce.com/tools/sfdxcli b) Video to setup VS Code for Salesforce- th-cam.com/video/tpd23pzEBFo/w-d-xo.html&ab_channel=CloudSparkHouse SFDX commands to run in terminal- 1) Run Validation only- sfdx force:source:deploy -p force-app -c ...
How to generate Server Certificate/Server.crt/Server.key
มุมมอง 13K2 ปีที่แล้ว
Hi Guys, This video will help you create a server.crt file from scratch. URL to download OpenSSL- gnuwin32.sourceforge.net/packages/openssl.htm Steps- 1)openssl genrsa -des3 -passout pass:x -out server.pass.key 2048 2)openssl rsa -passin pass:x -in server.pass.key -out server.key 3)set OPENSSL_CONF=C:\openssl\openssl-0.9.8h-1-bin (1)\share\openssl.cnf 4)openssl req -new -key server.key -out ser...
Salesforce SFDX Deployment, Connected App, SFDX Commands
มุมมอง 1.3K3 ปีที่แล้ว
Hi Guys, This video will help you give an overview of what is SFDX, what are the steps to follow to setup a SFDX deployment. Callback URL- localhost:1717/OauthRedirect Retrieve sfdx force:source:retrieve -x manifest/package.xml -u abhirupsengupta20@gmail.com Auth-org sfdx auth:web:login clientid 3MVG9G9pzCUSkzZtnzxaz29KLNIahwI1KYav0RxwikQ1EgMnQ4Z9LNg1rvNB4FqNhoSuq1ovUxewp_7.YlEm0 setdefaultdevh...
VS Code Setup for Salesforce
มุมมอง 2363 ปีที่แล้ว
Hi Guys, This video will help you setup VS Code and how developers can create a VS Code project, autorize an Org and retrieve or deploy their code through SFDX. Important links Install VS Code - code.visualstudio.com/ If this video was helpful please subscribe and share to help the community. :)
SFDX Installation in Windows
มุมมอง 7493 ปีที่แล้ว
Hi Guys, This video will help you in installing SFDX CLI in windows machine. Important links Install SFDX CLI - developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_install_cli.htm If this video was helpful please subscribe and share to help the community. :)
Overview of Salesforce Deployment with SFDX
มุมมอง 3743 ปีที่แล้ว
Hi Guys, This video will help you give an overview of what is SFDX, what are the steps to follow to setup a SFDX deployment. Important links 1. Install SFDX CLI - developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_install_cli.htm 2. Install VS Code - code.visualstudio.com/ 3. Create Certificate and connected app 4. List of sfdx commands- developer.salesforce.com/doc...
Introduction to Git, GitHub, Cloning and Pushing into Repository
มุมมอง 1213 ปีที่แล้ว
Hi Guys, This video will help you understand what is Git,how to create a repository in GitHub ,clone the repository and commit your changes through local machines. Important links 1) Git download- git-scm.com/downloads 2) GitHub link- github.com/ 3) GitHub desktop download- desktop.github.com/ 4) My Public GitHub repo for your practice(https)- github.com/wazza9037/GitHub_Repo_Cloning.git If thi...
Salesforce Deployments with ANT Jenkins Integration
มุมมอง 4.6K3 ปีที่แล้ว
This video contains a basic overview on how can we integrate Jenkins and ANT to perform CI/CD deployments into Salesforce orgs. I'll be going through the details in this video. All links- My code repository for reference- github.com/wazza9037/ANT_Jenkins_Salesforce.git Link of previous videos- Jenkins installation- th-cam.com/video/mT82BstTPQc/w-d-xo.html&ab_channel=CloudSparkHouse ANT installa...
Jenkins Installation in Windows 10
มุมมอง 3253 ปีที่แล้ว
This video contains a basic overview on how can we install Jenkins in local machines(Windows). I'll be going through the details in this video. All links- www.jenkins.io/download/
Apache ANT Setup in Local Machines
มุมมอง 3263 ปีที่แล้ว
Hi Guys, This video contains a basic overview on how can we can setup Apache ANT in local machines. I'll be going through the details in this video. All links- 1)Ant download site- ant.apache.org/bindownload.cgi 2)Ant installation notes for all platforms- ant.apache.org/manual/install.html 3)My GitHub Public repo- github.com/wazza9037/ANT_Setup.git Setting path variables- set ANT_HOME=D:\DevOps...
SALESFORCE DEPLOYMENT - JENKINS,GIT,ANT(Overview)
มุมมอง 1.8K4 ปีที่แล้ว
Hi Guys, This video contains a basic overview on how can we use Jenkins, Github and Ant to deploy into any Salesforce org. I'll be going through the details and technicalities in the subsequent videos. I don't own any music used in this video. Courtesy goes to www.bensound.com

ความคิดเห็น

  • @AnilShinde
    @AnilShinde 5 วันที่ผ่านมา

    Wanted how to create .p12 file throughout openssl pkcs12 command

  • @RamVloggerx
    @RamVloggerx 2 หลายเดือนก่อน

    Thanks bro u saved me❤

  • @neelkamalsingh
    @neelkamalsingh 2 หลายเดือนก่อน

    All the 3 parts are awesome, thanks for sharing this.

  • @jashwanthk
    @jashwanthk 3 หลายเดือนก่อน

    Bro getting server.crt: Permission denied while running the 5th command. Please help!!

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 2 หลายเดือนก่อน

      Hi , sorry to hear that. Did you follow all the previous steps correctly?

    • @jashwanthk
      @jashwanthk หลายเดือนก่อน

      Yes, I followed the exact same steps

  • @thembampaxa2366
    @thembampaxa2366 3 หลายเดือนก่อน

    Thank you once again for this amazing video, it helped a lot. I have a question maybe you can assist: this command is giving an error related to comment but there's no comment on the script command: sf project deploy start -x manifest/package.xml -o $(USERNAME) error: Error (1): Comment is not closed.

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 2 หลายเดือนก่อน

      Hi, looks like an unusual error. What are you trying to deploy?

  • @dreamersheaven9986
    @dreamersheaven9986 3 หลายเดือนก่อน

    100th Like is from me

  • @dbalaji0204
    @dbalaji0204 4 หลายเดือนก่อน

    simple and straight forward, Thanks Brother.

  • @yuno7825
    @yuno7825 4 หลายเดือนก่อน

    title says .crt and video shows .csr

  • @user-dh4cn8du2x
    @user-dh4cn8du2x 4 หลายเดือนก่อน

    how to perform delta deployment in azure instead of full deployment

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 4 หลายเดือนก่อน

      you may look into an open source tool called sgd(Salesforce git delta)

  • @thembampaxa2366
    @thembampaxa2366 5 หลายเดือนก่อน

    Thank you for this video. Question on the bash - bash: sfdx force:source:deploy -p force-app -w 10 -u $(USERNAME) Will the same work for all future deployment jobs/stages or will I have to remove the fore-app deploy to make it deploy specific components or move specific components that are in the pull request that was raised? Experiencing an error that says Too many files in zip so I'm assuming that it's trying to grab all the files in the force app folder

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 4 หลายเดือนก่อน

      Hi, this command deploys all the components inside the fore-app folder. You may specify the path or specific component and it will only deploy it. It's a very basic solution in this demo. You may use your own logic to get only the delta changes. 😉

  • @austinmyer
    @austinmyer 5 หลายเดือนก่อน

    Nice one. Do you train people on Salesforce DevOps??

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 5 หลายเดือนก่อน

      Hi Austin, unfortunately no. You may comment if you have any doubts.

  • @thembampaxa2366
    @thembampaxa2366 5 หลายเดือนก่อน

    Thank you for this helpful video. Can I use the same server certificate for prod and non-prod environments?

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 5 หลายเดือนก่อน

      Thank you for watching the video. Yes you may use if you don't have any security or compliance issues in your organisation.

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 5 หลายเดือนก่อน

      Thank you for watching the video. Yes you may use if you don't have any security or compliance issues in your organisation.

  • @MichaelAlamag
    @MichaelAlamag 5 หลายเดือนก่อน

    How about adding pre and post-deployment. Like running a destructive changes?

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 5 หลายเดือนก่อน

      You may do it manually or you can create a step in the yaml file to run the sf/sfdx command for destructive providing the correct parameters and path .

  • @user-qz6cz8dx9u
    @user-qz6cz8dx9u 6 หลายเดือนก่อน

    Great content. Very helpful.

  • @WhitneySFDX
    @WhitneySFDX 6 หลายเดือนก่อน

    This was such a useful video, thank you! One question - why did you clone the repo to your local machine twice (once at 4:37 to Git_Demo and again at 14:10 to AzureDemo)? I'm a bit confused on that part.

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 5 หลายเดือนก่อน

      Hi Whitney. It seems redundant. There is no need to clone twice. It's always good to hear that the video was useful. :)

  • @johnlimasoares
    @johnlimasoares 7 หลายเดือนก่อน

    Thanks a lot man

  • @salesforce_news
    @salesforce_news 9 หลายเดือนก่อน

    Hi Sir, Can you please help me to transfer only delta data (new changes) instead of all the components again and again from Azure DevOps to Salesforce

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 8 หลายเดือนก่อน

      hey, glad you reached out. You can use a tool called sgd(Salesforce git delta). Just Google it and try it out

  • @NiviDancer
    @NiviDancer 9 หลายเดือนก่อน

    Hi. I received this error. /usr/bin/bash /home/vsts/work/_temp/668bbe5b-e3ba-4efe-8713-f3d77c45bdb4.sh Unsupported Node.js version 14.21.3, version 16.0.0 or later is required. ##[error]Bash exited with code '1'.

  • @maickim
    @maickim 10 หลายเดือนก่อน

    At about the 13:20 mark, you entered a user name. What if there are multiple administrators working on deployment?

    • @abhirupsengupta8967
      @abhirupsengupta8967 10 หลายเดือนก่อน

      Hi. I would recommend to have a generic admin user created for deployments for cicd. All deployments will happen against that user as we are using CICD. Hope this helps.

  • @kiranbakale8207
    @kiranbakale8207 11 หลายเดือนก่อน

    can you upload video, or share the reference ,how you created/configured that app in salesforce,

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 11 หลายเดือนก่อน

      In my channel, there is a series for Salesforce deployment using azure. There I have used sfdx deployment, which is recommended by Salesforce compared to ant.

  • @leninpernia
    @leninpernia 11 หลายเดือนก่อน

    Thank you so much! great job! useful information!

  • @AshokKumar-nh3wb
    @AshokKumar-nh3wb ปีที่แล้ว

    Can we do quick deploy through Azure release pipeline, without running test classes while deploying into prod

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      Quick deploy only appears once you have validated the code with test runs in Prod. If you want to trigger the quick deploy through Azure once it's validated, then it needs to be investigated if there is any sf commands to do that. But otherwise you can always do a deploy with test runs.

    • @ashokkumar1778
      @ashokkumar1778 ปีที่แล้ว

      @@cloudsparkhouse6538 thanks I got the sfdx command , how to fetch Deployment id dynamically instead of hardcode

  • @sumanauddy8659
    @sumanauddy8659 ปีที่แล้ว

    That was really an informative video. Thanks for the sessions. I have a question on what is the purpose of the below code: - bash: sfdx config:set restDeploy=false --global displayName: Use SOAP API for Deployment And also what is the meaning of: pr: autoCancel: "true" Will be eagerly waiting for the answer. Thanks.

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      These are few config settings. for the 1st one, it is instructing to use SOAP api for deployments. For 2nd one, if there is any pull request merged in that branch, Whether to cancel running PR builds when a new commit lands in the branch. Default: true. Doc: learn.microsoft.com/en-us/azure/devops/pipelines/yaml-schema/pr?view=azure-pipelines#probjectproperties

  • @OurStories_TusharAni
    @OurStories_TusharAni ปีที่แล้ว

    Really nice vdo

  • @DeekshiWithDaddy
    @DeekshiWithDaddy ปีที่แล้ว

    hi bro ,what is the my error '' 'Unable to load config info from /usr/local/ssl/openssl.cnf'

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      I guess you need to provide proper path in config file

  • @favas072
    @favas072 ปีที่แล้ว

    How to get key?

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      Key is right there in the end with the certificate. File name- server.key

  • @AnAntidisestablishmentarianist
    @AnAntidisestablishmentarianist ปีที่แล้ว

    You're azure-ming? 👍

  • @sahilansarivlogs9788
    @sahilansarivlogs9788 ปีที่แล้ว

    hii, can you make video on full setup of Create a Self-Signed SSL Certificate and Private Key in AWS Ubuntu, Create Connected App for JWT-Based Flow and Configure the Jenkins environment Variable in AWS Ubuntu. Pls Bro

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      Hi, I have a separate video on how to create a server certificate and key and how we can use it in connected apps to connect into Salesforce

    • @sahilansarivlogs9788
      @sahilansarivlogs9788 ปีที่แล้ว

      @@cloudsparkhouse6538 Continuous Integration Using Jenkins with SalesforceDX | JWT-Based Flow in AWS EC2 Ubuntu

  • @sivasfdc9256
    @sivasfdc9256 ปีที่แล้ว

    Awesome contact. I was very helpful.

  • @nobodyman5632
    @nobodyman5632 ปีที่แล้ว

    I tried the same thing as mentioned by you. While running the pipeline, my Salesforce Org doesnt seem to authorise in the Authorize Salesforce step. Command Prompt doesnt throw any error and shows successful deployment. But when i check my org, no changes are deployed. I checked the Consumer key, username, loginUrl...its all correct. Can you please help me?

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      Make sure you user has admin access and your connected app has been given access to admin in profile section. If deployment is successful, did you check the deployment status?

    • @nobodyman5632
      @nobodyman5632 ปีที่แล้ว

      @@cloudsparkhouse6538 Yes Sir. User and connected app has admin access. I looked closely into it and it seems like even the deployment is not done. It just says finishing deployment. After installing the Salesforce cli, I checked the sfdx version, there was no output. Basically , none of the sfdx commands are running.

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      @@nobodyman5632 I am pretty sure your sfdx is not installed properly. Where are you trying to install it in?

  • @pranavtatikonda2168
    @pranavtatikonda2168 ปีที่แล้ว

    Useless video i ever seen

  • @snehav8330
    @snehav8330 ปีที่แล้ว

    Its a very informative session, thank you.I have a question why is github and VScode not connected, is there any specific reason, generally when we retreive components they will be automatically taken as changed files in github right, what is the use of copy pasting entire folders.

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      You can have your git and vs code with Salesforce Authorization in the same folder if you want. I suggest beginners to have them in 2 separate folders to avoid confusion. It's your choice.

  • @careerdiscovery27
    @careerdiscovery27 ปีที่แล้ว

    how can I do this on Mac

  • @bharathsimha2822
    @bharathsimha2822 ปีที่แล้ว

    Hi Thanks for the tutorial.. any possible to create CICD pipeline Salesforce delta through Azure Devops yaml..Thanks in advance please try to do.

  • @dl.26th11
    @dl.26th11 ปีที่แล้ว

    Thanks, but how i can trust this certificate

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      I found this in Google- If you want to turn on SSL/TLS trust for that certificate, go to Settings > General > About > Certificate Trust Settings. Under "Enable full trust for root certificates," turn on trust for the certificate.

  • @shrenginamit
    @shrenginamit ปีที่แล้ว

    Is there any way to auhorize an org without certificates?

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      Through Azure, I'm not aware. Locally if you do in VS code, it usually opens a browser where you login with creds. You have to create a connected app and that connected app needs cert.

    • @akshaysharma2952
      @akshaysharma2952 4 หลายเดือนก่อน

      Instead of using jwt now you can generate sfdx url for org authentication however certificate would be still required as to generate the url you need to have consumer key and secret.

  • @nawazkhan-or4ex
    @nawazkhan-or4ex ปีที่แล้ว

    Hello bro, I am getting the error '/home/vsts/work/1/s/bin/server.key - no such file or directory

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      probably because the path which you have provided for server.key is incorrect

  • @DeepakSoni_97
    @DeepakSoni_97 ปีที่แล้ว

    Hi I getting one issue ERROR running force:source:deploy: sfdx force:source:deploy -p force-app -w 10 -u 'username' This directory does not contain a valid Salesforce DX project when it's reach a deploy stage

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      Make sure Salesforce cli is installed and it's being run in the place your Salesforce project is created

  • @DeekshiWithDaddy
    @DeekshiWithDaddy ปีที่แล้ว

    /usr/bin/bash /home/vsts/work/_temp/34da128e-44c9-483f-b1a9-f228faeac879.sh ERROR running auth:jwt:grant: We encountered a JSON web token error, which is likely not an issue with Salesforce CLI. Here’s the error: Error authenticating with JWT. Errors encountered: client identifier invalid client identifier invalid client identifier invalid ##[error]Bash exited with code '1'. Finishing: Authorize Salesforce DeployTestOrg Org

  • @lakshmiprabhakar7554
    @lakshmiprabhakar7554 ปีที่แล้ว

    First video was amazing...Can you please reshoot next two parts without errors...it will be very helpful for me..

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      Hey Lakshmi. Thanks for your suggestions. Unfortunately I don't have much time to do so. You may shoot any queries you have.

    • @lakshmiprabhakar7554
      @lakshmiprabhakar7554 ปีที่แล้ว

      Sorry if you felt offended...

  • @krishnamavuru3275
    @krishnamavuru3275 ปีที่แล้ว

    Thank you so much. Really useful content

  • @zakariaannid4439
    @zakariaannid4439 ปีที่แล้ว

    Can i do the registration of the certificat with a code by the network (LAN network)?

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      It's better to create a certificate separately and then put it in proper place.

  • @bharath7891
    @bharath7891 ปีที่แล้ว

    Nice series bro 👌

  • @DANIELMADHURE
    @DANIELMADHURE ปีที่แล้ว

    One of the best video I have seen. Could you please explain How you can revert the changes to previous version

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      In git? If you are using github desktop, go to history tab and right click on any commit and click revert changes in commit.

  • @sairam3292
    @sairam3292 ปีที่แล้ว

    I have question,In every feature branch where developer will work upon, do the developer need to edit the package.xml and specify his component that he has changed and that needs to be deployed while running the pipeline while merging this feature branch into higher branch?

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 ปีที่แล้ว

      No there is no need. We are using force source deploy command and have specified a folder called force-app. Anything inside that folder if properly put, will get deployed to the Salesforce org. So developers only need to put the new/updated files of classes/fields etc.

    • @shrenginamit
      @shrenginamit ปีที่แล้ว

      @@cloudsparkhouse6538 When I create a branch for development from main, I get all the files, and I use VSCode to clone the repo. And then commit my changes. So in my dev branch there are all other files along with my modified file. How can I then deploy only modified file without modifying package,xml?

  • @pativadanarendra1749
    @pativadanarendra1749 ปีที่แล้ว

    Thank you for the great work on knowledge sharing 😃

  • @swathikumar3074
    @swathikumar3074 ปีที่แล้ว

    Abhirup bhai .. good video on Azure DevOps .. keep it up

  • @skmustakhasan7272
    @skmustakhasan7272 2 ปีที่แล้ว

    In Azure how to allow multiple team for their deployment!!

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 2 ปีที่แล้ว

      You can create different groups in settings, and then in repository access, assign it to different groups

  • @shyamrl9254
    @shyamrl9254 2 ปีที่แล้ว

    Good Useful!! Getting server.crt: Permission denied

    • @cloudsparkhouse6538
      @cloudsparkhouse6538 2 ปีที่แล้ว

      may i know in which stage you are getting this error?

    • @shyamrl9254
      @shyamrl9254 2 ปีที่แล้ว

      @@cloudsparkhouse6538 openssl x509 -req -sha256 -days 365 -in server.csr -signkey server.key -out server.crt

    • @sribabu8358
      @sribabu8358 3 หลายเดือนก่อน

      @@shyamrl9254 My reply may be useful for anyone who check it now. We need to check the folder permissions in which openssl folder is downloaded. If openssl folder is downloaded in Program Files, then Permission denied error may occurs. download the openssl folder in C:\ drive or any drive which does not need permission and copy the path and do the step 3. It should work. Thanks.

  • @arthsharma
    @arthsharma 2 ปีที่แล้ว

    🥳👏👏👏