Last active
June 9, 2017 14:44
-
-
Save chaitu87/02d1687ef39bde1a03e5b09ac51af46e to your computer and use it in GitHub Desktop.
Setting up jira & bitbucket servers on Digital Ocean
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-7.2.6-x64.bin | |
# Install mysql 5.6 | |
sudo apt-get install software-properties-common | |
sudo add-apt-repository -y ppa:ondrej/mysql-5.6 | |
sudo apt-get update | |
sudo apt-get install mysql-server | |
create database jiradb character set utf8 collate utf8_bin; | |
grant select,insert,update,delete,create,drop,alter,index on jiradb.* to root@localhost identified by '**thepass**'; | |
flush privileges; | |
# Apache Server setup | |
sudo apt-get install apache2 | |
wget https://www.atlassian.com/software/stash/downloads/binary/atlassian-bitbucket-4.11.2-x64.bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment