Coder Social home page Coder Social logo

bebagodfried / lampp-ng Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 19.32 MB

LAMP Stack NG is a powerful combination of Apache/Httpd, MySQL/MariaBD, PHP, PhpMyAdmin, Composer...

Home Page: https://bebagodfried.github.io/lampp-ng/

License: MIT License

Shell 100.00%
http-server httpd-server lamp-server lamp-setup lamp-stack lampp lampp-stack linux-apache2 linux-lamp linux-php

lampp-ng's Introduction

LAMP Stack is a powerful combination of four open-source technologies that web developers use to build websites and web applications but with my NG Edition that support Debian, RPM, Arch and SUSE Bases, it comme with more components like:

  • composer,
  • firewall,
  • php-common,
  • ...

Requiered :

  • Linux: The operating system layer.

We'll install:

  1. Apache/Httpd: The web server layer. Apache serves as the bridge between the user's browser and the backend application. It handles requests, processes them, and delivers web content to users.

  2. MySQL/MariaBD: The database server layer. It's where information like user profiles, product details, and other dynamic content resides. Developers use SQL queries to interact with the database.

  3. PHP: The programming language layer. PHP is a server-side scripting language. It processes requests, interacts with the database, and generates dynamic web pages. It's commonly used for building web applications.

Optionnaly

  1. phpMyAdmin: a free and open-source administration tool designed for managing MySQL and MariaDB databases. Written primarily in PHP, it provides a web-based interface for various database operations like:

    • Database Administration: You can perform common tasks such as creating, copying, dropping, renaming, and altering databases, tables, fields, and indexes.

    • SQL Execution: phpMyAdmin allows you to execute and edit SQL statements directly. You can also bookmark frequently used queries.

    • User Account Management: Manage MySQL user accounts and their privileges.

    • Import and Export Data: Import data from CSV and SQL files, and export data to various formats including CSV, SQL, XML, PDF, and more.

    • Visual Database Layout: Create graphics representing your database schema in different formats.

  2. Composer is an open-source dependency management tool for PHP.

  3. Firewall: securing servers access

  4. php-common: a package that includes common files for PHP packages. It contains utilities shared among all packaged PHP versions.

  5. more features coming soon ...

How-to MySQL DB Configurations

  • Creating a root users
    CREATE USER 'root'@'%' IDENTIFIED BY 'root';
    GRANT ALL PRIVILEGES ON . TO 'root'@'%' WITH GRANT OPTION;

  • Remove anonymous users
    DROP USER 'anonymous';

  • Remove test database and access to it
    DROP DATABASE 'test';

  • Reload privilege tables
    FLUSH PRIVILEGES;

Tested on:

  • fedora 38/39

  • Full Changelog: here

  • Feedback Please report issues and feature requests here.


License: MIT License | Author: Béba Godfried A.

lampp-ng's People

Contributors

bebagodfried avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.