port

Default port (8081) changing to different port in jfrog-artifactory-oss-7.3.2 in windows 10

旧街凉风 提交于 2020-05-30 08:00:08
问题 I have installed the jfrog-artifactory-oss-7.3.2 in windows 10. Default port has been changed to the 8285 in below files. (8285 port is available) C:\jfrog-artifactory-oss-7.3.2-windows\artifactory-oss-7.3.2\app\artifactory\tomcat\conf/server.xml C:\jfrog-artifactory-oss-7.3.2-windows\artifactory-oss-7.3.2\app\misc\tomcat/server.xml.template C:\jfrog-artifactory-oss-7.3.2-windows\artifactory-oss-7.3.2\app\misc\tomcat/server.xml once execute artifactory.bat server is getting up without any

Default port (8081) changing to different port in jfrog-artifactory-oss-7.3.2 in windows 10

泄露秘密 提交于 2020-05-30 08:00:06
问题 I have installed the jfrog-artifactory-oss-7.3.2 in windows 10. Default port has been changed to the 8285 in below files. (8285 port is available) C:\jfrog-artifactory-oss-7.3.2-windows\artifactory-oss-7.3.2\app\artifactory\tomcat\conf/server.xml C:\jfrog-artifactory-oss-7.3.2-windows\artifactory-oss-7.3.2\app\misc\tomcat/server.xml.template C:\jfrog-artifactory-oss-7.3.2-windows\artifactory-oss-7.3.2\app\misc\tomcat/server.xml once execute artifactory.bat server is getting up without any

How to get port in FTP protocol from passive mode?

浪尽此生 提交于 2020-05-24 08:34:39
问题 When I entered passive mode in FTP, I have got: 227 Entering Passive Mode (213,180,204,183,230,205). First 4 numbers are the IP addresses, but what are the two last? Are they two ports? 回答1: the last two are: p1 and p2 from RFC of ftp: http://www.faqs.org/rfcs/rfc959.html to get port, use: p1 * 256 + p2, then connect to this port 回答2: the port number is a 16-bit value between 0 and 65535 due to some constraints the authors have decided that all numbers between commas should be 8-bit (between

How to get port in FTP protocol from passive mode?

五迷三道 提交于 2020-05-24 08:31:07
问题 When I entered passive mode in FTP, I have got: 227 Entering Passive Mode (213,180,204,183,230,205). First 4 numbers are the IP addresses, but what are the two last? Are they two ports? 回答1: the last two are: p1 and p2 from RFC of ftp: http://www.faqs.org/rfcs/rfc959.html to get port, use: p1 * 256 + p2, then connect to this port 回答2: the port number is a 16-bit value between 0 and 65535 due to some constraints the authors have decided that all numbers between commas should be 8-bit (between

Running Node app via PM2 on port 80

北战南征 提交于 2020-04-12 11:55:36
问题 I have an express that I want to run on port 80. --> app.listen(80); I'm using PM2 to manage the app (restarting, stopping, monitoring, etc.) . I have a deployment shell script whose last command is PM2 restart index . From the console output, I see no errors and PM2 reports that it successfully completed the command. Yet when I got to my.ec2.ip.address:80 the site is not up. Furthermore, if I run node index.js in my server project directory, I get a Error: listen EACCES 0.0.0.0:80 . This

Port Publishing When Running with Docker Compose

我是研究僧i 提交于 2020-03-17 07:47:24
问题 I can't seem to work out a way to get port publishing to work with docker-compose run in the same way as I can with docker run . Using Docker Compose (and therefore the port mapping in docker-compose.yml ) gives a "Failed to connect" error from curl : $ docker-compose run flask * Running on http://0.0.0.0:2048/ (Press CTRL+C to quit) $ curl http://localhost:2048/ curl: (7) Failed connect to localhost:2048; Connection refused However, things are fine when manually passing the ports to docker

Port Publishing When Running with Docker Compose

限于喜欢 提交于 2020-03-17 07:47:08
问题 I can't seem to work out a way to get port publishing to work with docker-compose run in the same way as I can with docker run . Using Docker Compose (and therefore the port mapping in docker-compose.yml ) gives a "Failed to connect" error from curl : $ docker-compose run flask * Running on http://0.0.0.0:2048/ (Press CTRL+C to quit) $ curl http://localhost:2048/ curl: (7) Failed connect to localhost:2048; Connection refused However, things are fine when manually passing the ports to docker

How can my Android app open a port for listening?

醉酒当歌 提交于 2020-03-04 23:16:12
问题 I want my Android app to behave as a client and listen on a particular port. None of the code I've tried works. I tried this tutorial to create a small chat app. The server side works fine, but the app crashes on my device. I have both my phone and server comp on VPN. logcat text returned: 11-20 12:39:12.789: W/dalvikvm(12045): threadid=1: thread exiting with uncaught exception (group=0x4017c560) 11-20 12:39:12.799: E/AndroidRuntime(12045): FATAL EXCEPTION: main 11-20 12:39:12.799: E

XAMPP MySQL port 3306 not changing

孤街醉人 提交于 2020-03-04 10:52:32
问题 I have seen all the posts and did all the changes, but when I run XAMPP MySQL, it opens 3306 and closes, it is not going to 3307 port. I have changed xampp\mysql\bin\my.ini all port number 3306 to 3307 and even xampp\php\php.ini changed 3306 to 3307, even all the .ini files in MySQL that had 3306 changed to 3307. Went to processes and services removed XAMPP as well. Restarted my PC as well. Anyone has any idea where to make changes that XAMPP will look at 3307 port for MySQL? 回答1: You have to

XAMPP MySQL port 3306 not changing

淺唱寂寞╮ 提交于 2020-03-04 10:52:26
问题 I have seen all the posts and did all the changes, but when I run XAMPP MySQL, it opens 3306 and closes, it is not going to 3307 port. I have changed xampp\mysql\bin\my.ini all port number 3306 to 3307 and even xampp\php\php.ini changed 3306 to 3307, even all the .ini files in MySQL that had 3306 changed to 3307. Went to processes and services removed XAMPP as well. Restarted my PC as well. Anyone has any idea where to make changes that XAMPP will look at 3307 port for MySQL? 回答1: You have to