Jenkins issue log

    compile 'com.google.android.gms:play-services-auth:9.4.0'
can not find Google's
solution :
the extra in the Android sdk on the computer that needs to be compiled must have Google's support package:
extras/google/m2repository /com/google/android/gms/play-services-auth


---------------------------- Ca
n't find the jar package of the submodule
Solution :
jar name cannot be capitalized

--------------------------
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1752)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1725)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1721)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand( CliGitAPIImpl.java:1391)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1403)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.clean(CliGitAPIImpl.java:678)
at hudson.plugins.git.GitAPI.clean(GitAPI.java:311)
at hudson.plugins.git.extensions.impl.CleanCheckout.onCheckoutCompleted(CleanCheckout.java:28)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1137)
at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
at hudson.scm.SCM.checkout(SCM.java:495)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1278)
at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:604)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529)
at hudson.model.Run.execute(Run.java:1720)
at hudson. model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:98)
at hudson.model.Executor.run(Executor.java:401)

scm plugin checkout failed
Solution :
delete the code file, retry successful



=======================================

https://stackoverflow.com /questions/24729024/open-firewall-port-on-centos-7
centos7 Open port 8080

Use this command to find your active zone(s):

firewall-cmd --get-active-zones
It will say either public, dmz, or something else. You should only apply to the zones required.

In the case of dmz try:

firewall-cmd --zone=dmz --add-port=2888/tcp --permanent
Otherwise, substitute dmz for your zone, for example, if your zone is public:

firewall-cmd --zone=public --add-port=2888/tcp --permanent
Then remember to reload the firewall for changes to take effect.

firewall-cmd --reload


================================================

centOs防火墙放行Samba
systemctl start firewalld.service
firewall-cmd --permanent --add-service=samba



===================================================
ftp登录之后查看不了文件
https://www.0xaa55.com/thread-1149-1-1.html

Solution: Run getsebool -a | grep ftpd to judge the viewing permission.
[Bash shell] Plain text view copy code
?
1
getsebool -a | grep ftpd
usually shows something like this:
allow_ftpd_anon_write --> off
allow_ftpd_full_access --> off
allow_ftpd_use_cifs --> off
allow_ftpd_use_nfs --> off
ftpd_connect_db --> off
ftpd_use_passive_mode - -> off
ftp_home_dir --> off
Among them, ftp_home_dir and allow_ftpd_full_access must be on.
Run the following commands:
[Bash shell] View the copy code in plain text
?
1
2
setsebool -P ftp_home_dir 1
setsebool -P allow_ftpd_full_access 1
Note that these two commands usually take more than ten seconds to run (maybe my VPS is not very good Ok)
After running, we will restore SELinux to enter Enforcing mode.
[Bash shell] View the copy code in plain text
?
1
setenforce 1 #Enter Enforcing mode
If there is no accident, vsFTPd can upload and download files normally.

But if this problem has not been solved, it may be that the directory attribute of FTP access is not enough. It is recommended to use chmod -R 777 path to set the path read-write attribute to 777, and try again, which usually solves the problem.

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326440705&siteId=291194637