標籤:

Redis 設置密碼登錄和刪除挖礦進程

修改redis.conf

RT,打開redis.conf文件,搜索requirepass關鍵字,如下圖:

關註標記的那一行,#requirepass foobared。設置密碼的方法就是去掉注釋的#,把foobared替換成自己的密碼即可,例如將密碼設置為123456:

修改完成後重啟redis,再次通過redis客戶端redis-cli登錄並操作可以發現會報一個身份認證錯誤:

這就說明我們已經成功的設置了密碼,所以通過客戶端連接的話必須加上密碼參數才能正常連接:

如上圖所示,加了-a參數之後即可正常連接並操作redis。

jedis設置密碼

當我們用Java客戶端連接redis時會遇到同樣的問題,下面看一段簡單的jedis連接redis的測試代碼:

package com.firstelite.test;import org.junit.Test;import redis.clients.jedis.Jedis;public class Test4Jedis { @Test public void testTwo() { Jedis jedis = new Jedis("192.168.145.10"); System.out.println("Connection to server sucessfully"); // 查看服務是否運行 System.out.println("Server is running: " + jedis.ping()); }}

非常簡單,僅僅是測試一下Jedis是否連通redis伺服器,運行junit後我們發現報異常了:

redis.clients.jedis.exceptions.JedisDataException: NOAUTH Authentication required. at redis.clients.jedis.Protocol.processError(Protocol.java:117) at redis.clients.jedis.Protocol.process(Protocol.java:142) at redis.clients.jedis.Protocol.read(Protocol.java:196) at redis.clients.jedis.Connection.readProtocolWithCheckingBroken(Connection.java:288) at redis.clients.jedis.Connection.getStatusCodeReply(Connection.java:187) at redis.clients.jedis.BinaryJedis.ping(BinaryJedis.java:109) at com.firstelite.test.Test4Jedis.testTwo(Test4Jedis.java:15) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20) at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4ClassRunner.java:79) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:71) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:49) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) at org.junit.runners.ParentRunner.run(ParentRunner.java:236) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

顯而易見,由於我們設置了密碼但在這裡又沒有指定密碼,所以報了和剛才相同的錯誤,那麼如何指定密碼呢?很簡單,Jedis的父類BinaryJedis提供了這樣一樣方法:

public String auth(final String password) { checkIsInMulti(); client.auth(password); return client.getStatusCodeReply(); }

所以在創建了Jedis的實例後再加上一行jedis.auth("123456"); 即可,最後看一下運行結果:

spring-data-redis設置密碼

通常情況下在實際的java項目中我們會選擇Spring提供的spring-data-redis來操作redis,spring的封裝可以給我們提供

很多便捷之處。那麼spring-data-redis又是如何設置密碼的呢?首先定義一個redis.properties配置文件,定義一組

redis屬性供spring載入使用,其中就包含密碼(redis.password):

# Redis settings redis.host=192.168.145.10 redis.port=6379 redis.password=123456redis.timeout=100000 redis.maxTotal=300 redis.maxIdle=100 redis.maxWaitMillis=1000 redis.testOnBorrow=true

然後在由Spring封裝的JedisConnectionFactory中來設置密碼屬性即可,下面是完整redis配置:

<!-- redis配置 --><bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig"> <property name="maxIdle" value="${redis.maxIdle}" /> <property name="maxWaitMillis" value="${redis.maxWaitMillis}" /> <property name="testOnBorrow" value="${redis.testOnBorrow}" /></bean><bean id="jedisPool" class="redis.clients.jedis.JedisPool"> <constructor-arg index="0" ref="poolConfig"/> <constructor-arg index="1" value="${redis.host}"/> <constructor-arg index="2" value="${redis.port}" type="int"/> <constructor-arg index="3" value="${redis.timeout}" type="int"/> <constructor-arg index="4" value="${redis.pass}"/> </bean> <bean id="connectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory" p:host-name="${redis.host}" p:port="${redis.port}" p:password="${redis.password}" p:pool-config-ref="poolConfig" /><bean id="redisTemplate" class="org.springframework.data.redis.core.StringRedisTemplate"> <property name="connectionFactory" ref="connectionFactory" /></bean>

挖礦進程刪除

1.top 看到佔了97%cpu的進程,找到pid

2.kill -9 pid

3.ps -ef |grep pid ,找到這個進程的文件路徑

4.進入路徑 rm -rf 文件

5.vim redis.conf 把bind 0.0.0.0 改為 127.0.0.1 ,只能本機訪問

6.自定義用戶禁止ROOT登陸ssh,見另一遍文章


推薦閱讀:

redis之父的博客翻譯-Redis中的LRU演算法改進
Redis服務支持5000萬的QPS,有什麼好的思路?
jedispool 連 redis
redis的setbit這個bit怎麼理解,配合bitcount使用?
Spring Boot使用Redis進行消息的發布訂閱

TAG:Redis |