• Home
  • Download
  • Links
  • Photoplog
  • Blowfish Secret
  • Base64
  • Wordpress Salt
  • Contact
  • ROM
  • Skins
  • VIP
  • Tutorial
Wckediden - Mobile Tricks and Tweaks Community  

Go Back   Wckediden - Mobile Tricks and Tweaks Community > Community Software > Webmaster Software (Windows System Only 64bit) > Other Server Software
Reload this Page [RELEASE] Installing Redis-x64 on Windows and Running Redis Server
Wckediden
Register Forum Rules FAQ Members List Social Groups Search Today's Posts Mark Forums Read

Notices
Under Construction

WckedIDen Forum Renovations

WckedIDen is currently undergoing forum structure renovations. During this process, you may experience intermittent errors, unavailable pages, or temporary service interruptions.

Please be patient while we work to improve the forum. We appreciate your understanding and continued support.


Community Links
Social Groups
Pictures & Albums
Members List
Meet Our Staff
Search Forums
 
Tag Search
Advanced Search
Search Downloads
Advanced Search
Search Links
Advanced Search
Find All Thanked Posts



Post New ThreadReply
 
Thread Tools Search this Thread
  #1  
Old 07-13-2024, 01:48 AM
wcked's Avatar
wcked wcked is offline   Thread Starter  
Supporter/Designer
Mobile Model: Google Pixel 10 Pro
Mobile Carrier: Metro PCS
Mobile OS: Android

  usa
 
Join Date: November 8th, 2005
Location: North Philadelphia
Posts: 10,398
Downloads: 18
Uploads: 181
wcked has disabled reputation


View wcked's Profile   Edit Options Edit Profile Picture View wcked's Photo Album Add wcked's to Your Contacts Show Groups Edit Avatar Subscribed Threads Private Messages
Default Installing Redis-x64 on Windows and Running Redis Server

​

In this tutorial I am explaining how to install the Redis server as a local server to your Windows machine. Here this is a full article about Installing and Running in very simple steps. Download Redis


You can download a moderately out-of-date precompiled version of Redis for 64-bit Windows from this GitHub page: https://github.com/MicrosoftArchive/redis/releases/download/win-3.0.504/Redis-x64-3.0.504.msi

By clicking this link you will get a .msi file which is a Windows installer. Now go to your Downloads folder and find this file.
[IMG]https://miro.medium.com/v2/resize:fit:700/1*eC7MiR9P3lYzdQbefMMESQ.png[/IMG]

Now click on that file and install Redis. Install Redis Server


First, You need to run this file. Click the Run button.

https://miro.medium.com/v2/resize:fi...iK7EJz-kkw.png
Then Click Next,

https://miro.medium.com/v2/resize:fi...TJ5X7QQliw.png
Accept the terms in the License Agreement and Click Next,

https://miro.medium.com/v2/resize:fi...UdNQhhS5sA.png
Now Make sure to tick the †œAdd the Redis installation folder to the PATH environment variableââ‚ ‚¬Ã‚. And click

Next,
https://miro.medium.com/v2/resize:fi...4gZX1R7Nwg.png

Now it will give you a default port to the server, Just Click Next(If you want to change the default running port, you can change it here),

https://miro.medium.com/v2/resize:fi...HKBkEPZz4Q.png

Now the system will ask to set the memory limit for the Redis server(default 100MB given). You can just change the memory limit if you want and click Next Button,

https://miro.medium.com/v2/resize:fi...445pXhboKw.png

Now continue the installation process. Click the Install button,

[IMG]https://miro.medium.com/v2/resize:fi...hBJRndAdMg.png

After all click the Finish button to finish installation process.

https://miro.medium.com/v2/resize:fi...HmqELrFO0g.png

Congratulations!. You have almost installed the Redis server. Now letââ‚ ¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚¢s talk about How to Run the Redis server.

Run Redis Server


Step 1

Now open up the Windows Services console and start the Redis service. For the first time you can see it is running.

https://miro.medium.com/v2/resize:fi...3vtEEyaMOQ.png

