25. Mac命令行登陆远程
更新:HHH   时间:2023-1-7


1.系统命令行或者iTem2


ssh root@193.xxx.xx.xx -p 端口



2. 或者编辑

vim ~/.ssh/config

把远程服务器添加到config里面

Host abctest

  HostName 192.xxx.xx.x

  User root

  Port 端口

  IdentityFile ~/.ssh/id_rsa


然后把公钥添加到服务器的~/.ssh/authorized_keys 文件里面


登陆的时候,直接在命令行里面输入: ssh abdtest



3.mysql命令行登陆:

mysql -h 192.xx.xxx.xx. x  -p3306 -uroot -p

返回开发技术教程...