Dolen

导航

随笔分类 -  Linux

centos部署kettle定时执行作业(job)
摘要:1.centos进入data-integration文件夹下,给启动文件执行权限,命令如下: chmod +x kitchen.sh 2.执行启动命令 ./kitchen.sh 输出以下信息,说明kettle部署成功 Java HotSpot(TM) 64-Bit Server VM warning 阅读全文

posted @ 2023-07-11 15:51 Dolen 阅读(1179) 评论(0) 推荐(0)

vm 解决centOS每次重启后/mnt/hgfs都要重新挂载
摘要:解决centOS每次重启后/mnt/hgfs都要重新挂载 记录下,可用: https://blog.csdn.net/m0_72739300/article/details/130447295 阅读全文

posted @ 2023-07-11 11:17 Dolen 阅读(147) 评论(0) 推荐(0)

cenos7安装mysql报错:The GPG keys listed for the "MySQL 8.0 Community Server"
摘要:rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022 执行以上语句后,重新执行安装语句即可。 yum install mysql-community-server 阅读全文

posted @ 2023-07-04 16:00 Dolen 阅读(60) 评论(0) 推荐(0)

linux 文件名乱码的文件无法删除
摘要:1、通过ls -i命令获得文件的节点号 2、通过节点号删除 find -inum 节点号 -delete 这样就可以删除文件名乱码的文件 阅读全文

posted @ 2022-06-16 09:49 Dolen 阅读(381) 评论(0) 推荐(0)

linux安装nodejs
摘要:1.下载node.js cd /usr/local/soft wget https://nodejs.org/dist/v12.18.1/node-v12.18.1-linux-x64.tar.xz tar xf node-v12.18.1-linux-x64.tar.xz mv node-v12. 阅读全文

posted @ 2021-12-15 17:49 Dolen 阅读(49) 评论(0) 推荐(0)

linux 运行.sh出现 Permission denied
摘要:执行.sh脚本时提示如下错误: [root@Dolen2021 redis]# ./startRedis.sh -bash: ./startRedis.sh: Permission denied [root@Dolen2021 redis]# chmod +x startRedis.sh [root 阅读全文

posted @ 2021-12-06 18:14 Dolen 阅读(723) 评论(0) 推荐(0)

阿里云搭建redis集群
摘要:1、安装redis # 下载redis包 wget http://download.redis.io/releases/redis-5.0.5.tar.gz tar -zxvf redis-5.0.5 # 开始编译 make make test 通过上面执行完毕之后,在src目录下,会生成常见的操作 阅读全文

posted @ 2021-12-01 23:45 Dolen 阅读(467) 评论(0) 推荐(0)

linux firewall (marker)
摘要:查看防火墙是否开启systemctl status firewalld 若没有开启则是开启状态systemctl start firewalld 关闭则start改为stop 查看所有开启的端口firewall-cmd --list-ports 注:启动防火墙后,默认没有开启任何端口,需要手动开启端 阅读全文

posted @ 2021-11-24 21:42 Dolen 阅读(55) 评论(0) 推荐(0)

linux安装mysql数据库
摘要:linux安装mysql 阅读全文

posted @ 2021-11-07 22:49 Dolen 阅读(81) 评论(0) 推荐(0)

Centos 7下安装nginx,使用yum install nginx,提示没有可用的软件包
摘要:先安装:yum -y install epel-release 再安装:yum -y install nginx 阅读全文

posted @ 2020-03-12 22:18 Dolen 阅读(289) 评论(0) 推荐(0)

centos7 nginx 域名能ping通,但无法打开网页
摘要:方法一:关闭防火墙 方法二:容许80端口访问 vim打开iptables, 命令如下: 增加 重新启动防火墙 阅读全文

posted @ 2019-11-15 08:53 Dolen 阅读(1542) 评论(0) 推荐(0)

CentOS7 No rule to make target
摘要:由于缺少依赖包,需要安装以下包: 阅读全文

posted @ 2019-11-11 10:43 Dolen 阅读(1172) 评论(1) 推荐(0)

centos7 netstat command not found
摘要:只需要执行: 就ok。 阅读全文

posted @ 2019-11-11 10:36 Dolen 阅读(624) 评论(0) 推荐(0)

centos7 ./configure --prefix error checking for C compiler
摘要:解决方法: 输入以下命令 阅读全文

posted @ 2019-11-11 09:25 Dolen 阅读(478) 评论(0) 推荐(0)

centos7 yum error yum doesn't have enough cached data
摘要:1、vi /etc/resolv.conf,添加下面一行 修改完成后service network restart进行重启,试一下yum update命令,如果不成功,进行下一步配置。 2、cd /etc/yum.repos.d ,编辑vi CentOS-Base.repo,注释mirrorlist 阅读全文

posted @ 2019-11-10 21:07 Dolen 阅读(1147) 评论(0) 推荐(0)