摘要:
安装完成后,打开 WebStorm, 在打开的 License Activation 窗口中选择 License server。 在输入框输入网址即可: http://idea.codebeta.cn 或者 http://idea.imsxm.com/ 网址在下面 更新 最后点击 Activate。 阅读全文
摘要:
文件中添加 /Users/xxx/.bash_profile 添加别名命令: alias pull='git pull origin' 注意:等号后面不能有空格 从新读取配置文件: source ~/.bash_profile 查看别名配置: alias 阅读全文
摘要:
1.开启免密登陆功能 以下文件 /etc/ssh/sshd_config 取消以下两项注释,如果没有添加。 RSAAuthentication yes PubkeyAuthentication yes 2.生成public_key ssh keygen t rsa 3.合并公钥 将CentOS服务器 阅读全文
摘要:
启动mysql systemctl start mysqld.service 停止mysql systemctl stop mysqld.service 重启mysql systemctl restart mysqld.service 查看当前状态 systemctl status mysqld.s 阅读全文
摘要:
1.创建公共配置文件 所有配置文件添加到以下目录: /xxxx/redis slave master 创建公共的redis配置文件,直接使用redis的默认配置文件,修改以下配置项: bind 127.0.0.1 daemonize yes 后台启动 requirepass 123456 登录密码 阅读全文
摘要:
1.查询可用的redis安装包 输入以下命令: dnf list redis 输出: redis.x86_64 3.2.10 2.el7 2.安装软件 输入以下命令: dnf install redis 3.检查是否安装成功: 输入: redis server 如果能成功启动redis安装成功。 阅读全文