用java代码远程连接阿里云服务器上的redis

用java代码远程连接阿里云服务器上的redis

Jedis是redis推荐的java连接开发工具,使用java操作redis中间件。

1.创建一个空项目,并在其中创建一个maven的module

远程连接服务器上的redis时步骤如下:

1.去阿里云平台上去添加安全组,端口设置为6379

2.去用连接远程服务器的xshell工具开启防火墙端口

# 查看firewall服务状态
systemctl status firewalld

# 开启、重启、关闭、firewalld.service服务
# 开启
service firewalld start
# 重启
service firewalld restart
# 查看防火墙规则
firewall-cmd --list-ports  # 只看端口信息

# 开启端口
开端口命令:firewall-cmd --zone=public --add-port=6379/tcp --permanent
重启防火墙:systemctl restart firewalld.service

3.找到redis.conf文件的位置进去修改保护模式为no

protected-mode no #redis.conf里的保护模式改为no
#bind 127.0.0.1 -::1 #注释掉这个bin

4.重启服务器

[root@fanliangguan /]# reboot #重启命令
Connection closing...Socket close.

Connection closed by foreign host.

Disconnected from remote host(fan) at 10:23:13.

5.重新连接服务器,启动redis服务.这样再去启动java代码就可以看到连接成功了

[root@fanliangguan ~]# cd /usr/local/bin
[root@fanliangguan bin]# redis-server redisconfig/redis.conf #重启redis服务
[root@fanliangguan bin]# 

2.添加对应依赖

   <dependencies>
        <!-- 导入jedis包-->
        <dependency>
            <groupId>redis.clients</groupId>
            <artifactId>jedis</artifactId>
            <version>5.1.0</version>
        </dependency>

        <!-- 导入fastjson的包-->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>2.0.25</version>
        </dependency>

3.编码测试:

public class TestPing {

    public static void main(String[] args) {
        Jedis jedis = null;
        try {
            jedis = new Jedis("服务器端口号", 6379);
            System.out.println("Server is running: " + jedis.ping());
        } catch (Exception e) {
            System.err.println("Failed to connect to Redis server: " + e.getMessage());
        } finally {
            if (jedis != null) {
                jedis.close();  // 释放资源
            }
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值