- JIRA Software FAQ
- JIRA Core
- JIRA Service Desk
- JIRA plugin: Capture
- JIRA plugin: Training
- JIRA plugin: Portfolio
- Confluence Windows特别注意
- Confluence plugin: Questions
- Confluence plugin: Team Calendars
- Bamboo FAQ
- Bitbucket FAQ
- FishEye FAQ
- Crowd FAQ
- Crucible FAQ
- Third party plugins
- Supports almost all Atlassian products, and supports plug-ins (including third-party plug-ins in the plug-in market).
- DataCenter mode is supported.
- Compared with traditional cracks, you can easily upgrade your service without having to crack again.
- Provide java-based command line keygen, which is more convenient to use in the terminal environment.
- Open source projects, you know what you did when you cracked.
atlassian-agent-jar-with-dependencies.jar
- Follow similarly to: Haxqer's Jira example
- Edit values.yaml (be sure to place the .jar file in the location, may need to deploy first, then edit chart to include the agent after putting the file there): Include jvmargs:
...
additionalBundledPlugins: []
additionalEnvironmentVariables: []
additionalJvmArgs:
- '-javaagent:/var/agent/atlassian-agent-jar-with-dependencies.jar'
- Alternatively, build a Dockerfile image with the dependency included E.G (be sure to update where the .jar file is coming from, the included one in this example does not work with Bitbucket 8.4/8.9 LTS and above):
FROM openjdk:11-stretch
LABEL maintainer="haxqer <haxqer666@gmail.com>" version="8.22.6"
ARG JIRA_VERSION=8.22.6
# Production: jira-software jira-core
ARG JIRA_PRODUCT=jira-software
ARG AGENT_VERSION=1.3.3
ARG MYSQL_DRIVER_VERSION=5.1.48
ENV JIRA_USER=jira \
JIRA_GROUP=jira \
JIRA_HOME=/var/jira \
JIRA_INSTALL=/opt/jira \
JVM_MINIMUM_MEMORY=1g \
JVM_MAXIMUM_MEMORY=3g \
JVM_CODE_CACHE_ARGS='-XX:InitialCodeCacheSize=1g -XX:ReservedCodeCacheSize=2g' \
AGENT_PATH=/var/agent \
AGENT_FILENAME=atlassian-agent.jar
ENV JAVA_OPTS="-javaagent:${AGENT_PATH}/${AGENT_FILENAME} ${JAVA_OPTS}"
RUN mkdir -p ${JIRA_INSTALL} ${JIRA_HOME} ${AGENT_PATH} \
&& curl -o ${AGENT_PATH}/${AGENT_FILENAME} https://github.com/haxqer/jira/releases/download/v${AGENT_VERSION}/atlassian-agent.jar -L \
&& curl -o /tmp/atlassian.tar.gz https://product-downloads.atlassian.com/software/jira/downloads/atlassian-${JIRA_PRODUCT}-${JIRA_VERSION}.tar.gz -L \
&& tar xzf /tmp/atlassian.tar.gz -C ${JIRA_INSTALL}/ --strip-components 1 \
&& rm -f /tmp/atlassian.tar.gz \
&& curl -o ${JIRA_INSTALL}/lib/mysql-connector-java-${MYSQL_DRIVER_VERSION}.jar https://repo1.maven.org/maven2/mysql/mysql-connector-java/${MYSQL_DRIVER_VERSION}/mysql-connector-java-${MYSQL_DRIVER_VERSION}.jar -L \
&& echo "jira.home = ${JIRA_HOME}" > ${JIRA_INSTALL}/atlassian-jira/WEB-INF/classes/jira-application.properties
RUN export CONTAINER_USER=$JIRA_USER \
&& export CONTAINER_GROUP=$JIRA_GROUP \
&& groupadd -r $JIRA_GROUP && useradd -r -g $JIRA_GROUP $JIRA_USER \
&& chown -R $JIRA_USER:$JIRA_GROUP ${JIRA_INSTALL} ${JIRA_HOME}/ ${AGENT_PATH}
VOLUME $JIRA_HOME
USER $JIRA_USER
WORKDIR $JIRA_INSTALL
EXPOSE 8080