How to install the jenkins sonar plugin manually? - plugins

How can I download and install the jenkins sonar (version 2.1) plugin to jenkins (version 1.532)?
We cannot use the jenkins Update Center, as it failes to connect to the update site:
hudson.util.IOException2: Failed to download from http://jenkins-updates.cloudbees.com/download/plugins/sonar/2.1/sonar.hpi
Please note that opening the firewall to the update site is not an option we wish to consider - for security reasons, we want to do this process manually.
How can this plugin be installed manually?
tx

Well, it's pretty straightforward:
Manually download the HPI file with the link you provided
Then install the HPI manually in your Jenkins

Related

How to get VS build agent capabilities without installing the full Visual Studio application?

I've installed the latest VS Build Tools (2022), but my on-prem build agent isn't picking up the VisualStudio-related capabilities. I've been under the impression that we no longer need to install the full application in order to get these capabilities.
An example from this blog post:
I've added all workloads to my offline layout, and I've included them in my installation.
I know this is possible, because earlier I accidentally included Python and VS 2019 Build Tools in my Node.js installation configuration. The VS-related capabilities were found by the agent then.
But I'm trying to get 2022, so I uninstalled 2019.
How can I get the 2022 VS-related capabilities to be installed and detected by my build agent, without installing the full Visual Studio product?
You need to upgrade the agent to a recent enough version. You can download the agent from the azure-pipelines-agent repository's releases page. Or manually specify the capabilities.
You may need to set a special environment flag on the agent to prevent it from automatically being downgraded to whatever version shipped with your version if Azure DevOps Server or Team Foundation Server.
And then you'll also need to install the latest version of the vsbuild/msbuild and vstest tasks
Required agent version
You will need to install the most recent agent from the azure-pipelines-agent repository for it to auto-detect Visual Studio 2022, or alternatively add the capabilities to the agent manually.
You may need to force Azure DevOps Server to not downgrade back to its preferred agent version. You can do so by setting the following environment variable at the system level on your server before launching the agent:
AZP_AGENT_DOWNGRADE_DISABLED=true
These tricks will work for most tasks in the azure-pipelines-tasks repository, as long as it doesn't depend on a UI extension or service connection type that isn't available in your version of Azure DevOps Server.
https://jessehouwing.net/adding-visual-studio-2022-to-azure-devops-server-2020/

jProfiler - need to deploy linux agent via UCD

I need to deploy the agent using puppet or UCD.
We are using jProfiler Version 11.0.1.
I've tried to get the download path for that version, but all I can get via Documentation is the version for jProfiler 12.0.
Is there any way to get the download link for older versions of jDownloader Agent?
JProfiler 11.1 can be downloaded at:
https://www.ej-technologies.com/download/jprofiler/version_111
Agent-only downloads are only available starting with JProfiler 12. In previous versions you can use the remote integration wizard (Session->Integration Wizards->New Remote Integration) to create archives that only contain the agent files.

Unable to use angular cli in eclipse

It says I have used the pro version so I need the licence or free trial.How can I get the free version of angular cli on eclipse.I have tried to reinstall it but did not work.
As far as I know, Eclipse does not support Angular CLI. Try taking a look at IntelliJ's trial version. (https://www.jetbrains.com/idea/)
You don't need an IDE to use Angular CLI. All you need is a Terminal.
Run the following steps:
You need Nodejs. If you don't have it yet, just go this official
nodejs page & download the recommended version then install it.
$ npm install -g #angular/cli
Angular Eclipse is open source and integrates angular-cli with Terminal, Wizards and Launches.

How to upgrade the Jenkins in mac machine

I have installed the jenkins in my mac machine through Mac Installer, my current jenkins version is 1.628 when I opens Manage Jenkins page it shown as below screen shot. I would like to update the jenkins to newer version 1.630, so can any one please suggest me how to upgrade?, If I upgrade is there any issue to my existing jenkins configuration and jobs? .
Step1
Click the download link to download the latest jenkins.war of version 1.630.
Step2
Replace the old jenkins.war (version 1.628) in your Mac to this new jenkins.war (version 1.630) and restart jenkins.

Installing SCM Manager (Mercurial admin web frontend) in windows

I successfully installed mercurial on Windows7 (IIS 7.5) and I got the default UI (default Mercurial admin web frontend). But there is no way to add repositories, users or setting permission through this UI. After some research I came to know about SCM Manager. But I am unable to install it. Can anyone please tell how to install SCM Manager on windows? If you can give the steps it will be very helpful.
Is there a reason why you use the IIS? You can alternatively use the stand alone version of the SCM-Manager that comes with a embedded Jetty server. Just unpack and run scm-server.bat.
https://bitbucket.org/sdorra/scm-manager/wiki/download
Finally I installed SCM Manager successfully on Windows 7. I followed this tutorial http://www.helicontech.com/articles/hosting-git-svn-and-hg-mercurial-repositories-on-windows-with-iis/