Home
Lemon
Cancel

宝兰德常用命令

登录命令行控制台 ./iastool --passport admin 创建节点 create --node --host 192.168.92.135 --port 1900 --user admin \ --password admin --domainname domain1 node136 创建名为domain1的域 ./iastool create --domain --pas...

MySQL查询主键相关

-- 查询数据库中所有表名和表的主键 select table_name, column_name from information_schema.key_column_usage where constraint_name = 'primary' and table_name in ( select table_name from information_schema.table...

Redis使用redis-cli连接报错:WRONGPASS invalid username-password pair or user is disabled.

报错信息 使用redis-cli连接Redis时报错,具体为认证失败问题WRONGPASS invalid username-password pair or user is disabled.。之前输入auth pass即可,但此次在终端窗口有提示需要username。 报错原因 本机Redis为7.0版本。Redis6.0起,支持ACL权限控制,Redis6.0之前的版本只支持验证密码...

Nginx添加ssl模块

一、在安装时添加ssl模块 1、进入源码包所在的目录,进行编译,编译时添加参数–with-http_stub_status_module --with-http_ssl_module cd /usr/local/nginx-1.20.2 ./configure --with-http_stub_status_module --with-http_ssl_module 2、进行编译与编译安装...

Nginx配置详解

一、main:全局配置 #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; 该部分配置主要影响Nginx全局,上述配...

Nginx正常启动,端口没有被监听

启动nginx服务: /usr/local/nginx/sbin/nginx -c conf/nginx.conf 启动完成也没有报错,ps看进程也正常,netstat发现端口没有被监听,也没有错误日志,找了半天最后才发现,conf/nginx.conf使用的是安装目录下面的Nginx配置,没有使用我们制定的配置,也就是说我们要用绝对路径制定Nginx配置,如下: /usr/local/n...

Redis Desktop Manager使用SSH连接Redis

第一步 第二步 第三步

如何卸载UniAccessAgent并且不影响网络连接

下载360安全卫士文件粉碎机独立版,使用文件粉碎机打开C:\Windows\LVUAAgentInstBaseRoot目录(使用Windows资源管理器打开无法看到目录下的文件),强力删除目录下的UniAccessAgentBrowser.exe、UniAccessAgentDaemon.exe、UniAccessAgentTray.exe这3个文件,UniAccessAgentUI.exe...

JSON转XML工具类

import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import java.util.Iterator; import java.util.Map; import java.util.Set; public clas...

CentOS安装Nginx

1. 下载Nginx安装包 http://nginx.org/download/ 2. 解压Nginx压缩包 tar zxvf nginx-1.23.4.tar.gz 3. 进入Nginx目录下 cd /nginx/nginx-1.23.4 4. 配置安装运行目录 ./configure --prefix=/usr/local/nginx 5. 出现错误需要安装依赖包 yum...