摘要:
win系统开机时间慢的解决方法 可连接互联网的解决方法:确认windows time服务已经开启,查看命令service w32time w32tm /config /manualpeerlist:ntp.aliyun.com /syncfromflags:manual /reliable:yes
阅读全文
posted @ 2021-01-20 09:05
jun-x
阅读(145)
推荐(0)
摘要:
#!/bin/sh # # mysqld This shell script takes care of starting and stopping # the MySQL subsystem (mysqld). # # chkconfig: - 64 36 # description: MySQL
阅读全文
posted @ 2021-01-07 14:18
jun-x
阅读(121)
推荐(0)
摘要:
Downloading from nexus: http://192.168.70.132:8081/repository/maven-public/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom[
阅读全文
posted @ 2020-06-21 17:47
jun-x
阅读(1824)
推荐(0)
摘要:
Hadoop部署流程:安装SSH->设置无密码访问->安装Java->添加JAVA_HOME环境变量->安装Hadoop->修改core-site.xml 和hdfs-site.xml配置文件->格式化NameNode->开启NameNode和DataNode守护进程 安装hadoop的依赖环境 U
阅读全文
posted @ 2020-05-14 22:16
jun-x
阅读(401)
推荐(0)
摘要:
由于要离线升级服务器中zlib版本,但rpm安装时会提示版本冲突,于是rpm -e --nodeps zlib强制将zlib, 然而再执行rpm安装zlib-1.2.7-18.el7.x86_64时提示了错误: rpm:error while loading shared libraries: li
阅读全文
posted @ 2020-04-25 22:49
jun-x
阅读(3089)
推荐(0)
摘要:
控制台端代码: # author:jun-x import tkinter as tk from socket import * from threading import Thread import openpyxl # 创建窗口 window = tk.Tk() window.title('28
阅读全文
posted @ 2020-02-19 10:30
jun-x
阅读(423)
推荐(0)
摘要:
ubuntu server 18.04 忘了密码时,开机时按ESC进入grub界面,选Advanced options for Ubuntu -> Ubuntu (recovery mode)-> root ,输入passwd root 重设root用户密码。 ubnutu 安装软件时可以用Ctrl
阅读全文
posted @ 2019-12-15 20:20
jun-x
阅读(238)
推荐(0)
摘要:
1 ######Nginx配置文件nginx.conf中文详解##### 2 3 #定义Nginx运行的用户和用户组 4 user www www; 5 6 #nginx进程数,建议设置为等于CPU总核心数。 7 worker_processes 8; 8 9 #全局错误日志定义类型,[ debug
阅读全文
posted @ 2019-12-09 10:29
jun-x
阅读(379)
推荐(0)
摘要:
SSH服务运行状态: systemctl status sshd SSH的端口设置: /etc/ssh/ssh_config Port 22 监听端口: /etc/ssh/sshd_config Port 22 远程root用户登陆: /etc/ssh/sshd_config PermitRootL
阅读全文
posted @ 2019-12-03 15:32
jun-x
阅读(3648)
推荐(0)
摘要:
import zipfile import optparse, datetime, os from threading import Thread global i, ab i = 0 #记录测试次数 ab = '1234567890qwertyuioplkjhgfdsazxcvbnmQWERTYU
阅读全文
posted @ 2019-11-26 18:10
jun-x
阅读(1236)
推荐(0)