Home >Backend Development >PHP Tutorial >memcached—How to install, start, and uninstall memcached in Windows operating systems
It’s time to get off work. Today I’ll summarize how to install, start and uninstall memcached in the Windows operating system:
1. Download related software:
Download address: http://download.csdn.net/download/wangshuxuncom/8249501;
2. Unzip the obtained compressed file and you will get a file named " memcached-1.2.6-win32-bin" folder, copy the folder to a location you think is appropriate (such as copying to the root directory of the C drive);
3. Enter the command line mode of Windows through the cmd command and enter Run the following command "cd /d C:memcached-1.2.6-win32-bin" and hit the Enter key to get the following picture:
4. The installation, startup and uninstallation of memcached are introduced in sequence:
Enter “memcached.exe -d install” in step 3, and then click the Enter key, you will get the following picture: "You will see that memcached has been included in the list:
②. Start:
a. In the picture above, we see that the newly installed memcached is not in the starting state. How to start it? Execute "memcached.exe -d start" in the command line window and get the following picture:
b. After executing the above command, refresh the "Service" list and you can see that memcached has been started:
③ Uninstallation:
b. By executing "memcached.exe -d stop in the command line window " will put memcached in a disabled state, as shown below:
c. Execute "memcached.exe -d uninstall" in the command line window to uninstall memcached.
The above introduces memcached-how to install, start and uninstall memcached in Windows operating system, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.