本文主要介绍微软Cloud+AI本地化社区,以及通过多种途径贡献本地化的操作指南。 ...
分类:
其他好文 时间:
2018-11-20 15:00:45
阅读次数:
250
#create a tuple tuplex = "w", "j" ,"c", "e" print(tuplex) #tuples are immutable, so you can not remove elements #using merge of tuples with the + oper... ...
分类:
编程语言 时间:
2018-11-12 23:59:51
阅读次数:
910
数据库允许远程连接 把数据库中的mysql数据库中的user表里的host项为localhost的改为 % update user set host = '%' where user = 'root' and host = "localhost"; 会话是什么 1. 由于HTTP协议是无状态的协议, ...
分类:
其他好文 时间:
2018-11-12 14:52:32
阅读次数:
198
# -*- coding:utf-8 -*-'''@project: jiaxy@author: Jimmy@file: study_模块导入.py@ide: PyCharm Community Edition@time: 2018-11-10 10:26@blog: https://www.cnb ...
分类:
编程语言 时间:
2018-11-10 12:53:39
阅读次数:
179
第一步wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm 第二步rpm -ivh mysql-community-release-el7-5.noarch.rpm第三步sudo yum install mysql-s ...
分类:
数据库 时间:
2018-11-04 11:02:59
阅读次数:
212
1.刚开始安装mysql参考这个: https://blog.csdn.net/a116475939/article/details/74625377 2.修改密码 3.创建用户以及赋权 ...
分类:
数据库 时间:
2018-11-03 23:11:30
阅读次数:
284
1、安装mysql数据库。 (1)下载mysql源安装包:wget http://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm (2)安装mysql源:yum localinstall mysql57-community-r ...
分类:
数据库 时间:
2018-11-02 17:57:07
阅读次数:
194
配置好Python3.6和pip3安装EPEL和IUS软件源 yum install epel-release -y yum install https://centos7.iuscommunity.org/ius-release.rpm -y 安装Python3.6 yum install pyt ...
分类:
编程语言 时间:
2018-11-01 22:33:18
阅读次数:
196
公司最近网站改版,增加了redis服务器,现领导要求需要测试redis的监控,于是从网上找了个redis的监控脚本,简单的修改了一下,测试中没出现任何问题。生产环境中,可根据实际要监控的参数值修改脚本内容,并添加相应的触发器。Redis有自带的redis-cli客户端,通过info命令可以查询到redis的运行情况,我们可以写个shell脚本,通过zabbix来调用这个脚本实现redis的监控。一
分类:
系统相关 时间:
2018-10-31 17:00:03
阅读次数:
190