LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices


Reply
  Search this Thread
Old 01-20-2023, 07:49 AM   #16
sag2662
Member
 
Registered: Sep 2022
Posts: 74

Original Poster
Rep: Reputation: 0

Quote:
Originally Posted by Turbocapitalist View Post
Thanks. That seems to narrow it down to "client1". Does the account "test" exist on that system? What are the full configuration settings there?

Code:
/usr/sbin/sshd -T -C user=test | sort
How have you set PAM there on "client1" ?
I dont have idea how it was set, but its set to yes

i just compared the configuration settings using the code provided by you. I only found the difference with working system.
Code:
pubkeyauthoptions none
 
Old 05-01-2024, 10:32 AM   #17
murugesandins
Member
 
Registered: Apr 2024
Location: Bangalore Karnataka India
Distribution: CYGWIN_NT
Posts: 75

Rep: Reputation: 1
if you have access to other users at failure system, login using other user and execute following command to validate the existence of all users:
Code:
$ /usr/bin/getent passwd | /usr/bin/awk -F: '{ print $1}'
Example at windows:
Code:
$ /usr/bin/getent.exe passwd 2>&1 | /usr/bin/head.exe -n 3   | /usr/bin/gawk.exe -F: '{ printf( "%-17s %-23s %s\n", $1, $6, $7); }'
murugesandins     /home/murugesandins     /bin/bash
murugesan_openssl /home/murugesan_openssl /bin/bash
oracle            /home/oracle            /bin/bash
 
Old 05-01-2024, 10:53 AM   #18
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,705

Rep: Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972
Is there a reason you keep replying to threads that have been closed for a while?? And why are you posting commands from Windows/Cygwin, that aren't actual Linux commands???
 
Old 05-01-2024, 11:03 AM   #19
Turbocapitalist
LQ Guru
 
Registered: Apr 2005
Distribution: Linux Mint, Devuan, OpenBSD
Posts: 7,333
Blog Entries: 3

Rep: Reputation: 3730Reputation: 3730Reputation: 3730Reputation: 3730Reputation: 3730Reputation: 3730Reputation: 3730Reputation: 3730Reputation: 3730Reputation: 3730Reputation: 3730
Quote:
Originally Posted by sag2662 View Post
I dont have idea how it was set, but its set to yes

i just compared the configuration settings using the code provided by you. I only found the difference with working system.
Code:
pubkeyauthoptions none
Hmm. Maybe usepam is set to yes there. If so, then take a look at /etc/pam.d/sshd to see what setting that has been afflicted with. It could contain some clues about your PAM warning.
 
Old 05-10-2024, 06:05 AM   #20
murugesandins
Member
 
Registered: Apr 2024
Location: Bangalore Karnataka India
Distribution: CYGWIN_NT
Posts: 75

Rep: Reputation: 1
Quote:
Originally Posted by TB0ne View Post
Is there a reason you keep replying to threads that have been closed for a while?? And why are you posting commands from Windows/Cygwin, that aren't actual Linux commands???
01)
I am interested to help related topics (which I am interested in). (+my friend sag2662).
02)
I am using:
HP-UX
SunOS
AIX
Linux (all*X)
CYGWIN_NT from 2003
I have ported AI using CYGWIN_NT from other OS to windows within 1.5 months during 2008(team mates ported to windows using visual studio 45% after 1.5 months).
We can achieve all linux oriented commands using CYGWIN_NT at windows.
Example at my 127.0.0.1:
Code:
$ type lsof
lsof is aliased to `~/lsof'
$ lsof -i:7777
$ lsof -i:7777
Image Name                     PID Session Name        Session#    Mem Usage
java.exe                     11820 Services                   0    132740 K
ABOVE PROCESS LISTENING AT FOLLOWING PORTS:
  TCP    127.0.0.1:443            0.0.0.0:0              LISTENING       11820  InHost
  TCP    127.0.0.1:7777           0.0.0.0:0              LISTENING       11820  InHost
  TCP    127.0.0.1:9090         127.0.0.1:0              LISTENING       11820  InHost
https://127.0.0.1:443
https://127.0.0.1:7777
https://127.0.0.1:9090
http://127.0.0.1:443
http://127.0.0.1:7777
http://127.0.0.1:9090
 
Old 05-10-2024, 08:03 AM   #21
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,705

Rep: Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972
Quote:
Originally Posted by murugesandins View Post
01) I am interested to help related topics (which I am interested in). (+my friend sag2662).
Then you should probably post something actually related to helping, rather than opening old threads and posting things that don't relate.
Quote:
02) I am using:
HP-UX
SunOS
AIX
Linux (all*X)
CYGWIN_NT from 2003
I have ported AI using CYGWIN_NT from other OS to windows within 1.5 months during 2008(team mates ported to windows using visual studio 45% after 1.5 months). We can achieve all linux oriented commands using CYGWIN_NT at windows.
Example at my 127.0.0.1:
Sorry, no. Cygwin *IS NOT LINUX*, so posting things like "getent.exe" just aren't relevant. And you 'ported AI using CYGWIN_NT' somehow?? Sorry, just no.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] raspbian: how to log in via ssh through wlan? (dont work; but ssh via LAN works) floppy_stuttgart Debian 8 03-24-2014 01:42 PM
system-config-packages doesnot work in RHEL 4 tuxfood Red Hat 0 12-13-2005 12:19 AM
Sound doesnot work anshulkothari Slackware - Installation 1 02-01-2004 06:46 PM
modem ADSL from sapo (Portugal) doesnot work in Suse9.0 lepton Linux - Distributions 0 11-16-2003 12:54 PM
RHN9 - Gnome crash, KDE doesnot work vijlovely Linux - Newbie 2 07-13-2003 07:03 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Server

All times are GMT -5. The time now is 12:21 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration