How to run redis server on a different port than default port 6379 in ubuntu
I used the following steps to install redis
- sudo add-apt-repository ppa: rwky / redis
- Sudo apt-get update
- sudo apt-get -y install redis-server
I installed, but I do not know how to start the redis server on a different port than the default port 6379
Tell me how to change the default port to another port?
source share