PS: Improve product production efficiency

What is the Artifactory?

Open source Maven repository manager

Install Artifactory

Artifactory’s official website is www.jfrog.com/open-source

# Artifactory relies on the JDk8 environment to run, because there is Tomcat # check the Java environment via Java -version PS: # yum install artifactory # Jfrog-artifactory-oss-6.12.2. RPM $RPM -ivh jfrog-artifactory-oss-6.12.2. RPM $systemctl start Artifactory. Service / $systemctl stop/start artifactory. The default installation directory service / / stop # # / etc/opt/jfrog/artifactory # # the default password is for # username: admin password: the password # # document address/opt/jfrog/doc # tomcat directory PS: you can change the port number of 8081 # / opt/jfrog/artifactory/tomcatCopy the code

The nginx.conf configuration file comes with it

server { listen 80; server_name xxx.com; Location / {proxy_pass http://127.0.0.1:8081; }}Copy the code