Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sasldblistusers(8) [redhat man page]

SASLDBLISTUSERS(8)					      System Manager's Manual						SASLDBLISTUSERS(8)

NAME
sasldblistusers - list users in sasldb SYNOPSIS
sasldblistusers DESCRIPTION
sasldblistusers is used to list the users in the SASL password database (usually /etc/sasldb). This will NOT list all the users in /etc/passwd, shadow, PAM, etc. only those created by SASL (usually by saslpasswd). OPTIONS
SEE ALSO rfc2222 - Simple Authentication and Security Layer (SASL) CMU SASL
March 8, 2000 SASLDBLISTUSERS(8)

Check Out this Related Man Page

basic_sasl_auth(8)					      System Manager's Manual						basic_sasl_auth(8)

NAME
basic_sasl_auth - Basic Authentication using SASL (specifically the cyrus-sasl authentication method) Version 1.0 SYNOPSIS
basic_sasl_auth DESCRIPTION
basic_sasl_auth is an installed binary helper for Squid. SASL is configurable (somewhat like PAM). Each service authenticating against SASL identifies itself with an application name. Each application can be configured independently by the SASL administrator. CONFIGURATION
To configure the authentication method used the file basic_sasl_auth.conf can be placed in the appropriate location, usually /usr/lib/sasl. The authentication database is defined by the pwcheck_method parameter. Only the PLAIN authentication mechanism is used. Examples: pwcheck_method:sasldb use sasldb - the default if no conf file is installed. pwcheck_method:pam - use PAM authentication database pwcheck_method:passwd - use traditional /etc/passwd pwcheck_method:shadow - use slightly less traditional /etc/shadow Others methods may be supported by your cyrus-sasl implementation - consult your cyrus-sasl documentation for information. Typically the authentication database ( /etc/sasldb , /etc/shadow , PAM ) can not be accessed by a normal user. You should use setuid/set- gid and an appropriate user/group on the executable to allow the authenticator to access the appropriate password database. If the access to the database is not permitted then the authenticator will typically fail with "-1, generic error". chown root.mail basic_sasl_auth chmod ug+s basic_sasl_auth If the application name basic_sasl_auth will also be used for the PAM service name if pwcheck_method:pam is chosen. And example PAM config- uration file basic_sasl_auth.pam is also included. AUTHOR
This program was written by Ian Castle <ian.castle@coldcomfortfarm.net> This manual was written by Ian Castle <ian.castle@coldcomfortfarm.net> Amos Jeffries <amosjeffries@squid-cache.org> COPYRIGHT
This program and documentation is copyright to the authors named above. Distributed under the GNU General Public License (GNU GPL) version 2 or later (GPLv2+). QUESTIONS
Questions on the usage of this program can be sent to the Squid Users mailing list <squid-users@squid-cache.org> REPORTING BUGS
Bug reports need to be made in English. See http://wiki.squid-cache.org/SquidFaq/BugReporting for details of what you need to include with your bug report. Report bugs or bug fixes using http://bugs.squid-cache.org/ Report serious security bugs to Squid Bugs <squid-bugs@squid-cache.org> Report ideas for new improvements to the Squid Developers mailing list <squid-dev@squid-cache.org> SEE ALSO
squid(8), SASL(3), PAM(7), passwd(1), shadow(5), chown(1), chmod(1), GPL(7), The Squid FAQ wiki http://wiki.squid-cache.org/SquidFaq The Squid Configuration Manual http://www.squid-cache.org/Doc/config/ basic_sasl_auth(8)
Man Page

11 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Make all words begin with capital letter?

I need to use bash to convert sentences where all words start with a small letter into one where all words start with a capital letter. So that a string like: are utilities ready for hurricane sandy becomes: Are Utilities Ready For Hurricane Sandy (10 Replies)
Discussion started by: locoroco
10 Replies

2. UNIX for Dummies Questions & Answers

How to capture ^x,^y via bash script?

Hi I am new to this forum. Any please help me to capture ctrl x and ctrl y via a bash script. and please tell me how to clear the prompt via bash script BR Ramukumar M (4 Replies)
Discussion started by: ramukumar
4 Replies

3. Red Hat

Create an unconfigured VMware host from a template that is set to do firstboot --reconfig

I have an Oracle Linux 7.1 vsphere host built. It's be preconfigured with our security configurations. What I would like to do is unconfigure this host. Then set the host to do firstboot --reconfigure. how do I do that using /etc/sysconfig/firstboot? I've tried setting ... (10 Replies)
Discussion started by: os2mac
10 Replies

4. Shell Programming and Scripting

Retrieving previous command in a script

i know from the command line, the symbol $_ is used to get the last command that was run. however, id like to replicate this within a script. meaning, how do i do something like this: #!/bin/sh ps -ef | egrep talling StoreThisLastCommandA=$_ awk '/error/ {print $3}' /tmp/test... (5 Replies)
Discussion started by: SkySmart
5 Replies

5. UNIX for Advanced & Expert Users

Tar Command

hi folks, how to using tar with exclude directory and compress it using tar.Z i only know how to exclude dir only with this command below: tar -cvf /varios/restore/test.tar -X excludefile.txt /jfma/test1/ how to compress it using 1 command? Thanx Please use CODE tags as... (6 Replies)
Discussion started by: only
6 Replies

6. UNIX for Advanced & Expert Users

CentOS7 restoring file capabilities

Quite an obscure question I think. We have a rebuild process for remote sites that allows us to PXE rebuild a till (actually a PC with a touch screen and various fancy bits) running CentOS. The current CentOS5 tills work just fine with a tar image restore and some personalisation. Sadly,... (4 Replies)
Discussion started by: rbatte1
4 Replies

7. Docker

Docker learning Phase-I

Hello All, I had recently learnt a bit of Docker(which provides containerization process). Here are some of my learning points from it. Let us start first with very basic question: What is Docker: Docker is a platform for sysadmins and developers to DEPLOY, DEVELOP and RUN applications ... (7 Replies)
Discussion started by: RavinderSingh13
7 Replies

8. UNIX for Advanced & Expert Users

Issue with "rsh" on RedHat

Hi Folks, I feel that I should be posting this in the Unix for Dummies Forum and will probably wish I'd created an account and done just that - but here goes anyway. I have two identical servers both Dell R430's both running RedHat Enterprise Server 7.4 and the same kernel, both have the same... (16 Replies)
Discussion started by: gull04
16 Replies

9. UNIX for Beginners Questions & Answers

Package

Hi, What is installation package and how to create it? When we run: in AIX: installp package1 or in Linux rpm -ivh mypackage What is package1 or mypackage in the abov examples and how to create them and deploy them? I hope my question is clear enough. Thank you (2 Replies)
Discussion started by: big123456
2 Replies

10. UNIX for Advanced & Expert Users

Shopt -s histappend

What is the point of this? Whenever I close my shell it appends to the history file without adding this. I have never seen it overwrite my history file. # When the shell exits, append to the history file instead of overwriting it shopt -s histappend (3 Replies)
Discussion started by: cokedude
3 Replies

11. Shell Programming and Scripting

[TIP] Processing YAML files with yq

After the success of the jq - tool for parsing and manipulating JSON-Data someone wrote a tool called yq, which aims to be the same for YAML, what jq is for JSON. Seems to work fine. I'll definitely give it a chance in future. Example YAML-File: --- !ruby/object:Puppet::Node::Facts ... (1 Reply)
Discussion started by: stomp
1 Replies