Displaying 16 results from an estimated 16 matches for "afarb".
Did you mean:
afar
2011 Apr 25
2
Samba can't access dir - SELinux problem?
...CentOS 5.5 as a "playground" VM at my WinXP notebook
and now I'm migrating to a new CentOS 5.6 install
and everything has worked well - except samba.
I have this very permissive config to export my ~/src dir:
# cat /etc/samba/smb.conf
[global]
guest ok = yes
guest account = afarber
security = share
hosts allow = 172.16.6. 127.0.0.1
[src]
path = /home/afarber/src
public = yes
writable = yes
printable = no
But in the new install it has stopped working and prints:
# tail /var/log/samba/smbd.log
[2011/04/25 01:36:37, 0] smbd/service.c:make_connection_snum(1013)...
2010 Dec 17
1
Passing LD_LIBRARY_PATH through sudo
Hello,
I have a CentOS 5.5/64bit VM, where I only have sudo rights:
afarber ALL=(ALL) NOPASSWD: ALL
I'm trying to pass LD_LIBRARY_PATH
through sudo to install DBD::Oracle
( https://rt.cpan.org/Ticket/Display.html?id=63678 )
and have tried using "sudo -E" and also
changing these lines in the stock /etc/sudoers:
Defaults !env_reset
Default...
2012 Jan 20
1
Setting From address for cronjob mails (because Gmail rejects)
...ue_directory = /var/spool/postfix
readme_directory = /usr/share/doc/postfix-2.6.6/README_FILES
sample_directory = /usr/share/doc/postfix-2.6.6/samples
sendmail_path = /usr/sbin/sendmail.postfix
setgid_group = postdrop
unknown_local_recipient_reject_code = 550
On both machines I have appended
afarber: Alexander.Farber at gmail.com
root: Alexander.Farber at gmail.com
to the /etc/aliases and run "newaliases".
Both machines have several cronjobs and logwatch.
One machine is a database server,
I receive its cronjob mails just fine.
The other machine (preferans.de)...
2016 Jun 24
1
haproxy + Apache + virtual hosts -> wrong host is displayed
...on forwardfor
default_backend apache
backend apache
server domain 127.0.0.1:8080
The /etc/httpd/conf/httpd.conf binds Apache
to port 8080 and serves several Wordpress sites:
Listen 127.0.0.1:8080
ServerName 144.76.184.151
<VirtualHost 127.0.0.1:8080>
DocumentRoot /var/www/html/afarber.de
ServerName afarber.de
ErrorLog logs/afarber.de/error_log
CustomLog logs/afarber.de/access_log common
</VirtualHost>
<VirtualHost 127.0.0.1:8080>
DocumentRoot /var/www/html/ruhrgebietsingle.de
ServerName ruhrgebietsingle.de
ErrorLog logs/ruhrgebietsingle.de/...
2010 Sep 29
5
Forbidden: can't access *.html files in /var/www/html
...ain.xml and index.php or
hello-world.php are served just fine. Also, if I move my *.html
files under /var/www/html/test/ - then they are served ok.
The permissions are ok in my book:
# ls -al Alex.html index.php hello-world.php
-r--r--r-- 1 root root 599 Sep 29 15:49 Alex.html
-rw-r--r-- 1 afarber afarber 33 Jul 29 11:32 hello-world.php
-rw-r--r-- 1 root root 5631 Jun 27 09:38 index.php
# ls -ald / /var /var/www /var/www/html
drwxr-xr-x 23 root root 4096 Sep 29 15:54 /
drwxr-xr-x 22 root root 4096 Jun 22 15:25 /var
drwxr-xr-x 8 root root 4096 Sep 29 11:45 /var/www
drwxr-xr-x 16...
2011 Oct 04
2
Migrating CentOS 5 -> 6: where to put /etc/inittab respawn scripts?
Hello,
sorry, for 1 more question on CentOS 5 -> CentOS 6 migration.
On my old CentOS 5.7 machine I have the following line:
pref:3:respawn:/bin/su -c '/usr/local/pref/pref.pl >/tmp/pref-`date
+%a`.txt 2>&1' afarber
and this has served me well, I don't want to install
anything else like daemontools etc. - to keep my web-server
easily reinstallable (or movable to another hoster).
But now I have migrated to CentOS 6.0, added that line
and the "init q", but nothing happens - as indeed promised
b...
2012 May 26
2
CentOS 6.2: suspending vim with ctrl-z and resuming with fg - stopped working
...RL-Z, then execute few commands at my bash prompt
and then get back to the vim session again with "fg"?
It has stopped working at my CentOS 6.2 machine (I haven't
noticed exactly when) but works fine with CentOS 5.x.
I'm using PuTTY to login to both. The error message I get is:
afarber at www:~> fg
sudo vim test.pl
~
[1]+ Stopped sudo vim test.pl
(and nothing comes up)
Thank you
Alex
2014 Aug 11
3
Use postfix and spamd on CentOS 6 - looking for a shortest guide
...level = 2
header_checks = pcre:/etc/postfix/header_checks
html_directory = no
inet_interfaces = all
inet_protocols = ipv4
mail_owner = postfix
mailq_path = /usr/bin/mailq.postfix
manpage_directory = /usr/share/man
mydestination = $myhostname, localhost.$mydomain, localhost
myhostname = www.afarber.de
newaliases_path = /usr/bin/newaliases.postfix
queue_directory = /var/spool/postfix
readme_directory = /usr/share/doc/postfix-2.6.6/README_FILES
sample_directory = /usr/share/doc/postfix-2.6.6/samples
sendmail_path = /usr/sbin/sendmail.postfix
setgid_group = postdrop
smtp_destination_con...
2016 Jun 21
2
Redirecting port 8080 to port 80 - how to add in /etc/sysconfig/iptables file?
Hello again,
unfortunately the following /etc/sysconfig/iptables file does not work:
*nat
:INPUT ACCEPT
:OUTPUT ACCEPT
:PREROUTING ACCEPT
:POSTROUTING ACCEPT
#-A PREROUTING -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 8080
-A PREROUTING -p tcp -m tcp -d 144.76.184.154/32 --dport 80 -j REDIRECT
--to-ports 8080
COMMIT
*filter
:INPUT DROP
:OUTPUT ACCEPT
:FORWARD DROP
-A INPUT -m state --state
2016 Jun 21
4
Redirecting port 8080 to port 80 - how to add in /etc/sysconfig/iptables file?
...ltiport dports smtp,http,https,webcache
ACCEPT tcp -- anywhere anywhere tcp dpt:ssh
flags:FIN,SYN,RST,ACK/SYN state NEW limit: avg 2/min burst 1
Chain FORWARD (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere afarber.de tcp
dpt:webcache
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
# iptables -t nat -L
Chain PREROUTING (policy ACCEPT)
target prot opt source destination
REDIRECT tcp -- anywhere afarber.de tcp
dpt:webcac...
2010 Oct 23
0
How to install and update a src rpm?
...et the error listed at the bottom of my mail.
Do I maybe need to add a file to /etc/yum.repos.d/ ?
I'd like to have httd source somewhere in a good defined
place (will it be $HOME/src or /usr/src ?) because I'm trying
to develop an Apache module. I'm using CentOS 5.5.
Thank you
Alex
afarber at centos:src> sudo yumdownloader --source httpd
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* addons: centos.psw.net
* base: centos.psw.net
* extras: centos.psw.net
* updates: centos.psw.net
Excluding Packages from CentOS-5 - Base
Finished
Excluding Packages f...
2016 Jun 17
1
Error: Could not find or load main class with OpenJDK and Oracle Java
Hello fellow Linux users,
on CentOS 7.2 I have successfully downloaded and installed Oracle Java [1]
with:
# rpm -Uvh jdk-8u91-linux-x64.rpm
Also there is already OpenJDK installed:
# rpm -qa | grep -i jdk
java-1.8.0-openjdk-headless-1.8.0.91-0.b14.el7_2.x86_64
java-1.8.0-openjdk-1.8.0.91-0.b14.el7_2.x86_64
jdk1.8.0_91-1.8.0_91-fcs.x86_64
I can switch between the 2 using
2008 Dec 11
6
yum-updatesd or similar for CentOS 4
Hello,
we have enabled yum-updatesd on our dozen real
and virtual machines running CentOS 5.2 some time
ago and are very satisfied:
afarber at ablsw01:~> grep -v ^# /etc/yum/yum-updatesd.conf
[main]
run_interval = 7200
updaterefresh = 1200
emit_via = email
dbus_listener = no
do_update = yes
do_download = yes
do_download_deps = yes
(it would be good to make it use the proxy though...)
My plan is to keep the update mails and if...
2016 Jun 21
2
Redirecting port 8080 to port 80 - how to add in /etc/sysconfig/iptables file?
On Tue, 2016-06-21 at 15:46 +0100, Always Learning wrote:
> On Tue, 2016-06-21 at 16:24 +0200, Alexander Farber wrote:
>
> > *nat
> > :INPUT ACCEPT
> > :OUTPUT ACCEPT
> > :PREROUTING ACCEPT
> > :POSTROUTING ACCEPT
> > -A PREROUTING -p tcp --dst 144.76.184.154 --dport 8080 -j REDIRECT
> > --to-port 80
>
>
2008 Apr 02
1
Strange dmesg messages
..., size=2406763
2
Apr 2 18:09:20 mailserver02 deliver(everson.todoroki@):
msgid=<20080402210925.B94E2400A735 at relay01.com.br>: saved m
ail to INBOX
Apr 2 18:09:20 mailserver02 dovecot: child 24319 (imap) killed with
signal 9
Apr 2 18:09:21 mailserver02 dovecot: pop3-login: Login:
user=<afarber@>, method=PLAIN, rip=10.0.3.2, lip=10.0.149.2
Apr 2 18:09:21 mailserver02 deliver(everson.todoroki@):
msgid=<20080402210927.74F36400A8F0 at relay02.com.br>: saved m
ail to INBOX
Apr 2 18:09:23 mailserver02 dovecot: pop3-login: Login:
user=<alexandre.pellegrini@>, method=PLAIN, ri...
2016 Jun 20
3
Redirecting port 8080 to port 80 - how to add in /etc/sysconfig/iptables file?
...as user "nobody" at the port 8080 using
the /etc/systemd/system/websocket-handler.service file:
[Unit]
Description=WebSocket Handler Service
After=network-online.target
[Service]
Type=simple
User=nobody
Group=nobody
ExecStart=/usr/bin/java -classpath '/usr/share/java/jetty/*'
de.afarber.MyHandler 144.76.184.151:8080
ExecStop=/bin/kill ${MAINPID}
SuccessExitStatus=143
[Install]
WantedBy=multi-user.target
However I actually need my Jetty program to run at port 80 - so that users
behind corporate firewalls can connect too.
The Jetty doc at
https://www.eclipse.org/jetty/document...