Questions tagged [ss]

ss is a command from iproute2

ss is used to dump socket statistics. It allows showing information similar to netstat.

33 questions
0
votes
1 answer

Download two table in two panel with one download button in R shiny

I am using the download button in R shiny, is it possible to download two different tables in different tabPanel(Page A and Page B)? I think my problem is: If I can let the server know which tab is selected by the user? and then ther server will…
ting_H
  • 83
  • 6
0
votes
0 answers

meaning of sock_drop and connection issues

What is the sock_drop in the skmem output of the ss command? Does it mean the number of messages that have been dropped before the application could read them? I'm seeing this output in one of my boxes, the connection is a udp: UNCONN 2117632 0 …
fluter
  • 13,238
  • 8
  • 62
  • 100
0
votes
0 answers

Linode instance SSL installation and auto DNS assignment with Cloudflare

Here it’s my implementation. resource "linode_instance" "server" { count = 1 label = "server-${count.index}" region = "ap-west" image = "linode/ubuntu21.10" type = "g6-nanode-1" tags = ["prod"] root_pass =…
BySpecops.
  • 23
  • 7
0
votes
1 answer

Should I install one, or two ssl certificates?

I am confused about SSL certificates in express js and angular. I would like to make an angular registration system, which in turn will request resources from an api in express js. The question is as follows: Should I use ssl certificates in angular…
0
votes
1 answer

How can get I get relational data from another table and calculate the average in Qlikview?

I have relationship with 2 tables Table 1 - Process Table 2 - Process History Here the relationship is Id(Process table) and ProcessId(Process history table) I want to calculate the Average Networking days of all the processes. For eg: nwd =…
Gnik
  • 7,120
  • 20
  • 79
  • 129
0
votes
1 answer

SSL module not available when installing python modules

I've been trying to install python modules from cmd, but I'm getting the following error: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by…
0
votes
2 answers

Process owner of a docker program

I have started an nginx container bound on the host network as follows: docker run --rm -d --network host --name mynginx nginx However, when querying process information with the ss command, this seems to be a pure nginx but not a docker process: $…
pkaramol
  • 16,451
  • 43
  • 149
  • 324
0
votes
2 answers

can't access wp-admin giving me a white page

I connected cloudflare to my WordPress and enabled HTTPS flexible. made 2 page rules https://www.example.com/wp-login.php* https://www.example.com/wp-admin/* leaving SSL as flexible but disabling cache and security level I did install two…
Hady Rashwan
  • 356
  • 1
  • 6
  • 21
0
votes
1 answer

XSL to Excel: Choose not processing formula

I declared a variable with a simple Excel formula (not the formula I will eventually use, just something simple for testing) Then I am trying to use a Choose to determine if the…
Sean Perryman
  • 29
  • 1
  • 1
  • 7
0
votes
4 answers

Trouble with cut command after executing ss command

Here is the basic cut syntax I'm using: [jay@webserver ~]$ ss -tn State Recv-Q Send-Q Local Address:Port Peer Address:Port ESTAB 0 52 …
user3299633
  • 2,971
  • 3
  • 24
  • 38
0
votes
1 answer

Using matlab function in simulink error

I'm new to Simulink but I need to use a matlab function. I created a "MATLAB Function1" block with one input (a time signal that comes from another block) and one output (three signals wrapped in a matrix shown in a Scope block). Here the code…
leonardo vet
  • 119
  • 14
0
votes
2 answers

Equivalent SSIS expression

I am unable to convert the following SQL to a corresponding SSIS expression and cast it to DATE format SUBSTRING(A.FILENAME,13,2)+'-'+SUBSTRING(A.FILENAME,15,2)+'-'+SUBSTRING(A.FILENAME,17,4) This is the best I could…
Whitewolf
  • 186
  • 2
  • 5
  • 14
0
votes
0 answers

NGinx SSL redirect loop

Here is my nginx configuration file: server { listen 80; server_name domain.com; return 301 https://$host$request_uri; } server { listen 443; server_name domain.com; client_max_body_size 20M; …
glarkou
  • 7,023
  • 12
  • 68
  • 118
-1
votes
1 answer

The underlying connection was closed. Could not establish trust relationship for the SSL/TLS secure channel

I am using VB.NET 2.0 and my server is Windows Server 2005, XP operating system. I am facing this error on server: The underlying connection was closed. Could not establish trust relationship for the SSL/TLS secure channel. And not in my local…
Atul Barot
  • 1
  • 1
  • 4
-1
votes
1 answer

netstat/ss shows duplicated outgoing time_wait sockets

I encountered this behaviour many times in many servers which processed lots of network connections. # ss -nt state time-wait sport ne :80 and sport ne :10050 | sort -k3 0 0 127.0.0.1:13530 …