Displaying 20 results from an estimated 600 matches similar to: "CentOS Digest, Vol 57, Issue 14"
2012 Jan 25
3
Having problems with sudoers
I've got a Cento 6.2 server I'm putting together that will become a
mailserver. It will have on it MailScanner and MailWatch for
MailScanner. I'm using the latest stuff available and have run into a
problem with changes I need to make in the /etc/sudoers file. It doesn't
seem to take affect after I make the changes, so either the syntax
within the file has changed or the way
2015 Nov 02
2
use pssh to restart a service
Hey Gordon,
Sorry, man my bad! Disabling the tty requirement for my sudo user does
indeed work. I had a type-o in the sudoers file, and when I corrected it,
my sudo command via pssh started working!
#pssh -i -h es_list "/bin/sudo /bin/systemctl restart elasticsearch; sleep
10"
[1] 20:31:32 [SUCCESS] bluethundr at es3.jokefire.com
Stderr: sudo: sorry, you must have a tty to run sudo
2015 Oct 31
3
use pssh to restart a service
>
> What does the sudo log say?
This is all the secure logs say about the ssh session:
[root at logs:~] #tail -f /var/log/secure
Oct 31 19:15:20 logs sshd[24407]: Accepted publickey for bluethundr from
47.18.111.100 port 47469 ssh2: RSA
ae:62:1f:de:54:89:af:2c:10:16:0e:fd:8d:7e:81:06
Oct 31 19:15:21 logs sshd[24407]: pam_unix(sshd:session): session opened
for user bluethundr by (uid=0)
2020 Sep 15
3
PFsense via Samba Authentication Server -> ERROR! ldap_get_groups() could not bind
On 2020-09-15 1:13 pm, miguel medalha wrote:
>> I've tried restarting PHP-FPM and webconfigurator,
>> but that doesn't seem to solve the problem.
>
> This must be done each time after you edit the configuration using the
> LDAP
> authentication setup page. Otherwise the changes won't stick. Before I
> knew
> this, I did suffer a lot trying to make it
2020 Sep 15
1
PFsense via Samba Authentication Server -> ERROR! ldap_get_groups() could not bind
On 2020-09-15 4:19 pm, Rowland penny via samba wrote:
> On 15/09/2020 20:53, Marco Shmerykowsky via samba wrote:
>> On 2020-09-15 1:13 pm, miguel medalha wrote:
>>>> I've tried restarting PHP-FPM and webconfigurator,
>>>> but that doesn't seem to solve the problem.
>>>
>>> This must be done each time after you edit the configuration using
2020 Sep 16
2
PFsense via Samba Authentication Server -> ERROR! ldap_get_groups() could not bind
> This is just another user like anyone else in the office.
No, its offcourse not .. Why do you think you binding user is failing ;-)
So, on the bind fail.
Did you set on the "binding" user, : account is trusted and cant not be delegated?
Password can be changed and never expire need to be ticked also.
Whats set on the Pfsence server in ldap.conf ?
Is BASE and URI defined?
As
2009 Mar 13
4
running yum from userid
I added via visudo my userid for authorization of
me ALL(ALL) NOPASSWD: ALL
and I still cannot run yum as me. Is this just not possible?
2015 Feb 12
7
Cronjob and sudo
I need to remove empty files out of a directory that are over 6 hours
old so I created this script and put it in cron.hourly.
#!/bin/sh
cd /var/list
sudo -u matt find /var/list -mmin +360 -empty -user matt -exec rm {} \;
I want to run it as matt rather than root for just an added bit of
safety. Problem is I get this.
"sudo: sorry, you must have a tty to run sudo"
Is there another
2013 Jul 17
3
sudo add user script
Hello list,
I took another stab at finding a way to add a sudo user remotely and it
gets you most of the way there. If you execute the script as root it works
beautifully and does just what you want. Which is add the user to the
group and gives that user group rights to certain commands.
But if you execute it as a user who only has sudo access to the
/etc/sudoers file it errors out.
cloud:~]
2007 Nov 19
7
asterisk as non-root/best practices
Hi,
I have set up asterisk to run as non root, and allow admin users to log
in to the server as asterisk, which gives them privileges to edit
configs in the asterisk home directory.
As for connecting to the console with 'asterisk -r' - this by default
does not work as asterisk is owned stored in /usr/sbin/asterisk
I am reading that the best way to solve this is to use 'visudo' -
2011 Jul 25
3
Sudo #includedir function ignored CentOS 6
I am unable to get the #includedir function to work with sudo. This works
just fine on all my CentOS 5.6 servers, but on 6 it is being ignored. I
have this line in the file /etc/sudoers.d/zabbix-puppet
zabbix ALL=NOPASSWD: /var/lib/zabbix/bin/start_puppet
However sudo still requires a password. If I put that same line into
/etc/sudoers file , there is no password prompt. At the end of my
2015 Jun 10
1
sudoers
My experience with RHEL and CentOS is quite limited, andwould classify me as novice.? I have been running CentOS 6for a little over a year and recently brought up a CentOS 7system as a virtual machine under Windows 7.
One of the first things I usually do after installation isedit the /etc/sudoers file using visudo to give a specificuser or specific users privileges as indicated in the fileexcerpt
2004 Sep 05
4
Asterisk & sudo from httpd
Hello!
I want to use "asterisk -rx "show version"" from a php script called in
the browser using the local apache, which runs as user "apache".
Asterisk is running as root.
I added the following line to /etc/sudoers using visudo:
apache ALL = NOPASSWD: /usr/sbin/asterisk
When i am on the command line of my linux box it looks like this:
2008 Jun 27
5
Wheel and YUM!!
Dear All
I am trying to allow a local user on the centos machine to be able to
run yum
What I have done is added him to the wheel group so that he can run
software, basically it's his own machine if he breaks it it's his
problem
But even after adding him to wheel, sys and adm group he is unable to
install using yum
I am sure I must be missing something or I must be doing
2013 Oct 14
2
setuid or other ideas
Everyone,
I am working on a Centos 5.9 system. I have an need to be able to
activate a piece of software from /etc/smrsh that is activated when
sendmail delivers the e-mail to this piece of software. I would like
this piece of software to take on the user and group identities that are
different than 'mail' which is what happens now. I want to use a user
and group that is not root), so
2013 Jul 18
1
if /else in expect script
I took your suggestion and turned my (ill advised) sudoers bash script
into an expect script! It works a lot better this way and is more secure.
Because I'm not trying to store a password in a script (which I recognize
as a bad idea anyway, I I think I've learned my lesson here).
It really works well. But the only thing I'm still trying to figure out is
how to put a if statement in
2008 Sep 18
1
using NOPASSWD in sudoers
Hello Everyone,
I am trying to change our /etc/sudoers (using visudo) to allow 2
commands to be run as root without a password, but it isn't working.
Here is the part of the sudoers file that is in question.
# User alias specification
User_Alias FULLACCESS = doug, scott
# members of the FULLACCESS User_Alias may run chown and chmod without
a password
FULLACCESS ALL = (root) NOPASSWD:
2015 Oct 31
4
use pssh to restart a service
Hi all,
I need to restart a service on a few elasticsearch nodes. I'm trying to do
it with pssh.
I'm getting this error when I try to do that:
pssh -h es_list "/bin/sudo -S /bin/systemctl restart elasticsearch"
[1] 17:01:50 [FAILURE] bluethundr at es2.example.com Exited with error code 1
[2] 17:01:51 [FAILURE] bluethundr at es3.example.com Exited with error code 1
[3]
2020 Sep 15
0
PFsense via Samba Authentication Server -> ERROR! ldap_get_groups() could not bind
On 15/09/2020 20:53, Marco Shmerykowsky via samba wrote:
> On 2020-09-15 1:13 pm, miguel medalha wrote:
>>> I've tried restarting PHP-FPM and webconfigurator,
>>> but that doesn't seem to solve the problem.
>>
>> This must be done each time after you edit the configuration using
>> the LDAP
>> authentication setup page. Otherwise the changes
2020 Sep 16
0
PFsense via Samba Authentication Server -> ERROR! ldap_get_groups() could not bind
I followed the instructions on the OpenVPN site for creating
the bind user:
https://openvpn.net/vpn-server-resources/openvpn-access-server-on-active-directory-via-ldap/#Create_and_configure_a_bind_user
Following this procedure creates a user, but does not
assign it to any security group other than "Domain Users"
as described on the site.
The bind works sometimes. I can not track down