Thursday, December 12, 2013

How to see active network connections to your server or local host

                                                                                 
                                                                           step 1

                    sudo cat /proc/net/ip_conntrack               

                                                                           step 2


                    netstat -n -A inet


                                                                             step 3
   
                     netstat -ano | head

                                                                               step 4


                     ss -n                    

                                                                               step 5


                     sudo netstat -natp 

                                                                             
                                                                                 step 6
                                                                       
 sudo lsof -nPi tcp -F n | awk -F\> '/>/{print$2}'| sort | uniq -c | sort -nr                                  


                                                                                the end

Wednesday, December 11, 2013

How to add a user to the sudoers list working in (ubuntu, debian , cent os )

                                                                    step 1

                     su -                        

                                                                         step 2

                         
                      nano /etc/sudoers              

                                                                                step 3


                      Just under the line root  ALL=(ALL:ALL)   ALL
             
                      add your user name  and type  ALL=(ALL:ALL)  ALL    

                                                                              step 4


                      should look like this  (please use Tab to navigate)

                          Ctrl +x  then type y
               

How to install and use phoronix-test-suite

                                                                            step 1
                    sudo apt-get install phoronix-test-suite
                                                                      
                                                                         
                                                                               step 2
                    press y , y , y.  or n , n , n .

                                                                                step 3
                     phoronix-test-suite detailed-system-info

                                                                               
                                                                               step 4
                     phoronix-test-suite system-sensors


                                                                                step 5

                     phoronix-test-suite diagnostics


                                                                               step 6
                    results

                                                                              step 7


                    phoronix-test-suite interactive

                                                                              step 8

                     choice is yours

                                                                      step 10


                                                               
                                                                          step 11

                   results

                                               

How to use ab or how many requests per second your Apache installation is capable of serving. (update fri Jun 5 2015)

                                                                    step 1

                      ab -n 1000 -c 5 http://www.hackmysql5.com/ 
                      ab -n 1000 -c 5   you need to use your domain name 


                                                                       step 2

                      results      


                                                                            step 3

    http://httpd.apache.org/docs/2.2/programs/ab.html


                                                       Update ubuntu 12.04.5 64 bit
                                                       intel i-5 4570S CPU@2.9GHz x 4
                                                       RAM 8 GiB
                                                       HDD Toshiba MQ01ABD100 1Tb

                                       






                                                              

Tuesday, December 10, 2013

How to install dstat for monitor in real time your server or local host

                                                                             step 1

                    sudo apt-get install dstat                            


                                                                              step 2

                                                                               
                    dstat                                


                                                                             step 3

                                                                 
                      results                                

                                                                          the end.
                                           

How to install nload (for monitoring your network speed on server or local host)

                                                                    step 1

                    sudo apt-get install nload                              


                                                                     step 2

                     nload          
                                                         
                                                                       
                                                                          step 3

                     results
                               

How to set the fully qualified domain name FQDN in ubuntu server 12.04

                                                                    step 1


                    sudo nano /etc/hosts  

                                                                     step 2

                       127.0.1.1    qbic.example.com    qbic       


                                                                   step 3

                     sudo service apache2 restart

                                                                   step 4

                     
                     hostname --fqdn          or           hostname -f  


                                                                              step 5

                     results       
                       
                                               

How to install rkhunter and check for rootkit on ( web server or local host )

                                                                             step 1
                    sudo apt-get install rkhunter


                                                                               step 2

                     usual settings  for (your mail server) postfix   is   Internet Site
                                                               


                                                                             step 3
                      depends on your local network or FQDN  (hostname -f) ,cat /etc/hosts
                                (127.0.1.1  yourhostname.example.com  yourhostname)=FQDN


                                                                            step 4

                     sudo rkhunter –-update


                                                                         step 5

                                                                     
                                                                       
                                                                      step 6
                                                                         
                    sudo rkhunter --check            


                                                                     step 7
                                                                       


                                                                           step 8
                                                                               
                     press ENTER to continue                


                                                                         step 9
                                                                           
                    keep pressing Enter to continue    
                                                                           
                                                                      step 10

                                                                         


                                                                        step 11

                     sudo nano/var/log/rkhunter.log                      


                                                                           step 12
                                 
                                                                             
                                                                            step 13

                                                                           


                                                                       step 14

                   suspect file : 1  /usr/bin/unhide.rb              

                                                                       step 15
                                                                       
                     sudo nano /usr/bin/unhide.rb                            
                                                                       
                                                                             step 16

                                                                             

                                                                           
                                                                           step 17

                                                                               
                                                                               

                                nothing wrong with this fail  

                                  Server is OK.
                                                       

                                it took 14 minutes of time


wordpress problem with plugin updates

                                                           changing permissions will solve the problem                                    ...