蒙珣的博客

活好当下,做好今天该做的事情。

0%

shell 基本运算符

算数运算符

算数运算符 说明
+
-
*
/
% 取余
= 赋值
== 相等
!= 不相等

Read more »

Linux一键安装包内置了apache, php, mysql这些应用程序,只需要下载解压缩即可运行禅道企业版。

Linux一键安装包分为32位和64位两个包,请大家根据操作系统的情况下载相应的包。

安装

  1. 将禅道企业版Linux一键安装包直接解压到/opt目录下, 不要 解压到别的目录再拷贝到/opt/,因为这样会导致文件的所有者和读写权限改变, 也不要解压后把整个目录777权限 。

    可以使用命令: tar -zxvf ZenTaoPMS.Biz1.0.zbox_64.tar.gz -C /opt

    Read more »

虚拟机网络设置为桥接模式

systemctl enable sshd.service 开机启动
systemctl start sshd.service 立即启动
systemctl restart sshd.service 立即重启

ssh命令

ssh username@remote_ip

之后输入密码即可

ssh连接失败

ssh-keygen -R 服务器地址


纤云弄巧,

飞星传恨,

银汉迢迢暗度。

金风玉露一相逢,

便胜却人间无数。

柔情似水,

佳期如梦,

忍顾鹊桥归路。

两情若是久长时,

又岂在朝朝暮暮。

Algolia 注册帐号

  1. algolia 注册登录后,打开 dashboard
    Indices -> new index,注意 indexName 中不要有英文引号,避免不必要的麻烦

  2. API Keys 中查看 id/keys,需要:

    1
    2
    3
    Application ID
    Search-Only API Key
    Admin API Key
Read more »


梦游天姥吟留别
海客谈瀛洲,烟涛微茫信难求;
越人语天姥,云霞明灭或可睹。
天姥连天向天横,势拔五岳掩赤城。
天台四万八千丈,对此欲倒东南倾。
我欲因之梦吴越,一夜飞度镜湖月。
湖月照我影,送我至剡溪。
Read more »



My Dear Arthur

​        You never showed up, and now. After looking at the newspaper I understand why I don’t imaging you will receive this letter, but I nonetheless must send it.

Read more »

连接mysql 出现:java.sql.SQLException: Unable to load authentication plugin ‘caching_sha2_password‘.

报错Exception during pool initialization.

java.sql.SQLException: Unable to load authentication plugin ‘caching_sha2_password’.

报错与数据库有关的,应该是从MySQL 8.0.4开始, 默认的认证插件从mysql_native_password 变为caching_sha2_password.

参考 https://dev.mysql.com/doc/refman/8.0/en/caching-sha2-pluggable-authentication.html

创建新用户和密码参考sql:

CREATE USER ‘yourusername‘@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘youpassword’;

autojump

可自动跳转目录,避免每次输入很长代码

安装autojump

手动安装

1
2
3
4
5
git clone git://github.com/wting/autojump.git

cd autojump

./install.py or ./uninstall.py
Read more »

fcitx5的安装

1
sudo pacman -S fcitx5-git fcitx5-chinese-addons fcitx5-chewing fcitx5-pinyin-zhwiki fcitx5-pinyin-moegirl fcitx5-config-qt fcitx5-gtk-git fcitx5-qt4-git fcitx5-qt5-git fcitx5-material-color
Read more »