Monthly Archives: October 2014

redis-commander – how to install on Utuntu 14.04 LTS

How to install it
sudo apt-get install npm
sudo chown -R $USER /usr/local
npm install -g redis-commander
ln -s /usr/bin/nodejs /usr/bin/node
redis-commander

Starting your redis-commander
redis-commander --redis-host 127.0.0.1 --redis-port 32001 -p 8081
How to access via web browser?

http://you-ip:8081

How to protect your redis-commander with a username / password

Add at the end of the redis-commander command –http-u desired-username and –http-p desired-password.

redis-commander --redis-host 127.0.0.1 --redis-port 32001 -p 8081 --http-u desired-username --http-p desired-password
References:

http://blog.biasedwalk.com/2014/02/installing-redis-commander-on-ubuntu.html
https://github.com/joeferner/redis-commander
http://www.reddit.com/r/laravel/comments/2jex9b/introducing_route_annotations_in_laravel_50/

 

Can’t find routes.php in Laravel 5

f*ckzzzzz!
A video on Laracast says that routes.php is inside ./app/Http/.
Can’t find it.
sh*tttzzz!

I’m trying to figure it out and update this post! 🙂

Updates!

OK!, almost 24hours later…
But!, I hadn’t been all this time looking for the solution.

YES!, I’v seen it before and tried but didn’t worked…

I was trying to use Laravel Annotation, but with no success.

OK!, heres the real sh*t.

We can have routes.php on Laravel 5 inside app/Http.

We need to active it on app/Providers/RouteServiceProvider.php, by uncomment require app_path(‘Http/routes.php’);.

You will need to update the “route:list” or what they call…
This is how…

php artisan clear-compiled
php artisan route:scan

and list them on console…

php artisan route:list

Your routes should work now.

More readings

https://laracasts.com/discuss/channels/general-discussion/route-annotation-in-laravel-5
https://laracasts.com/discuss/channels/general-discussion/informal-poll-routes-file
https://laracasts.com/series/laravel-5-from-scratch/

 

How to install Laravel 5 5.0-dev / 4.3

Since we need composer, lets install it.

We have to have installed curl and php-cli on our server.

  • curl
    apt-get install curl
  • php-cli
    apt-get install php5-cli

Lets now install composer.

curl -sS https://getcomposer.org/installer | php

Lets now move composer to /user/local/bin/composer so we can run it anywhere in the system.

mv composer.phar /usr/local/bin/composer

Inside the folder that we want to put Laravel 5, in my case /home/webroot/domain.com/www2/ lets run

/usr/local/bin/composer create-project laravel/laravel www2 dev-develop

Simple and fast.

(…)

Inside the folder, that we installer laravel /home/webroot/domain.com/www2 lets run

php artisan -V

HOORAY! Laravel Framework version 5.0-dev!

 

References

https://getcomposer.org/doc/00-intro.md#installation-nix
http://laravel.com/docs/4.2/installation
https://laracasts.com/series/laravel-5-from-scratch/episodes/2

LogicMonitor – SaS Monitoring Service

 

Setting up the monitoring on all of your devices may seem daunting, but auto-discovery makes it simple. There is no need to know what objects on a device to monitor, or even how to configure them. All you need to know is the hostname or IP address, and Active Discovery does the identification and configuration. Some of the items that it looks for on each device include:

  • Interfaces
  • Volumes
  • Physical disks
  • Temperature sensors
  • Virtual IPs
  • VPN links
  • DSU/CSUs
  • Applications

Continue reading LogicMonitor – SaS Monitoring Service