linux
black_moods
这个作者很懒,什么都没留下…
展开
-
SSH 连接 Linux 服务 报错 server responded algorithm negotition
修改 /etc/sshd_config 用 vim sshd_config 输入 i 进入编辑模式 在最下方添加 Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com,chacha20-poly1305@openssh.com,blowfish-cbc,原创 2017-11-01 14:28:49 · 1582 阅读 · 0 评论 -
esearch 不能用 root 用户启动问题
要新建一个用户 : adduser xxx chmod -R 777 /某个文件 进行赋权原创 2017-11-01 22:49:58 · 272 阅读 · 0 评论 -
elasticsearch 配置外网访问
进入 config/ elasticsearch.ym 修改:network.host: 127.0.0.1 或者内网Ip 添加:http.host: 0.0.0.0原创 2017-11-01 23:15:45 · 11170 阅读 · 4 评论 -
linux 常用命令
ls 显示当前目录下的文件夹 cd 进入某个文件夹 cd ../ 回到上一级 mkdir 新建一个文件夹 touch 新建文件 grep '要搜索的内容' 要搜索的文件名称 vim 打卡一个文件 1. 打开后是命令模式 ;按 i 进入编辑模式 2. 按 esc 退出...原创 2018-10-06 22:56:32 · 137 阅读 · 0 评论