Friday, November 9, 2012

samba access log

first configure samba server and create samba share directory and samba users.

Now open the file /etc/samba/smb.conf

find the [global] and add below lines

# Audit settings
full_audit:prefix = %u|%I|%S
full_audit:failure = connect
full_audit:success = connect disconnect opendir mkdir rmdir closedir open close read pread write pwrite sendfile rename unlink chmod
fchmod chown fchown chdir ftruncate lock symlink readlink link mknod realpath
full_audit:facility = local7
full_audit:priority = notice

after adding lines, i have created samba user 'test',find [test] in smb.conf and add below lines:


    vfs objects = full_audit
    full_audit:prefix = %u|%I|%m|%s   
    full_audit:success = mkdir rename unlink rmdir open pwrite   
    full_audit:failure = none


now save the file smb.conf and open file /etc/syslog.conf and add below lines at the end of the file

filter f_local5 {facility(local7);};
destination m_samba_audit { file("/var/log/samba/audit.log"); };
log { source(src); filter(f_local7);destination(m_samba_audit); flags(final); };

and save it.

now restart the services:

/etc/init.d/smb restart
/etc/init.d/syslog restart

Now access samba directory from client machine and make some changes in that directory like creating new directory,change the name of directory etc.

after doing this open the file /var/log/samba/log.audit
it will contain all the activity logs done by the user with username, ip address of client machine and what activities user has done.



[NOTE]

if you don'f find /var/log/samba/log.audit file than once create a log.audit file manually.


samba logs,samba,samba access,samba access logs

Thursday, November 8, 2012

Install Ruby and Rails on CentOS

Download Ruby from http://www.ruby-lang.org/en/downloads/

extract it :

tar xzvf ruby-1.9.2-p0.tar.gz

install dependacies using :

yum install zlib zlib-devel


Now Install Ruby:

    cd ruby-1.9.2-p0

    ./configure
    make install

Install Rails : 
gem install rails
install ror,install ror centos,install ror redhat,ror,ruby on rails,install ruby on rails,install ruby on rails centos,install ruby on rails redhat,configure ruby on rails,configure ruby on rails centos,configure ruby on rails redhat

Tuesday, November 6, 2012

How to upgrade MySQL 5.* to 5.5 in CentOS & RedHat


For RedHat/CentOS 5


## Remi Dependency on CentOS 5 and Red Hat (RHEL) 5 ##
rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm

## CentOS 5 and Red Hat (RHEL) 5 ##
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm


For RedHat/CentOS 6

## Remi Dependency on CentOS 6 and Red Hat (RHEL) 6 ##
rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-7.noarch.rpm

## CentOS 6 and Red Hat (RHEL) 6 ##
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm


Enable Repository
yum --enablerepo=remi,remi-test list mysql mysql-server

Install/Update
yum --enablerepo=remi,remi-test install mysql mysql-server
upgrade mysql centos,upgrade mysql redhat,upgrade mysql 5.* to 5.5,mysql 5.0 to 5.5 cent os,mysql 5.1 to 5.5 cent os,mysql 5.2 to 5.5 cent os,mysql 5.3 to 5.5 cent os,mysql 5.4 to 5.5 cent os,mysql 5.0 to 5.5 redhat,mysql 5.1 to 5.5 redhat,mysql 5.2 to 5.5 redhat,mysql 5.3 to 5.5 redhat,mysql 5.4 to 5.5 redhat,upgrade mysql in centos,upgrade mysql in redhat

Wednesday, October 31, 2012

Run Script at startup in Linux

Create a script which you want to run at your linux box start up

after creating a script open terminal and type

crontab -e

@reboot /path to /your /script

and save it.


run script at startup,start up scrip in linux,start up script in cent os,start up script in redhat,run script at startup in linux,run script at start up in redhat,run script at start up in cent os

Wednesday, October 24, 2012

use yum over proxy

open yum.conf file in any text editor or in terminal using

vi /etc/yum.conf

Add below line to the file

proxy = http://proxy server ip or hostname:port/

if connecting using login and password use

proxy = http://username:password@proxy server ip or hostname:port/

save and close the file.
yum over proxy,proxy for yum,yum with proxy,yum on proxy,configure yum to use with proxy,configure yum with proxy

Monday, October 22, 2012

Configure Samba Server

opent terminal & create simple linux user using,

adduser username


smbpasswd -a username

after creating the password for that user type below command to enable that samba user,

smbpasswd -e username

now, create the directory which you want to share

now open samba configuration file from /etc/samba/smb.conf

and add the lines as below :

[directory name]

             path = /path /to /directory
             writeable = yes
;            browseable = yes
             valid users = username
             create mask = 0755 or 755

save file and exit

after doing this change the owner of that directory and restart the service of samba.


configure samba server,samba server cent os,samba server redhat,configure samba server of cent os,configure samba server for redhat,samba for redhat,samba for cent os

Friday, October 12, 2012

Install LAMP Server on CentOS

First check httpd service is running or not

           /etc/init.d/httpd status


if its running, its ok else need to start

          /etc/init.d/httpd start


after starting httpd(apache) need to install mysql server

          yum install mysql-server

Now you need to start mysql daemon
         
          /etc/init.d/mysqld start

Now, log in to the mysql using
         
          mysql -u root -p
by default mysql root user doesn't have any password, when it asks for password just press enter and you will be logged in to the database.

if you want to create a password for root user,

UPDATE mysql.user SET Password = PASSWORD('password') WHERE     User = 'username';

FLUSH PRIVILEGES;

after installing mysql-server you need to install php,
for installing php need to download some RPM files which contains additional YUM repository definitions.

 

 (1) wget http://rpms.famillecollet.com/enterprise/remi-release-5.rpm
 (2) wget http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release- 5-4.noarch.rpm

Now, open the file remi.repo
      vi /etc/yum.repos.d/remi.repo

find the enabled option and set it to 1 and save it.

Now run command

yum install php php-cli php-gd php-mysql php-mbstring  php-mysql

now you're  done.

restart the daemon of httpd and check the version of php.

/etc/init.d/httpd restart
php -v or php --version





 



lamp server,lamp on linux,lamp server configuration,configure lamp server,lamp server on cent os,lamp server on redhat,lamp configuration on centos,lamp configuration on redhat