port Questions

3

I know a little about Linux. Today I created a VPN server on my Ubuntu installation according to Set up a simple IPsec/L2TP VPN server for Ubuntu, Arch Linux and Debian. But when I finish the insta...
Pyrography asked 15/5, 2015 at 5:9

4

I have two instances of MySql (5.1.73-1-log) running on my server, one on port 3306 (default), one on port 3307. Now, I want to change PhpMyAdmin (3.3.7deb7) to take the second instance, on 3307, i...
Portraitist asked 28/1, 2015 at 13:40

30

Solved

I am trying to kill a process in the command line for a specific port in ubuntu. If I run this command I get the port: sudo lsof -t -i:9001 so...now I want to run: sudo kill 'sudo lsof -...
Jacquard asked 19/2, 2012 at 2:44

4

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...
Essary asked 10/3, 2015 at 11:41

1

I usually run my apps on my physical device. But 2 days ago I updated it to Android 11(Vivo Z1 Pro)and after the update, I couldn't do it. It is just gets stuck on I/flutter (15748): Observatory l...
Frigid asked 24/4, 2021 at 23:21

11

Solved

So I'm making a port scanner in python... import socket ip = "External IP" s = socket.socket(2, 1) #socket.AF_INET, socket.SOCK_STREAM def porttry(ip, port): try: s.connect((ip, port)) return ...
Marimaria asked 3/10, 2014 at 7:16

7

Solved

This might be a very basic question but it confuses me. Can two different connected sockets share a port? I'm writing an application server that should be able to handle more than 100k concurrent c...
Aleda asked 20/6, 2012 at 22:39

5

Solved

I have this code currently: var express = require('express'); var app = express(); var bodyParser = require('body-parser'); var sessionManager = require("./SessionRaterBL"); sessionManager.Crea...
Godin asked 10/11, 2017 at 23:9

3

Solved

I am new to docker, and I am a bit confused about what the following command options do specifically for the command I came across. --name : appname is the name of the image? -t : Run in termin...
Churn asked 14/6, 2017 at 18:2

6

By default I am being connected to port 3309.I need to connect to port 3307.How do I do that?
Deciduous asked 12/2, 2019 at 6:2

4

Recently I tried to use Strapi. I want run two Strapi apps in single server. So I tried to change default port number - 1337 to other number (For example 1331) In ./config/server.js file. But when ...
Kirven asked 21/9, 2020 at 12:17

4

Solved

I am trying to connect to a sensor using network, the sensor's ip is 192.168.2.44 on port 3000; My Code: byte[] byteReadStream = null; // holds the data in byte buffer IPEndPoint ipe = new IPEndPoi...
Parsimony asked 17/6, 2015 at 11:16

2

Solved

I just have started learning React.js and made two projects using Create React App. Now if I want to start both projects at the same time, I can't because both start on port 3000 by default. Is the...
Judiejudith asked 13/2, 2022 at 11:37

11

Solved

Is it possible to have a Docker container access ports opened by the host? Concretely I have MongoDB and RabbitMQ running on the host and I'd like to run a process in a Docker container to listen t...
Infirmary asked 21/7, 2013 at 9:32

37

This was a question raised by one of the Software Engineers in my organisation. I'm interested in the broadest definition.
Unpopular asked 30/9, 2008 at 10:4

19

Solved

I have PostgreSQL 9.3 installed on a server running Ubuntu Server 14.04. If I ssh into the server via terminal, I'm able to connect with psql. But when I try to configure pgAdmin III to do the rem...
Ahumada asked 19/7, 2016 at 18:41

4

I cannot get mariadb to use another port other than 3306 when running it in a docker container using a docker-compose file. I have already read the mariadb/docker documentation, searched online an...
Footfall asked 20/5, 2019 at 0:1

3

Solved

When I attempt to start my rails server from my local machine, I get the following error message. /Users/zachdobbs/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/puma-3.9.1/lib/puma/binder.rb:269...
Saran asked 12/9, 2017 at 13:28

8

Could not run adb reverse: Command failed: /home/sofiane/Android/Sdk//platform-tools/adb -s 192.168.1.2:5555 reverse tcp:8081 tcp:8081 When i use port : 8081 adb tcpip 8081 adb connect 192.168...
Tymon asked 19/5, 2017 at 21:30

11

For some reason, 127.0.0.1:5000(port 5000) is stuck displaying my old un-updated file. from flask import Flask app = Flask(__name__) @app.route("/") def index(): return "Home page" @app.route("...
Baier asked 1/9, 2017 at 21:24

7

Solved

I have to put nodejs in port 80, but apache is already using it. How can I put both (nodejs and apache) on the same port 80? I need it because in my university all the ports are blocked except for ...
Crowned asked 23/6, 2012 at 19:28

3

i am using next.js 9.5.x and I am looking for a way to configure hostname and port through next.config.js. I already searched the documentation about this, but I did not find a answer for this topi...
Mopboard asked 5/9, 2020 at 11:17

2

Solved

I'm trying to run a docker Container with a number of exposed ports on IPv6. I don't want the containers to have IPv6 addresses of their own. All I want is for them to be reachable under the IPv6 a...
Corbeil asked 7/2, 2021 at 17:18

14

Solved

This has been asked before but was closed as "Not a real question" https://stackoverflow.com/questions/7450813/how-to-run-a-site-with-administrative-privileges-in-iis-express-7-5 However I think ...

5

Solved

I am reading the documentation for using kubeadm to set up a Kubernetes cluster. I am running Ubuntu Server 20.04 on three VMs but am currently only working with one of them before doing the config...
Aim asked 3/1, 2022 at 20:53

© 2022 - 2024 — McMap. All rights reserved.