Home > Article > Operation and Maintenance > A brief analysis of server code deployment in Linux (share)
In the previous article "An article explaining the installation and use of Git (with code)", we learned about the installation and use of Git. The following article will help you understand the remote login script configuration in Linux. Let's see how to do it.
##Linux, remote login script configuration,
git installation configuration,
node installation ,
mysqlInstallation configuration,
nginxInstallation configuration, from 0 to 1, this article will only talk about deployment. There is nothing good to say about writing code. There is a
ip, user, password
TelnetScript configuration (
Mac & Linux)
#!/usr/bin/expect -f set ip 8.8.8.8 #服务器IP地址 set password 123456 #登录密码 set timeout 10 #超时时间 set user root #登录帐号 spawn ssh $user@$ip expect { "*yes/no" { send "yes"; exp_continue} "*password:" { send "$password" } } interact
Login prompt@@@@@@@@@@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@ When the server-related data changes,
ssh cannot log in, just clear the local The
~/.ssh/known_hsots file related deletion can be done
/root/.ssh/authorized_keys ,Create if not available
The above is the detailed content of A brief analysis of server code deployment in Linux (share). For more information, please follow other related articles on the PHP Chinese website!