• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Issue Allow port for jenkins

hassan.akhtar

New Pleskian
hi need suggestion, I deployed Jenkins on server when i take ssh and curl from cli it works perfectly fine. i also allow port 8080 from plesk firewall and disable ubuntu firewall from server. but it wont resolve my query serverip:8080
 
hello @hassan.akhtar ,

I'd suggest you to check 'Tools & Settings > Customize Plesk URL' and check that Plesk not configured to handle unknown domain names as control panel entry point.
probably request by domain name will work better ?

what does it mean:
but it wont resolve my query serverip:8080
please provide error message for further investigation
 
hello @hassan.akhtar ,

I'd suggest you to check 'Tools & Settings > Customize Plesk URL' and check that Plesk not configured to handle unknown domain names as control panel entry point.
probably request by domain name will work better ?

what does it mean:

please provide error message for further investigation
there is no error , I deploy Jenkins on server when I curl it from cli it works fine but from browser it wont be accessible from port 8080. i also create rule in firewall to allow incoming traffic on port 8080 but browser dont resolve query
 
@hassan.akhtar , is your jenkins ports forwarded to 0.0.0.0 interface (and available globally) or it forwarded to the 127.0.0.1 and available localy only?

did it respond to curl from ANOTHER server or you checked it from your plesk server ?
 
@hassan.akhtar , is your jenkins ports forwarded to 0.0.0.0 interface (and available globally) or it forwarded to the 127.0.0.1 and available localy only?

did it respond to curl from ANOTHER server or you checked it from your plesk server ?
when i run curl localhost:8080 it works but when i run https or http://serverip:8080 jenkins wont be accessible. i also allow port 8080 in firewall rules for all incoming traffic . and also disable firewall but it wont work.'
 
@hassan.akhtar , looks like your jenkins listen 8080 on local interface only (127.0.0.1:8080 )
you can verify it by executing
Code:
ss -nptl |grep 8880


You need to reconfigure jenkins to bind interface 0.0.0.0 (or *:8880 or :::8880 , depends from your system configuration)
 
Back
Top