美文网首页
debian9 LAMP安装

debian9 LAMP安装

作者: cyzyjin | 来源:发表于2018-12-16 19:43 被阅读0次

    第一步安装apache2

    apt-get install apache2
    systemctl restart apache2    #启动apache2
    

    在浏览器的地址栏输入 localhost


    apa.png

    第二步安装mariadb

    apt-get install mariadb-server
    systemctl restart mysql          #启动数据库
    

    设置root密码

    mysqladmin -u root -p password xxxx        #按回车键
    #在次按回车键,不用输入密码
    

    进入数据库新建用户

    mysql -u root -p          #按回车键输入密码
    create user 'xxx'@'localhost';      #按回车键
    grant all on *.* to 'xxx'@'localhost';      #给权限
    exit;
    

    mysql语句后面一定有分号
    xxx是用户名,localhost是本地
    xxxx是您的数据库密码

    登陆新用户

    mysql -u xxx
    set password = password("xxxxxxxxxxxxxxxxx");    #xxx用户设置密码
    exit;
    

    xxx是用户名
    xxxxxxxxxxxxxxxxx是xxx的密码

    第三步安装php

    apt-get install php php-mysql
    

    在/var/www/html中删除index.html,新建index.php并写入

    <html>
    <body>
    <?php
    phpinfo();
    ?>
    </body>
    </html>
    

    在浏览器的地址栏输入 localhost


    php.png

    相关文章

      网友评论

          本文标题:debian9 LAMP安装

          本文链接:https://www.haomeiwen.com/subject/bqixkqtx.html