Johnny21 Johnny21
3年前
MySQL 8.0 创建 user 及允许远程连接
进入mysql命令行模式mysqlh127.0.0.1urootp查看当前mysql版本selectversion();查看当前mysql用户列表信息selecthost,user,authentication_string,pluginfromuser;执行完上面的命令后会显示一个表格查看表格
皕杰报表(关于怎么查看是哪个版本)
皕杰报表要求设计器与服务器版本配套,如何查看设计器和服务器的版本呢?查看设计器版本只需打开皕杰报表设计器,查看“帮助”菜单下的“关于”即可。查看服务器版本1)、在web应用/WEBINF/lib下有biosreport.jar。2)、用压缩工具打开这个jar包。3)、在METAINF文件夹下MANIFEST.MF里查看Version和label值。4)、
Stella981 Stella981
3年前
Openwrt中用iftop查看网络流量情况
iftop可以查看指定网卡上的流量情况,命令说明iftop:displaybandwidthusageonaninterfacebyhostSynopsis:iftoph|npblNBPiinterfaceffiltercode
Wesley13 Wesley13
3年前
mysql监控
服务器监控  查看mysql性能SQL语句    mysql的基本指令    SHOW INDEX FROM<table:用于查看数据库表上的索引技术    SHOWPLUGINS:查看mysql的插件,例如搜索引擎    SHOW\FULL\ PROCESSLIST
Stella981 Stella981
3年前
Nginx 反向代理配置及403出现原因
//image.happy.com.confserver{  //监听80端口listen80;  //状态on,首页展现索引  //状态off,首页403,不影响下层资源访问  autoindexoff;  //image.happy.com    serve
Stella981 Stella981
3年前
PostgreSQL查看索引的使用情况
查看某个表的索引使用情况selectrelname,indexrelname,idx_scan,idx_tup_read,idx_tup_fetchfrompg_stat_user_indexeswhererelnametable_nameorderbyidx_scanasc,idx_t
Stella981 Stella981
3年前
Docker搭建redis
环境准备系统:centos7.7192.168.33.14192.168.33.15192.168.33.16 端口号:63816382一.搭建redis集群(以下步骤在每台服务器上都要执行)1.安装dockeryumyinstalldockersystemctlstartdockersystemct
Stella981 Stella981
3年前
CentOS7查看网络的相关命令
转载自:https://www.linuxidc.com/Linux/201507/119555.htm1.切换到超级用户\Oscar@localhost桌面\$suroot2.查询可用的无线网卡,其中红色为网卡号\Oscar@localhost桌面\$iwdevphy0  Int
Wesley13 Wesley13
3年前
myeclipse中加入jad查看jar源代码
1、 下载反编译工具jad a)    下载地址:http://varaneckas.com/jad/(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fvaraneckas.com%2Fjad%2F),根据相对操作界面的版本进行下载,因为我们的操作界面是windo
Stella981 Stella981
3年前
PostgreSQL 查看表字段类型及注释
一、查看pg表字段‘名称’、‘类型’、‘非空’、‘注释’SELECTa.attnameas字段名,format_type(a.atttypid,a.atttypmod)as类型,a.attnotnullas非空,c