This file contains hidden or 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
| git config --global http.postBuffer 524288000 |
This file contains hidden or 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
| git clone --mirror <url_of_old_repo> | |
| cd <name_of_old_repo> | |
| git remote add new-origin <url_of_new_repo> | |
| git push new-origin --mirror |
This file contains hidden or 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
| #[ERROR] Failed to execute goal org.sonarsource.scanner.maven:sonar-maven-plugin:3.4.0.905:sonar (default-cli) on project data.model: Unable to execute SonarQube: Fail to get bootstrap index from server: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target -> [Help 1] | |
| keytool -import -v -trustcacerts -alias mySonarServer -file sonarServer.crt -keystore cacerts | |
| #Where cacerts is the one from the JRE installation. |
This file contains hidden or 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
| sudo firewall-cmd --permanent --add-port=8080/tcp | |
| sudo firewall-cmd --reload | |
| sudo systemctl start jenkins.service | |
| systemctl status jenkins.service | |
| sudo dnf install policycoreutils-devel setroubleshoot-server | |
| sepolicy network -t http_port_t | |
| sudo semanage port -a -t http_port_t -p tcp 8080 #(definimos rgla para el tcp/8080) | |
| sudo dnf install nginx |
NewerOlder