Redis admin UI (redis web interface management tool)

Source: Internet
Author: User

URL: http://www.servicestack.net/RedisAdminUI/AjaxClient/

: Http://download.csdn.net/detail/huangchao1010/5818211

After downloading the package, you can install IIS in an English Window. in Linux, I use mono + Apche + redis to install mono, which requires many dependent packages, the following is a reprinted message. I have time to update it. Install mono in Linux + mono + Asp.net 05centos

The most critical step is coming!

Prerequisites FAQs A. xshell: Chinese garbled characters

[File]-> [open]-> In the Open Session select the connection that, click [properties]-> [terminal], encoding: Unicode (UTF-8 ), connect to the server again.

B. httpd startup Problems

Httpd: apr_sockaddr_info_get () failed

Solution:

[Root @ Linux bin] # vi/Server/Apache/CONF/httpd. conf

Modify servername www.example.com: 80 to servername localhost: 80

1. install necessary component libraries through the network in centos

Yum-y installBison pkgconfig glib2-devel gettext make libpng-devel libjpeg-devel LibTIFF-devel libexif-devel giflib-devel libX11-devel FreeType-devel fontconfig-devel Cairo-devel LibTIFF-devel libjpeg-devel
Giflib-devel libpng-devel libx11 libX11-devel FreeType-devel fontconfig-devel libexif-devel libxft-devel ghostscript-devel gnome-doc-utils unzip

1.1 start checking the image site: pai.neu.edu.cn and get the latest

Note: There are some confirmation prompts in the middle. Enter y to continue.

 

Completed:

 

2. Upload the installation package

2.1 create/usr/Software Directory

Use the mkdir command

 

Upload the installation package to/usr/software using xftp

 

3. Install apache3.1 and decompress httpd

Tar command

After decompression, a folder is added to/usr/software:

 

3.2 httpd requires support for APR, APR-util, and PCRE.

3.2.1 decompress the APR and APR-util packages,Use the tar command(Suffix: tar.bz2)

Decompress the PCRE package,Use the unzip command(Suffix .zip)

 

After decompression:

 

3.3 install PCRE (Regular Expression support Library)

3.3.1 Go To The PCRE folder and view the content. A configure script file is displayed.

 

3.3.2 use this script for pre-compilation. The installation directory is/usr/local/PCRE.

 

3.3.3 compile

 

3.3.4 installation. A file is created in the target path.

 

3.4 APR and APR-util mobile

3.4.1 folder name change

Apr-1.4.6 change-> APR command: MV apr-1.4.6/APR

Apr-util-1.5.2 change-> Apr-util command: MV apr-util-1.5.2 Apr-util

3.4.2 move a folder

Move APR and APR-util to/usr/software/httpd-2.4.4/srclib

 

Note: you do not need to configure, compile, and install the two packages. It will be directly used by httpd later.

3.5 install Apache (httpd module)

3.5.1 in/usr/software/httpd-2.4.4

 

Check the content and find a configure script

 

3.5.2 pre-compile, specify the directory to:/usr/local/Apache

 

Error:

 

This is because no PCRE path is specified.

Re-compile and specify the PCRE path

 

3.5.3 compile and install (multiple commands can be entered together and executed in sequence)

 

3.6 configure the apache service

Go to the installation directory and view an apachectl script in the bin directory.

This script provides a simple command to control the Apche service.

3.6.1 start the service Apache

 

Error: the error message indicates that an error occurred during service listening. The domain name (or IP address) is required)

 

Solution: Go to the Apache configuration file and specify an IP address.

The configuration file of the Apache service is the httpd. conf file in/etc/httpd/CONF /.

 

* 1. Use VI (editor) to open

 

* 2. Search servername (case sensitive)

* 3. Press SHIFT +: to bring up the VI command box. A colon appears in the lower left corner of the interface, and the cursor is waiting for input.

 

* 4. input? Servername, press ENTER

 

* 5. Find the place found in VI. Note that the yellow box is the place we want to modify.276 rows

 

* 6. Press the Insert key to enter the editing mode. A -- insert -- text will appear in the lower left corner.

 

* 7. Use the direction keys to adjust the cursor position to the yellow box and change the entire line:

Note: remove the previous!

* 8 exit the editing status: Press ESC.

* 9 SHIFT +: Call out the VI command box, enter WQ, and press enter to save and exit.

Run the startup service again. OK!

 

3.6.2 Test Service

The DocumentRoot in the/etc/httpd. conf file shows that the website root directory is "/var/www/html"

Add an HTML file under the/var/www/html directory.

* 10.1 go to the/var/www/html directory.

 

* 10.2 use VI to create an empty document and press insert to enter the editing mode

 

* 10.3 save and exit

 

View the 1.html file in the folder.

 

* 10.4 when this file is downloaded to the current directory through wget to httpd, 1.html is applied for itself, so a. 1 is automatically added to the downloaded file name.

 

If the download is successful, the apache service is successfully installed!

3.6.3 configure boot

Use the service management tool ntsysv to manage httpd

* 1. Run the apachectl script in the bin/directory of the httpd installation directory,

Copy to the/etc/rc. d/init. d/directory and name it Apache

* 2. Use VI to edit the copied Apache script

 

In #! Add two lines of characters to/bin/sh, And the ESC end editing status. Exit and save SHIFT +: Press enter again.

 

* 3. register the apache service

 

* 4. Start the apache service

 

4. Install libgdiplus

4.0 go to the/usr/Software Directory and view the libgdiplus package

4.1 decompress

Tar-jvxf libgdiplus-2.10.tar.bz2

 

After decompression, a green folder is added to software. After opening the folder, A configure file is displayed,

This file is actually a script file for configuration processing before installation, and sets parameters before compilation and installation.

 

 

4.2 perform preprocessing and set the installation directory for the libgdiplus-2.10 Software

4.3 install

Make & make install

Error:

 

Install the missing package online: Yum installGlib2-devel LibTIFF-devel libjpeg-devel giflib-devel libpng-devel libx11 libX11-devel FreeType-devel fontconfig-devel libexif exlibif-devel
Run make & make install again.

5. Install mono

5.1 decompress

After decompression, go to the mono directory and see the configure pre-compiled script.

 

5.2 pre-compile and set the installation directory to/usr/local/mono

 

5.3 compile and install (time-consuming)

 

* 5.4 configure Environment Variables

A. Modify the profile script of the/etc directory

 

Add the last two rows, exit, and save.

 

B. The setting takes effect: Source/etc/profile

 

C. View mono version information: mono-V

 

6. Install xsp

6.1 return to the/usr/Software Directory

Note: This zip package is

6.2decompress xsp-master.zip

 

6.3 go to the decompressed directory to configure compilation and installation. Note that the configuration script here is autogen. Sh.

 

6.3.1 you need to specify temporary environment variables to inform the mono path of the xsp local machine to be installed

Export pkg_config_path =/Usr/local/mono/Lib/pkgconfig: $ pkg_config_path

 

6.3.2 execute pre-compilation (configuration) and set the installation directory to the same mono directory

6.3.3 compilation and Installation

Make & make install

6.3.4 test the startup of a temporary Asp.net Server

* A. Enter xsp4

 

Start a temporary Asp.net Server

 

* B. If you use the wget command for a request, Error 404 is returned. OK!

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.