0%

下载慢

npm config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/
yarn config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/ -g
参考:https://www.jb51.net/article/122820.htm

报错

Error: Node Sass does not yet support your current environment

原因:node 版本更换导致的

解决方法:

  1. 更换回原 node 版本
  2. npm rebuild node-sass
  3. 卸载 node-sass 重新安装

参考:https://blog.csdn.net/yaya07755/article/details/96834875

下载地址

https://github.com/coreybutler/nvm-windows/releases

安装路径不要有空格

nvm-windows 对空格支持的不是很好,安装路径最好不要有空格
作者说会在1.1.8这个版本解决这个问题
This issue should be resolved as of version 1.1.8. Please note I’m woefully behind in cutting this new release, but am working on a new release process. In the meantime, it’s possible to download the source or use a patched version from https://github.com/s-h-a-d-o-w/nvm-windows/releases (from the person who submitted the fix).

使用淘宝镜像

如果用 nvm 安装 node 和 npm 很慢,可以配置 nvm 使用淘宝镜像
nvm node_mirror https://npm.taobao.org/mirrors/node/
nvm npm_mirror https://npm.taobao.org/mirrors/npm/

归园田居·其三

陶渊明

种豆南山下,草盛豆苗稀。
晨兴理荒秽,带月荷锄归。
道狭草木长,夕露沾我衣。
衣沾不足惜,但使愿无违。

单向数据流
单向绑定,双向绑定
父子组件传值
声明式/命令式

查看服务器和本地是否存在密钥,
密钥存放目录一般为当前用户家目录下的.ssh里
windows:

C:\Users\***\.ssh

linux:

/***/.ssh 一般为: /root/.ssh

如果没有,创建密钥

1
2
ssh-keygen -t rsa # 一直默认回车就可以
ssh-keygen -t ed25519 -C "your@email.com" # github 等仓库

终端下 ssh 命令登录

把本地公钥添加到服务器的 .ssh/authorized_key 里

如果没有 authorized_key 这个文件,手动创建

手动 copy

Windows Command Line

1
type %userprofile%\.ssh\id_ed25519.pub | clip

Git Bash on Windows / Windows PowerShell:

1
cat ~/.ssh/id_ed25519.pub | clip

macOS

1
pbcopy < ~/.ssh/<YOUR KEY>.pub

GNU/Linux (requires the xclip package):

1
xclip -sel clip < ~/.ssh/id_ed25519.pub

命令 copy

1
ssh-copy-id -i ~/.ssh/id_rsa.pub root@xxx.com

ssh root@ip 就可以免密码登录了

使用 xshell 等 ssh 工具登录

  1. 把服务器的公钥下载到本地
  2. 登录时需要填写用户名 (root)
  3. 选择登录方式为public Key
  4. 选择第一步下载的公钥

参考

change mirror

1
export NVM_NODEJS_ORG_MIRROR=http://npm.taobao.org/mirrors/node

查看本地

1
nvm list/ls

查看

1
nvm ls-remote

安装

1
nvm install <version>

切换版本

1
nvm use <version>

查看当前版本

1
nvm current

设置默认版本

1
nvm alias default <version>

参考文档
https://www.jianshu.com/p/e21e3783304f

切换postgres用户

$ sudo su - postgres

登录PostgreSQL控制台

$ psql
$ psql -U postgres

退出

postgres-# \q

允许远程访问

1.修改 pg_hba.conf 在最后面添加

1
host    all             all             0.0.0.0/0               md5

centos 默认在 /var/lib/pgsql/10/data 下

windows 一般在 /program files/postgresql/10/data 下

2.查看 postgresql.conf 是否如下配置

1
2
listen_addresses = '*'
port = 5432

启动服务

service 命令

service start/stop/status/restart servicename

systemctl 命令

systemctl start/stop/status/restart servicename

开机启动

chkconfig 命令

添加到 chkconfig 列表
chkconfig --add servicename
开启/关闭
chkconfig servicename on/off
查询当前所有自动启动的服务
chkconfig --list
查询指定的服务
chkconfig --list servicename

systemctl 命令

systemctl enable/disable servicename