Redis: Desktop UI

Download

#git clone https://github.com/uglide/RedisDesktopManager.git
or from

http://redisdesktop.com/download

#sudo dpkg -i redis-desktop-manager_0.7.6.8_amd64_ubuntu.deb

#/usr/share/redis-desktop-manager/bin/rdm

=============

RedisAdminUI

download from https://github.com/ServiceStack/ServiceStack.RedisWebServices/downloads

 modify Web.config

扫描二维码关注公众号,回复: 607265 查看本文章

===========

http://www.howtoforge.com/installing-apache2-with-php5-and-mysql-support-on-ubuntu-12.04-lts-lamp

prepare

sudo apt-get install php5-dev

but faild. maully download from https://launchpad.net/ubuntu/+source/php5/5.4.9-4ubuntu2/+build/4361243

 #sudo dpkg -i php5-dev_5.4.9-4ubuntu2_amd64.deb

wget --no-check-certificate http://github.com/owlient/phpredis/tarball/master -O phpredis.tar.gz

tar zxvf phpredis.tar.gz

cd owlient-phpredis-90ecd17

phpize

./configure

make

make install

Installing shared extensions:     /usr/lib/php5/20100525/
modify /etc/php5/embed/php.in

extension_dir = "/usr/lib/php5/20100525/"
extension=redis.so

phpRedisAdmin

git clone https://github.com/ErikDubbelboer/phpRedisAdmin.git
cd phpRedisAdmin
git clone https://github.com/nrk/predis.git vendor

or

  1. git clone https://github.com/ErikDubbelboer/phpRedisAdmin.git 
  2. cd phpRedisAdmin 
  3. git submodule init 
  4. git submodule update 
  5. mv  phpRedisAdmin/ /home/zhaohj/apache2/htdocs

Install apache

download from http://httpd.apache.org/download.cgi#apache24

#gzip -d httpd-NN.tar.gz

#tar xvf httpd-NN.tar
#cd httpd-NN

#./configure --prefix=/home/zhaohj/apache2  --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/  --with-pcre=/usr/local/pcre

#make

#make install

#apachectl -k start -f /home/zhaohj/apache2/conf/httpd.conf

Install related packages

 
  • wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz  
  • wget http://archive.apache.org/dist/apr/apr-util-1.3.12.tar.gz  
  • wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.10/pcre-8.10.zip  

  a:解决apr not found问题>>>>>>

 
  • [root@xt test]# tar -zxf apr-1.4.5.tar.gz  
  • [root@xt test]# cd  apr-1.4.5  
  • [root@xt apr-1.4.5]# ./configure --prefix=/usr/local/apr  
  • [root@xt apr-1.4.5]# make && make install  

  b:解决APR-util not found问题>>>>

  1. [root@xt test]# tar -zxf apr-util-1.3.12.tar.gz  
  2. [root@xt test]# cd apr-util-1.3.12  
  3. [root@xt apr-util-1.3.12]# ./configure --prefix=/usr/local/apr-util -with- apr=/usr/local/apr/bin/apr-1-config  
  4. [root@xt apr-util-1.3.12]# make && make install

c:解决pcre问题>>>>>>>>>

  1. [root@xt test]#unzip -o pcre-8.10.zip  
  2. [root@xt test]#cd pcre-8.10  
  3. [root@xt pcre-8.10]#./configure --prefix=/usr/local/pcre  
  4. [root@xt pcre-8.10]#make && make install

4.最后编译Apache时加上:

--with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/  --with-pcre=/usr/local/pcre

成功编译完成~

http://wktdhe.blog.51cto.com/4764978/1144514

 http://httpd.apache.org/docs/current/install.html

http://xtony.blog.51cto.com/3964396/836508

=================

References

https://github.com/uglide/RedisDesktopManager

=================================================================================

mongo ui

Install Fang of Mongo

https://github.com/Fiedzia/Fang-of-Mongo

#git clone http://github.com/Fiedzia/Fang-of-Mongo.git

#cd Fang-of-Mongo/fangofmongo

#python ./manage.py runserver

http://localhost:8000/fangofmongo/

Error:



 

solution:

http://stackoverflow.com/questions/8020851/error-on-running-django-based-mongodb-web-admin

find the local timezone by

#cat /etc/timezone

Asia/Chongqing

modify settings.py

 TIME_ZONE = 'Warsaw/Poland'
to

TIME_ZONE = 'Asia/Chongqing'

Error:




when i modify pom/views.py according to https://github.com/Fiedzia/Fang-of-Mongo/issues/17

#from pymongo import json_util

from pymongo import bson.json_util
there is another error

https://github.com/Fiedzia/Fang-of-Mongo/issues/21

https://github.com/martinkou/bson/issues/19

http://stackoverflow.com/questions/15940220/error-importing-pymongo-in-my-django-app

#sudo pip install json_utils

#sudo pip install bson

list all installed packages and its version

#pip freeze

Solution:

#sudo aptitude install python-setuptools mongodb python-django python-pymongo

I tired the above suggestions but faild. I quit.

========

robomongo

download from http://robomongo.org/

#sudo dpkg -i robomongo-0.8.4-x86_64.deb

#robomongo

http://docs.mongodb.org/ecosystem/tools/administration-interfaces/

==========================================================================

direction

http://event.liepin.com/1406020515932/?mscid=3_kr_001

猜你喜欢

转载自ylzhj02.iteye.com/blog/2100116
今日推荐