Skip to main content

Posts

Showing posts from 2018

PHP Session Clean

I was getting the following error when trying to browse the icingaweb2 website in the browser Fatal error: Uncaught ErrorException: Uncaught ErrorException: session_name(): Cannot change session name when session is active in /usr/share/php/Icinga/Web/Session/PhpSession.php:97 Stack trace: #0 [internal function]: Icinga\Application\ApplicationBootstrap->Icinga\Application\{closure}(2, 'session_name():...', '/usr/share/php/...', 97, Array) #1 /usr/share/php/Icinga/Web/Session/PhpSession.php(97): session_name('Icingaweb2') #2 /usr/share/php/Icinga/Web/Session/PhpSession.php(152): Icinga\Web\Session\PhpSession->open() #3 /usr/share/php/Icinga/Web/Controller/ActionController.php(540): Icinga\Web\Session\PhpSession->write() #4 /usr/share/php/Icinga/Web/Controller/ActionController.php(490): Icinga\Web\Controller\ActionController->shutdownSession() #5 /usr/share/icingaweb2/library/vendor/Zend/Controller/Action.php(512): Icinga\Web\Controller\ActionCont...

Place tO gO fRom bAngalore

Single Day Trips From Bangalore 1. Lepakshi 2. Manchanbele 3. Siddarabetta 4. Pearl Valley 5. Nandi Hills 6. Madhugiri 7. Turahalli 8. Hessarghatta 9. Area Around Bannerghatta 10. Chikkatirupathi 11. Shivanasamudra and Talakad 12. Savandurga 13. Skandagiri Night Trek 14. Hogenakkal Falls 15. Mekedatu and Chunchi Falls 16. Srirangapatna Weekend Trips from Bangalore 1. Colombo, Sri Lanka 2. Udupi 3. Tadiyandamol Trek 4. Nagalapuram 5. Murudeshwar 6. Kumaraparvatha Trek 7. Ooty and Surroundings 8. Tirupathi 9. Kudremukh 10. Mullayangiri-Bababudangiri 11. Brahmagiri and Iruppu Falls 12. BR Hills, MM Hills, Gopalswamy Betta and Hogenakkal 13. Bandajje 14. Ethina Bhuja 15. Yercaud and Yelagiri 16. Pondicherry and Mahabalipuram 17. Kodachadri 18. Sharavathi Backwaters 19. Belum Caves and Gandikota Extended Weekend Trips From Bangalore 1. Dudhsagar Trek and Goa in Monsoons 2. North Canara 3. Hampi 4. Coorg &Kasargod 5. Munnar, Thekkady ...

Linux Terminal Command

I will leave here some important basic linux terminal command that might be helpful during program installation and uninstallation process in Ubuntu. When you want to know the available version of package name then execute following command apt-cache policy packagename When you want to install the specific version of package name then execute the following command apt install packagename=version When you want to pin the package name not get to update in future then do the following In the following directory, /etc/apt/preferences.d/  Add the following content in the existing file, package : program name pin : version x.x.x* pin-priority : 1000  Note : pin-priority - This will prevent the program from the up-gradation. When you want to know the recently installed package name then execute the following command find /var/lib/dpkg/info/ -name \*.list -mtime -3 | sed 's#.list$##;s#.*/##' This will show the list package name which has ins...

Vazhai – Vizhuppuram Visit Experience sharing 3/4/2018 and 4/4/2018

About Vazhai  : Vazhai is an NGO established in 2004 working on mentoring underprivileged kids from Dharmapuri(Bangalore wing of Vazhai) and Vizhupuram(Chennai wing of Vazhai) districts where due to social and political reasons literacy rate is very low. It was formed by Presidency college graduates under the  guidance of experts like  writer Gnani ( https://en.wikipedia.org/wiki/Gnani_Sankaran ). Vazhai does get some financial aid from The Agaram foundation. Vazhai’s main motive is to raise the children to be  a socially responsible person and to groom them so that he/she gets to lead a dignified life in the society . My initital notion about Vazhai was that it is like a typical educational NGO that would focus on academically training the students and to financially support them. But these do NOT feature as a priority in Vazhai’s agenda. Infact they provide very minimal financial aid to the students. Vazhai works like this : ·     ...

Login as NAGIOS user in Terminal

I have written icinga configuration file for some servers to monitoring it. In that, some custom scripts are running with SSH command to monitor the Server status. Everything goes fine till when did shut down the server and launch the same server ( same hostname ) with different hardware due to Memory problem. Note : Memory problem - Sometimes, We need better RAM and Harddisk to handle the traffic when server started to get more request from the Client.  In this moment, the icinga custom scripts and inbuild scripts that related to the server hostname are started to throw the error message that can't connect to server using SSH : SSH Failed ( Same host name. But different hardware ). Because, My monitor server has Old server SSH Key in Known_Hosts for hostname. But, My monitoring server was trying to connect to New Server with Old server SSH Key from Known_Hosts. To avoid this problem, We need to remove Old Server SSH Key belong with Hostname from Known_Hosts...