DEV Community

Patrick Schanen
Patrick Schanen

Posted on

3 1

Install Jetbrains Upsource

sudo mkdir –p /usr/local/java
cd /home/user_name/downloads
sudo cp –r jre-7u25-linux-x64.tar.gz /usr/local/java
cd /usr/local/java
sudo chmod a+x jre.tar.gz
sudo tar xvzf jre.tar.gz


Add the following lines to the /etc/profile file:
RE_HOME=/usr/local/java/jre1.8.0_25 
PATH=$PATH:$JRE_HOME/bin 
export JRE_HOME 
export PATH

sudo update-alternatives –install “/usr/bin/java” “java” “/usr/local/java/jre1.8.0_25” 1
sudo update-alternatives –set java /usr/local/java/jre1.8.0_25/bin/java
sh java -version

Add the following lines to the /etc/security/limits.conf file:

* - memlock unlimited
* - nofile 100000
* - nproc 32768
* - as unlimited

Sudo mkdir –p /opt/Upsource
cd /home/user_name/downloads
cp Upsource.zip /opt

sudo chmod a+x Upsource.zip
sudo unzip Upsource.zip
sudo chmod -R a+rwX /opt/Upsource


cd /opt/Upsource/bin
upsource.sh start
Enter fullscreen mode Exit fullscreen mode

Source

AWS Security LIVE!

Tune in for AWS Security LIVE!

Join AWS Security LIVE! for expert insights and actionable tips to protect your organization and keep security teams prepared.

Learn More

Top comments (0)

Image of Docusign

🛠️ Bring your solution into Docusign. Reach over 1.6M customers.

Docusign is now extensible. Overcome challenges with disconnected products and inaccessible data by bringing your solutions into Docusign and publishing to 1.6M customers in the App Center.

Learn more

👋 Kindness is contagious

Engage with a sea of insights in this enlightening article, highly esteemed within the encouraging DEV Community. Programmers of every skill level are invited to participate and enrich our shared knowledge.

A simple "thank you" can uplift someone's spirits. Express your appreciation in the comments section!

On DEV, sharing knowledge smooths our journey and strengthens our community bonds. Found this useful? A brief thank you to the author can mean a lot.

Okay