# yum -y install git
# yum -y install mysql-community-server
# systemctl start mysqld
# systemctl enable mysqld.service
* MySQL start
======================================================
Open & Edit /etc/my.cnf
Add skip-grant-tables under [mysqld]
Restart Mysql
You should be able to login to mysql now using the below command mysql -u root -p
Run mysql> flush privileges;
Set new password by ALTER USER 'root'@'localhost' IDENTIFIED BY 'NewPassword';
Go back to /etc/my.cnf and remove/comment skip-grant-tables
Restart Mysql
Now you will be able to login with the new password mysql -u root -p
======================================================
# wget http://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-6.2.1-x64.bin
# chmod +x atlassian-jira-6.2.1-x64.bin
# ./atlassian-jira-6.2.1-x64.bin
# useradd jira
# passwd jira
# chown -R jira:jira /opt/atlassian
# chown -R jira:jira /var/atlassian
# cd /opt/atlassian/jira/bin
# ./stop-jira.sh
# ./startup.sh
http://localhost:8080