centos 7 安装系统+安装php环境

1 下载centos7.2 镜像

2 制作启动u盘

下载 ultraiso
选择iso文件用ultraiso 点击写入磁盘映像

3 安装系统

开机启动按f12 选择u盘
进入系统选择第一个 按e

将vmlinuz initrd=initrd.img inst.stage2=hd:LABEL=CentOS\x207\x20x86_64 rd.live.check quiet 改为:
 vmlinuz initrd=initrd.img inst.stage2=hd:/dev/sdb4 quiet 

ok一步一步走 走到

Paste_Image.png

设置安装位置 和 选择软件选择里的 桌面版
大工告成·····

4 安装环境

初始化系统
设置软件源
aliyun , remi, mysql

设置aliyun库$ wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo# 设置 remi 库, 设置 mysql 库$ yum install http://rpms.famillecollet.com/enterprise/remi-release-7.rpm# 由于mysql 版权方面的限制, centos 7 没有内置mysql 服务器, 必须从mysql 官方进行安装$ yum install http://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm

设置 nginx 源

源地址: nginx: Linux packages创建 vi/etc/yum.repos.d/nginx.repo
, 并且填充以下内容来安装 yum repository 库
[nginx]name=nginx repobaseurl=http://nginx.org/packages/OS/OSRELEASE/$basearch/gpgcheck=0enabled=1

替换OS
为 “rhel” 或 “centos”替换OSRELEASE
为 5”, “6”, 或“7”
更新元数据

更新元数据$ yum makecache

安装软件
常用软件和nmp 软件

更新系统$ yum update# 安装常用软件$ yum install vim git supervisor redis# 安装 php 基于 remi , 所以需要安装 remi 源$ yum install --enablerepo=remi-php70 php php-pdo php-fpm php-mbstring php-mcrypt php-gd php-mysqli php-zip# 安装 nginx$ yum install nginx --enablerepo=nginx# 安装 mysql server$ yum install mysql-server

启动服务

启动服务$ systemctl start php-fpm mysqld nginx supervisord

开机自启动

开机启动$ systemctl enable php-fpm mysqld nginx supervisord

初始化数据库
启动mysql并且获取密码
$ systemctl start mysqld# mysql 5.7 在安装完成的时候会生成一个临时密码, 我们需要找到错误日志 /var/log/mysqld.log来获取这个临时密码# use below command to see the password:$ grep 'temporary password' /var/log/mysqld.log [Note] A temporary password is generated for root@localhost: _ab3BAKulW?r

**初始化 mysql **
$ mysql_secure_installationSecuring the MySQL server deployment.Enter password for user root: ******New password: ******Re-enter new password: ******The 'validate_password' plugin is installed on the server.The subsequent steps will run with the existing configurationof the plugin.Using existing password for root.Estimated strength of the password: 100 Change the password for root ? ((Press y|Y for Yes, any other key for No) : *Estimated strength of the password: 100 Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : yBy default, a MySQL installation has an anonymous user,allowing anyone to log into MySQL without having to havea user account created for them. This is intended only fortesting, and to make the installation go a bit smoother.You should remove them before moving into a productionenvironment.Remove anonymous users? (Press y|Y for Yes, any other key for No) : YSuccess.Normally, root should only be allowed to connect from'localhost'. This ensures that someone cannot guess atthe root password from the network.Disallow root login remotely? (Press y|Y for Yes, any other key for No) : N... skipping.By default, MySQL comes with a database named 'test' thatanyone can access. This is also intended only for testing,and should be removed before moving into a productionenvironment.Remove test database and access to it? (Press y|Y for Yes, any other key for No) : N ... skipping.Reloading the privilege tables will ensure that all changesmade so far will take effect immediately.Reload privilege tables now? (Press y|Y for Yes, any other key for No) : YSuccess.All done!

设置密码的方法
$ mysql -uroot -p******mysql> set password for 'root'@'localhost' = password('markzhao123456');mysql> exit

软件配置
配置nginx
配置 nginx 时候的运行组

/etc/nginx/nginx.confuser nginx nginx;

配置nginx虚拟主机
server{ listen 80; # 如果这里是 IP, 则才会允许访问, 否则, 扯破牛蛋也访问不到 server_name www.domain.com ; index index.php index.html index.htm default.html default.htm default.php; root /webdata/www/domain/public; # 这里注意和服务器自带不同的是 # fastcgi_param SCRIPT_FILENAME /scripts/$fastcgi_script_name; # fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # 会导致 FastCGI sent in stderr: "Primary script unknown" while reading response header from upstream location ~ .php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } location / { try_files $uri $uri/ /index.php?$query_string; } location ~ .*.(js|css)?$ { expires 12h; } access_log /webdata/logs/domain_access.log; error_log /webdata/logs/domain_error.log;}

配置php
配置 php-fpm

/etc/php-fpm.d/www.confuser = nginxgroup = nginx

配置 php.ini

时区date.timezone = Asia/Shanghai

配置 session 是可写状态
$ chown -R nginx:nginx /var/lib/php/session/

配置系统允许访问

配置 http$ firewall-cmd --permanent --zone=public --add-service=http# 配置 3306$ firewall-cmd --permanent --zone=public --add-port=3306/tcp# 重启 防火墙$ firewall-cmd --reload

配置数据库用户
CREATE USER 'remote'@'%' IDENTIFIED WITH mysql_native_password AS 'UOSy)iKk$XO9dMB';GRANT ALL PRIVILEGES ON . TO 'remote'@'%' REQUIRE NONE WITH GRANT OPTION MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0;GRANT ALL PRIVILEGES ON 1dailian\_v2. TO 'remote'@'%' WITH GRANT OPTION;FLUSH PRIVILEGES

补充
下载安装mysql
获取最新下载地址:http://dev.mysql.com/downloads/mysql/
下载地址:http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-community-client-5.7.13-1.el7.i686.rpmhttp://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-community-server-5.7.13-1.el7.i686.rpm

下载$ wget http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-community-client-5.7.13-1.el7.i686.rpm$ wget http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-community-server-5.7.13-1.el7.i686.rpm# 安装yum localinstall mysql-community-client.rpmyum localinstall mysql-community-server.rpm

参考文章
How To Install Nginx on CentOS 7(很及时, 解决了无法使用IP连接上服务器的问题)
Nginx安装(官网翻译)
nginx FastCGI错误Primary script unknown解决办法

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容