Step 2

If you want to run the Redis server from the terminal use this way.

Redis Server should have installed to C:\Program Files\Redis. There youââ‚ ¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚¢ll find a .exe file called redis-server.

https://miro.medium.com/v2/resize:fi...ogeWbx6wgA.png

Now open a command line and enter this command, You can see Redis server running in the standalone mood with this User Interface.
redis-server

https://miro.medium.com/v2/resize:fi...dD7Gic081g.png

Your Redis server started to run.

Now you can monitor the updates and changes in the Redis server by this command.
redis-cli monitor

https://miro.medium.com/v2/resize:fi...zK3O4i6S9A.png

These are the basic steps to install and run your Redis server locally in your machine. I hope you will get an idea about how to run Redis Server.
Attached Files

You can't view or download attachments from this post before you thank it.Click Here for more information.


Reply With Quote
wcked
View Public Profile
Visit wcked's homepage!
Find all posts by wcked
  #2  
Old 07-13-2024, 01:50 AM
wcked's Avatar
wcked wcked is offline   Thread Starter  
Supporter/Designer
Mobile Model: Google Pixel 10 Pro
Mobile Carrier: Metro PCS
Mobile OS: Android

  usa
 
Join Date: November 8th, 2005
Location: North Philadelphia
Posts: 10,398
Downloads: 18
Uploads: 181
wcked has disabled reputation


View wcked's Profile   Edit Options Edit Profile Picture View wcked's Photo Album Add wcked's to Your Contacts Show Groups Edit Avatar Subscribed Threads Private Messages
Default Re: Installing Redis-x64 on Windows and Running Redis Server

I use redis

[1]. Yes, it is not the latest version, but it works fine. For php I use x64 Thread safe 7.3
[2] with the redis 4.2 driver
[3] I also changed the session handler from files to redis

Code

[Session]
; Handler used to store/retrieve data.
; http://php.net/session.save-handler
session.save_handler = redis
session.save_path = "tcp://127.0.0.1:6379"

extension=igbinary
extension=redis

session.save_handler = redis
session.save_path = "tcp://127.0.0.1:6379"

[1] https://github.com/microsoftarchive/...64-3.0.504.msi

[2] https://windows.php.net/downloads/re...2-VC15-x64.zip

[3] https://windows.php.net/downloads/pe...s-vc15-x64.zip
Attached Files
File Type: zip php_redis-4.2.0-7.3-nts-vc15-x64.zip (548.8 KB, 12 views)
File Type: zip php_redis-4.2.0-7.3-nts-vc15-x86.zip (528.3 KB, 10 views)
File Type: zip php_redis-4.2.0-7.3-ts-vc15-x64.zip (549.0 KB, 12 views)
File Type: zip php_redis-4.2.0-7.3-ts-vc15-x86.zip (528.8 KB, 15 views)
File Type: zip php-devel-pack-7.3.9-nts-Win32-VC15-x64.zip (1.24 MB, 13 views)
File Type: zip php-devel-pack-7.3.9-Win32-VC15-x64.zip (1.25 MB, 10 views)
File Type: msi Redis-x64-3.0.504.msi (6.42 MB, 10 views)


Reply With Quote
wcked
View Public Profile
Visit wcked's homepage!
Find all posts by wcked
Post New ThreadReply

« Previous Thread | Next Thread »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Show Printable Version Show Printable Version
Email this Page Email this Page
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Rules

Similar Threads
Thread Thread Starter Forum Replies Last Post
[ANNOUNCEMENT] Schedule Maintenance and Installing New Server OS wcked Bulletin News 11 02-17-2009 10:46 PM


All times are GMT -4. The time now is 04:42 AM.

Wckediden Community - Archive - Privacy Statement - Terms of Service - Top


Powered by vBulletin® Version 3.8.14
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Template-Modifications by TMS
POWERED BY PHILLYFINESTSERVERSTAT FOR WCKEDIDEN|- NEXTELELITE| - PPCTHEME| - IDENINSIDER