Linux小课堂开课了
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux小课堂开课了相关的知识,希望对你有一定的参考价值。
1、 修改hostname主机名查看一下hostname
[[email protected] ~]# cat /etc/hostname
localhost.localdomain
[[email protected] ~]# vim /etc/hostname #永久生效
server0.example.com
[[email protected] ~]# hostname test #临时生效,重启后失效
[[email protected] ~]# hostname
Test
2、 使用ssh远程连接主机
[[email protected] ~]# ssh [email protected]
The authenticity of host ‘192.168.11.137 (192.168.11.137)‘ can‘t be established.
ECDSA key fingerprint is 70:50:c9:2b:f9:32:07:87:82:e7:38:53:27:b7:84:1d.
Are you sure you want to continue connecting (yes/no)?
ssh的端口是22,为了安全起见,应该更改端口
更改端口的方式
[[email protected] ~]# vim /etc/ssh/sshd_config
Port 22 更改为其他端口
重启一下ssh服务
[[email protected] ~]# systemctl restart sshd
[[email protected] ~]# systemctl enable sshd
可以验证是否更改成功
[[email protected] ~]# netstat -tlunp | grep sshd
3、 简单安装lamp
先安装apache
[[email protected] ~]# yum -y install httpd
重启http服务
[[email protected] ~]# systemctl restart httpd
[[email protected] ~]# systemctl enable httpd
浏览器输入IP进行测试
查看端口
[[email protected] ~]# netstat -anutp | grep 80
配置文件
[[email protected] ~]# vim /etc/httpd/conf/httpd.conf
安装数据库mariadb
[[email protected] ~]# yum -y install mariadb mariadb-server
重启mariadb
[[email protected] ~]# systemctl restart mariadb
[[email protected] ~]# systemctl enable mariadb
安装php
[[email protected] ~]# yum -y install php php-mysql
测试一下
[[email protected] ~]# cd /var/www/html
[[email protected] html]# vim index.php
<?php
phpinfo();
?>
浏览器输入ip
未完,待续~
以上是关于Linux小课堂开课了的主要内容,如果未能解决你的问题,请参考以下文章