安装Zabbix中的一些记录

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/sxhexin/article/details/88630148

Mysql8安装成功后,默认的root用户密码为空,使用以下命令来创建root用户的密码mysqladmin -u root password "new_password"

通过mysql -u root -p来连接到Mysql服务器

新建数据库create database newdb;

授权grant all privileges on newdb.* to 'newdb'@'localhost';

刷新权限flush privileges;

CentOS7安装语言包支持
修改配置文件etc/locale.conf 中的LANG="zh_CN.UTF-8"
使用locale 查看修改后的系统语言变量
使用locale -a 查看语言包

zabbix报警脚本
https://blog.csdn.net/linux_s2018/article/details/80825099
https://blog.51cto.com/m51cto/2051945

jenkins构建完成提示脚本
http://www.cnblogs.com/hito/p/6561300.html

猜你喜欢

转载自blog.csdn.net/sxhexin/article/details/88630148