Jira自动化实践:基于Jenkins实现需求与代码基线关联

复制scp atlassian-jira-software-8.20.1-x64.bin  root@192.168.1.200:/opt/  ## 添加权限  [root@zeyang-nuc-service opt]# chmod +x atlassian-jira-software-8.20.1-x64.bin  ## 运行安装程序  [root@zeyang-nuc-service opt]# ./atlassian-jira-software-8.20.1-x64.bin  Unpacking JRE ...  Starting Installer ...  This will install Jira Software 8.20.1 on your computer.  OK [o, Enter], Cancel [c]      ## 回车  Click Nexttocontinueor Cancel to exit Setup.  Choose the appropriate installation or upgrade option Please choose one of the following:  Express Install (use default settings) [1], Custom Install (recommended for advanced users) [2, Enter], Upgrade an existing Jira installation [3]  ## 此处选择自定义安装,  输入回车  Select the folder where you would like Jira Software to be installed.  Where should Jira Software be installed?  [/opt/atlassian/jira]  ## 选择安装目录  Default location for Jira Software data  [/var/atlassian/application-data/jira]  ## 选择数据目录  Configure which ports Jira Software will use.  Jira requires two TCP ports that are not being used byany other  applications on this machine. The HTTP port iswhere you will access Jira  through your browser. The Control port is used to startup and shutdown Jira.  Use default ports (HTTP: 8080, Control: 8005) - Recommended [1, Enter], Set custom value for HTTP and Control ports [2]  2   ## 输入2  自定义服务端口  HTTP Port Number  [8071]  8801  Control Port Number  [8077]  8802  ## 安装服务  Jira can be run in the background.  You may choose to run Jira as a service, which means it will start  automatically whenever the computer restarts.  Install Jira as Service?  Yes [y, Enter], No [n]  Details onwhere Jira Software will be installed and the settings that will be used.  Installation Directory: /opt/atlassian/jira  Home Directory: /var/atlassian/application-data/jira  HTTP Port: 8801  RMI Port: 8802  Install as service: Yes  Install [i, Enter], Exit [e]  Extracting files ...  ## 启动服务  Please wait a few moments while Jira Software is configured.  Installation of Jira Software 8.20.1 is complete  Start Jira Software 8.20.1 now?  Yes [y, Enter], No [n]  Please wait a few moments while Jira Software starts up.  Launching Jira Software ...  Installation of Jira Software 8.20.1 is complete  Your installation of Jira Software 8.20.1 is now ready and can be accessed  via your browser.  Jira Software 8.20.1 can be accessed at http://localhost:8801  Finishing installation ...  1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.16.17.18.19.20.21.22.23.24.25.26.27.28.29.30.31.32.33.34.35.36.37.38.39.40.41.42.43.44.45.46.47.48.49.50.51.52.53.54.55.56.57.58.59.60.61.62.63.64.65.66.67.68.69.70.71.72.73.74.75.76.77.78.79.80.81.82.83.84.85.86.

THE END