• 服务器php环境搭建与apache


    Apache安装
    yum install httpd
    启动
    systemctl start httpd.service #启动
    systemctl stop httpd.service #停止
    systemctl restart httpd.service #重启
    第二、设置开机启动/关闭
    systemctl enable httpd.service #开机启动
    systemctl disable httpd.service #开机不启动
    第三、检查httpd状态
    systemctl status httpd.service
    
     
    
    关闭防火墙
    关闭:systemctl stop firewalld.service
    查看状态:systemctl status firewalld.service
    

      

    PHP安装
    yum -y install php
    
    php各项服务安装:
    yum -y install php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-snmp php-soap curl curl-devel php-mysql
    
     
    
    安装MariaDB数据库
    CentOS 7.0中,已经使用MariaDB替代了MySQL数据库,原因你懂的,MYSQL被Oracle收购以后,前景堪忧,所以MYSQL兄弟MariaDB就出来了,继续开源事业。
    安装:yum -y install mariadb-server mariadb-client
    启动:systemctl start mariadb.service
    停止:systemctl stop mariadb.service
    查看状态:systemctl status mariadb.service
    开机启动:systemctl enable mariadb.service
    重启:systemctl restart mariadb.service

    增加了密码后的登录格式如下:

    [root@localhost local]#mysql -u root -p

    Enter password: (输入密码)

    其中-u后跟的是用户名,-p要求输入密码,回车后在输入密码处输入密码。

    注意:这个mysql文件在/usr/bin目录下,与后面讲的启动文件/etc/init.d/mysql不是一个文件。

    [root@localhost local]#/usr/bin/mysqladmin -u root password '123456'

      

    网站文件夹:
    /var/www/html
    

      

  • 相关阅读:
    Linux 常见命令使用
    Spring Cloud学习03--OpenFeign基本使用
    Spring Cloud学习02--Ribbon基本使用
    Spring Cloud学习01--Eureka基本使用
    两个都不可对角化的矩阵判断相似
    利用相似转化研究对象
    分段函数的应用
    0820. Short Encoding of Words (M)
    0637. Average of Levels in Binary Tree (E)
    0160. Intersection of Two Linked Lists (E)
  • 原文地址:https://www.cnblogs.com/chenlw/p/12467110.html
Copyright © 2020-2023  润新知