ubuntu下远程连接服务器的两种方式

ubuntu下远程连接服务器的两种方式,第1张

平时只在windows下连接过putty,现在因为项目的需要,必须学会在Ubuntu上连接服务器。

首先安装ssh

然后看看ssh服务是否开启

若ssh没有开启,可以使用如下命令开启该服务

然后修改一下sshd_config的配置,把28行注释下并改写为29行的形式保存即可

此时我们ssh服务已经开启,已经成功1/3啦

这里就要发挥Ubuntu的优势啦

安装完之后,用命令行打开putty的界面

没错,就是这条命令啦

这样就完成啦

其实发现第一种方法特别low。真正的打开方式应该是这样的:

若服务器的SSH服务没有开启22端口,那么ssh链接时则需要用 -p 指定端口:

是不是第二种方法更简单,哎,没办法小菜鸡只能见一个记录一个一步一步慢慢成长。

可以参考如下Web服务器的建立过程。示例环境及web服务器软件:

Ubuntu 12.04

LAMP(Linux,Apache,Mysql,PHP)

1、安装Apache

(1)在安装HTTP Server之前需安装APR(Apache Portable Runtime)和APR-util安装APR

$ tar zxvf apr-1.4.6.tar.gz

$ cd apr-1.4.6/

$ ./configure

$ make

$ sudo make install

(2)安装APR-util

$ tar zxvf apr-util-1.4.1.tar.gz

$ cd apr-util-1.4.1

$ ./configure –with-apr=/usr/local/apr (whereis apr)

$ make

$ sudo make install

(3)安装httpd-2.4.2.tar.bz2默认安装位置/usr/local/apache2网页放在/usr/local/apache2/htdocs配置文件/usr/local/apache2/conf/httpd.conf

$ tar jxvf httpd-2.4.2.tar.bz2

$ cd httpd-2.4.2/

$ ./configure

$ make

$ sudo make install

(4)启动HTTP Server$ sudo /usr/local/apache2/bin/apachectl startAH00558: httpd: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1. Set the ‘ServerName’ directive globally to suppress this message

(5)查看http是否正常运行$ netstat -a | grep httptcp 0 0 *:http *:* LISTEN

(6)在浏览器输入127.0.0.1如果正常应该显示“It works!”

2、安装MySQL

(1)、下载安装mysql-5.5.25.tar.gz,默认安装位置/usr/local/mysql/

$ tar zxvf mysql-5.5.25.tar.gz

$ cd mysql-5.5.25/

$ sudo groupadd mysql

$ sudo useradd -r -g mysql mysql

$ cmake .

$ make

$ sudo make install

$ cd /usr/local/mysql/

$ sudo chown -R mysql .

$ sudo chgrp -R mysql .

$ sudo scripts/mysql_install_db –user=mysql

$ sudo chown -R root .

$ sudo chown -R mysql data/

$ sudo cp support-files/my-medium.cnf /etc/my.cnf

$ sudo cp support-files/mysql.server /etc/init.d/mysql.server

(2)、启动MySQL:

方法1:$ sudo service mysql.server start

方法2:$ sudo /usr/local/mysql/bin/mysqld_safe --user=mysql &

3、安装PHP

(1)安装下载php-5.4.4.tar.gz

$ tar zxvf php-5.4.4.tar.gz

$ cd php-5.4.4

$ ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli --enable-mbstring --with-mcrypt(可能需要安装libmcrypt-dev )

$ sudo make install

$ sudo cp php.ini-development /usr/local/lib/php.ini

(2)配置HTTP Server使之支持PHPapache配置文件/usr/local/apache2/conf/httpd.conf修改或添加如下配置

<IfModule dir_module>

DirectoryIndex index.php

</IfModule>

<FilesMatch \.php$>

SetHandler application/x-httpd-php

</FilesMatch>

(3)重启HTTP Server

$ sudo /usr/local/apache2/bin/apachectl restart

ubuntu16.04远程远程登录linux系统的方法

在路由器上我们经常遇到一个问题,那就是想开发路由器就必须先获取SSH权限,那么SSH是什么呢?

SSH 为 Secure Shell 的缩写,SSH 是建立在应用层和传输层基础上的安全协议。SSH可以有效防止远程管理过程中的信息泄露,专为远程登录会话和其他网络服务提供安全性的协议。

所以利用SSH远程协议我们也可以对虚拟机中的Ubuntu进行远程操控了,那么如何来实现这一功能呢?

首先我们先确认下ubuntu系统是否已经安装ssh(通常ubuntu中默认是安装的),通过命令进行查看:

dpkg -l | grep ssh

这里我们可以看到,系统显示已经安装了openssh-client,但是没有openssh-server。

说明ssh没有完成安装,这里我们可以重新安装openssh-client和openssh-server。在终端使用下列命令进行安装:

sudo apt-get install openssh-client

sudo apt-get install openssh-server

如果出现以上所以,说明安装被打断,要使用提示的sudo dpkg --configure -a进行安装:

我们就手动执行以下命令:

sudo dpkg --configure -a

再返回安装openssh-client和openssh-server,在终端使用下列命令进行安装:

sudo apt-get install ssh

现在我们可以看到系统已经安装了openssh-client和openssh-server。

接下来我们来启动ssh服务,执行以下命令:

sudo /etc/init.d/ssh start

系统显示:[ ok ] Starting ssh (via systemctl): ssh.service.说明已经启动了SSH服务。

如果你想停止ssh服务,则执行以下命令即可:

sudo /etc/init.d/ssh stop:

接着我们通过ifconfig命令,查看系统的ip地址,ssh的端口号一般为

图中所框选的ip就是我们系统的IP地址

接下来我们就可以在我们的windows系统中打开ssh客户端软件,这里小编喜欢使用Putty,输入ubuntu系统的ip地址(192.168.204.128)和端口(22)

然后在弹出的窗口中根据提示输入账户和密码,就可以通过ssh登录到ubuntu系统中,并远程执行各种命令操作。

密码输入不显示,直接enter继续即可。


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/512793.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-06-19
下一篇2023-06-19

发表评论

登录后才能评论

评论列表(0条)

    保存