Posts

Showing posts with the label apache

Apache, Tomcat & SSL: ProxyPass and ProxyPassReverse

Image
Apache, Tomcat & SSL: ProxyPass and ProxyPassReverse I'am having troubles configuring Apache, Tomcat and SSL, this is the scenario: I have an Apache Web Server, running and working normally (but , I can access to this one just typing: https://example.com Also, in this host, I have a Tomcat running and working fine in port 8080 (HTTP); I've created a mini web-app which files are inside "test" directory, I can access typing: http://example.com:8080/test (I know that Apache is running in 80 port and Tomcat in 8080) What I want to do is that througt Apache an user can access to 'test' (running on Tomcat) using HTTPS, I mean: https://example.com/test But when I access this link appers this: When I access using HTTP http://example/test works, but I need that be HTTPS. http://example/test I also create a file config in /etc/httpd/conf.d/vhost.conf , this is the content: /etc/httpd/conf.d/vhost.conf <VirtualHost *:80> ServerName www.example.com Docu...

Why getting error failed to parse pom?

Why getting error failed to parse pom? while building project via jenkins getting below error. Building in workspace C:Program Files (x86)JenkinsworkspaceJenkinProject Unpacking https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip to C:Program Files (x86)Jenkinstoolshudson.tasks.Maven_MavenInstallationTestMaven on Jenkins ERROR: Failed to parse POMs java.io.IOException: Failed to rename C:Program Files (x86)Jenkinstoolshudson.tasks.Maven_MavenInstallationTestMavenapache-maven-3.5.3 to C:Program Files (x86)Jenkinstoolshudson.tasks.Maven_MavenInstallationTestMavenapache-maven-3.5.3.__rename at hudson.FilePath$29.invoke(FilePath.java:2107) at hudson.FilePath$29.invoke(FilePath.java:2100) can you check what files are there at C:Program Files (x86)Jenkinstoolshudson.tasks.Maven_MavenInstallationTestMavenapache-maven-3.5.3 location – Pramod Jun 30 at 14:30 ...