linux環境搭建

2022-07-15 22:21:15 字數 3458 閱讀 3566

安裝apache

vmware 先安裝虛擬機器

修改配置

cd 查詢目錄/etc/sysconfig/network-scripts;ls 查詢

編輯配置

在vi編輯

onboot=yes //修改成yes     esc退出:wq儲存 :q退出 delete刪完了用insert新增

修改這個檔案

/etc/resolv.conf

新增8888

nameserver 8.8.8.8

重啟主機

service network restart

檢視ip位址

ip addr

1.安裝

2.開啟apache服務

3.設定apache服務開機啟動

使用公網訪問能看到apache就說明安裝成功

安裝php7

1.安裝php7

rpm -uvh

rpm -uvh

2. 通過雲進行php和其他元件的安裝

yum install php70w.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-mysql.x86_64 php70w-pdo.x86_64

yum install php70w-fpm

安裝mysql

rpm -uvh

檢視yum repolist enabled | grep "mysql.*-community.*"

安裝mysql

yum -y install mysql-community-server

開機啟動

systemctl enable mysqld

啟動mysql服務

systemctl start mysqld

遠端訪問

grant all privileges on *.* to 'root'@'%' identified by 'mypassword' with grant option;

flush privileges; 

防火牆1、firewalld的基本使用

啟動: systemctl start firewalld

檢視狀態: systemctl status firewalld 

停止: systemctl disable firewalld

禁用: systemctl stop firewalld

新增firewall-cmd --zone=public --add-port=80/tcp --permanent

刪除firewall-cmd --zone= public --remove-port=80/tcp --permanent

最後一定要在阿里雲安全組裡新增mysql規則

安裝apache

vmware 先安裝虛擬機器

修改配置

cd 查詢目錄/etc/sysconfig/network-scripts;ls 查詢

編輯配置

在vi編輯

onboot=yes //修改成yes     esc退出:wq儲存 :q退出 delete刪完了用insert新增

修改這個檔案

/etc/resolv.conf

新增8888

nameserver 8.8.8.8

重啟主機

service network restart

檢視ip位址

ip addr

1.安裝

2.開啟apache服務

3.設定apache服務開機啟動

使用公網訪問能看到apache就說明安裝成功

安裝php7

1.安裝php7

rpm -uvh

rpm -uvh

2. 通過雲進行php和其他元件的安裝

yum install php70w.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-mysql.x86_64 php70w-pdo.x86_64

yum install php70w-fpm

安裝mysql

rpm -uvh

檢視yum repolist enabled | grep "mysql.*-community.*"

安裝mysql

yum -y install mysql-community-server

開機啟動

systemctl enable mysqld

啟動mysql服務

systemctl start mysqld

遠端訪問

grant all privileges on *.* to 'root'@'%' identified by 'mypassword' with grant option;

flush privileges; 

防火牆1、firewalld的基本使用

啟動: systemctl start firewalld

檢視狀態: systemctl status firewalld 

停止: systemctl disable firewalld

禁用: systemctl stop firewalld

新增firewall-cmd --zone=public --add-port=80/tcp --permanent

刪除firewall-cmd --zone= public --remove-port=80/tcp --permanent

最後一定要在阿里雲安全組裡新增mysql規則

1、firewalld的基本使用

啟動: systemctl start firewalld

檢視狀態: systemctl status firewalld 

停止: systemctl disable firewalld

禁用: systemctl stop firewalld

新增firewall-cmd --zone=public --add-port=80/tcp --permanent

linux搭建環境

搭建lamp環境 centos6.9 安裝軟體有兩種方式一種是原始碼包安裝,另一種是二進位製包安裝。兩種各有好處,按需選擇 使用非常簡單。1.更新一下yum y update 2.安裝ap安裝php 安裝完成後,用 etc init.d httpd start 啟動apache 設為開機啟動 chk...

Linux環境搭建

涉及軟體 virtualbox 及 centos映象 ll檢視虛擬機器ip shift pgup pgdn 檢視上下頁面 vi ifcfg enp0s3 將onboot no 換成yes wq c.重啟網路 service network restart 以上,設定網路開機自啟 d.ping www...

linux環境搭建

1 安裝ssh sudo apt get update sudo sudo apt get install openssh server sudo ps e grep ssh 2 在ubuntu中遇到vi 解決方法 cp etc vim vimrc vimrc cd etc vim 進入 vi配置檔...