Installing SCM Manager (Mercurial admin web frontend) in windows - version-control

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/

Related

Where does jetbackup install on CentOS 7?

My server can not connect to jetbackup repository and I need to install S3 plugin. It's available on github and repo to download. So how can I install plugin without using repository? I mean where should I extract plugin zipfile on server?
http://repo.jetlicense.com/plugins/
OS : CentOS 7 , 64bit
Where is the jetbackup installation folder on server anyway?
Also if I can use a proxy even on my other server as a temporary proxy may solve the problem. a link of tutorial will do.
Thanks a lot

TFS plugin can't insert credentials

I have ubuntu 20.04.
Installed eclipse 4.18.
Installed TFSEclipsePlugin-UpdateSiteArchive-14.135.0.zip from (https://github.com/Microsoft/team-explorer-everywhere/releases)
When I try to define the TFS server, I click in "Enter Credentials..." but nothing happens.
tfs setup
Also enabled the option to accept untrusted certificates.
configs
What is missing?
With latest 14.137.0 you can use it again in Linux with latest eclipse

Add Server in Eclipse via Command line? (Windows)

I would like to set up the laptops of our java developers in a more automated way.
I installed eclipse and all necessary plugins and checked out the repository via Puppet+Chocolatey. An IBM Websphere Liberty Profile for testing the application is running in a virtual machine on the laptops as well.
Is there any way to add a new server in Eclipse via the command line? Or connect to an existing one? Using for example eclipsec.exe?
I already fought my way through the documentation but without success. (http://help.eclipse.org/kepler/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Freference%2Fmisc%2Fruntime-options.html)
Have anyone of you experience with this kind of problem?
Cheers,
Stephan

Eclipse IDE on ubuntu

I installed BigBlueButton on ubuntu server 14.04, and it's working.
Now, i want to create a web app, using spring, where I have to integrate BigBlueButton.
Usually, I use eclipse on windows, but, now, i don't have an idea what should I do.
Do I have to use eclipse on ubuntu ?
Thank you.
You need not do your development on the same server as where you host the runtime. If you are comfortable doing development on a Windows machine, do that, and create a .war file to deploy to the Ubuntu server.
You don't have to, but it sounds like you might like to.
sudo apt-get install eclipse

How to install a plugin in redmine 1.4.4 via SSH on redmine VM?

I have got access to redmine VM via SSH and have plugin files on my local machine. Now I need to install it in redmine.
Can anyone explain the steps to do it? I am using a windows 7 machine as SSH client.
You can use SFTP client such as WinSCP (Windows client that I uses) or find any other.
SFTP is SSH File Transfer Protocol, i.e. you will have access to VM's file system via SSH connection, and Redmine plugins installation will be just files copying :)
Also, SFTP clients can launch simple commands as touch (touch tmp/restart.txt command needed to restart Ruby on Rails applications)
Put the plugin directory in the vendor/plugins sub directory of your Redmine installation. Check the plugin installation instructions for any additional steps that might be necessary.
Redmine 1.4.4 is several years old, you should first make sure with a local test that the plugin actually works with that version. And you should really upgrade to a recent version of Redmine (current stable is 3.2) as there have been quite a few security issues in Rails and Redmine since 1.4.4 was released.