Created
February 9, 2018 20:08
-
-
Save mdasilva/0c45a36310ad7a10a55c2c9b35944b2c to your computer and use it in GitHub Desktop.
This file contains 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
[desilm1@fcodopapp1 /opt/jfrog/artifactory]$ tree | |
. | |
├── bin | |
│ ├── artifactory.bat | |
│ ├── artifactoryctl | |
│ ├── artifactory.default | |
│ ├── artifactoryManage.sh | |
│ ├── artifactory-service.exe | |
│ ├── artifactory.sh | |
│ ├── configure.mysql.sh | |
│ ├── installService.bat | |
│ ├── installService.sh | |
│ ├── uninstallService.bat | |
│ └── uninstallService.sh | |
├── misc | |
│ ├── artifactory.config.template.yml | |
│ ├── db | |
│ │ ├── createdb | |
│ │ │ ├── createdb_mssqlBlob.sql | |
│ │ │ ├── createdb_mssqlRecreateBlob.sql | |
│ │ │ ├── createdb_mssql.sql | |
│ │ │ └── createdb_mysql.sql | |
│ │ ├── mssql.properties | |
│ │ ├── mysql.properties | |
│ │ ├── oracle.properties | |
│ │ └── postgresql.properties | |
│ ├── ha | |
│ │ └── ha-node.properties.template | |
│ ├── service | |
│ │ ├── artifactory | |
│ │ ├── artifactory.service | |
│ │ └── setenv.sh | |
│ └── tomcat | |
│ ├── access.xml | |
│ ├── artifactory.httpd.conf | |
│ ├── artifactory.xml | |
│ ├── context.xml | |
│ ├── logging.properties | |
│ ├── NGNIX.txt | |
│ ├── server.xml | |
│ ├── webapps | |
│ │ └── ROOT | |
│ │ ├── index.html | |
│ │ └── WEB-INF | |
│ │ └── rewrite.config | |
│ └── web.xml | |
├── tomcat | |
│ ├── bin | |
│ │ ├── bootstrap.jar | |
│ │ ├── catalina.bat | |
│ │ ├── catalina.sh | |
│ │ ├── catalina-tasks.xml | |
│ │ ├── commons-daemon.jar | |
│ │ ├── commons-daemon-native.tar.gz | |
│ │ ├── configtest.bat | |
│ │ ├── configtest.sh | |
│ │ ├── daemon.sh | |
│ │ ├── digest.bat | |
│ │ ├── digest.sh | |
│ │ ├── setclasspath.bat | |
│ │ ├── setclasspath.sh | |
│ │ ├── setenv.sh | |
│ │ ├── shutdown.bat | |
│ │ ├── shutdown.sh | |
│ │ ├── startup.bat | |
│ │ ├── startup.sh | |
│ │ ├── tomcat-juli.jar | |
│ │ ├── tomcat-native.tar.gz | |
│ │ ├── tool-wrapper.bat | |
│ │ ├── tool-wrapper.sh | |
│ │ ├── version.bat | |
│ │ └── version.sh | |
│ ├── conf | |
│ │ ├── Catalina | |
│ │ │ └── localhost | |
│ │ │ ├── access.xml | |
│ │ │ └── artifactory.xml | |
│ │ ├── catalina.policy | |
│ │ ├── catalina.properties | |
│ │ ├── context.xml | |
│ │ ├── jaspic-providers.xml | |
│ │ ├── jaspic-providers.xsd | |
│ │ ├── logging.properties | |
│ │ ├── server.xml | |
│ │ └── web.xml | |
│ ├── lib | |
│ │ ├── annotations-api.jar | |
│ │ ├── catalina.jar | |
│ │ ├── derby-10.11.1.1.jar | |
│ │ ├── el-api.jar | |
│ │ ├── jaspic-api.jar | |
│ │ ├── servlet-api.jar | |
│ │ ├── tomcat-api.jar | |
│ │ ├── tomcat-coyote.jar | |
│ │ ├── tomcat-jni.jar | |
│ │ ├── tomcat-util.jar | |
│ │ └── tomcat-util-scan.jar | |
│ ├── LICENSE | |
│ ├── logs -> /var/opt/jfrog/artifactory/logs/catalina | |
│ ├── NOTICE | |
│ ├── RELEASE-NOTES | |
│ ├── RUNNING.txt | |
│ ├── temp -> /var/opt/jfrog/artifactory/temp | |
│ ├── webapps | |
│ │ ├── access [error opening dir] | |
│ │ ├── artifactory [error opening dir] | |
│ │ └── ROOT | |
│ │ ├── index.html | |
│ │ └── WEB-INF | |
│ │ └── rewrite.config | |
│ └── work -> /var/opt/jfrog/artifactory/work | |
└── webapps | |
├── access.war | |
└── artifactory.war | |
25 directories, 87 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment