Questions tagged [lamp]

Acronym for a development stack originally made up of Linux, Apache, MySQL and Perl/PHP/Python

LAMP is an acronym that refers to a stack of open source software used in development. The initial letters come from the following components:

  • Linux (operating system)
  • Apache HTTP Server (web server)
  • MySQL (database software)
  • Perl/PHP/Python (programming language)

Similar terms are used when on other operating systems while keeping the software suite:

  • Microsoft Windows (WAMP)
  • Mac OS (MAMP)
  • Solaris (SAMP)
  • OpenBSD (OAMP)
668 questions
0
votes
1 answer

How to Enable SSL for Amazon EC2 Instance(LAMP packaged by Bitnami)?

I launch an EC2 instance with an AMI from the marketplace, which is called LAMP packaged by Bitnami. After the instance is launched, I find I can only access its DNS name or IP via HTTP, not HTTPS. It seems that the SSL will not be installed by…
alancc
  • 141
  • 12
0
votes
1 answer

Changing or updating the passphrase in gcp lamp vm

I am trying to download files from a particular folder from one of my vm's on gcp using the following command gcloud compute scp --recurse VM_NAME:REMOTE_DIR LOCAL_DIR After running the command the gcp terminal asks me for a passphrase. I enter the…
user4540741
  • 11
  • 1
  • 6
0
votes
0 answers

Cannot run bash script via php possible permissions

I have ffmpeg installed on a CentOS 7 machine running a standard LAMP stack. I can run ffmpeg fine by itself in a terminal, like so: ffmpeg -i "rtsp://admin:password@10.0.0.152/play2.sdp" camera1.mp4 I have a php script more or less like the…
Dustin
  • 1
  • 1
0
votes
0 answers

Google LAMP trying to update sudo

I was trying to update sudo on my LAMP cloud server at Google, but to no avail it seems. Doing sudo apt update, then sudo apt install --only-upgrade sudo if finds the same sudo as on the system: Get:1 http://security.debian.org/ jessie/updates/main…
Looren
  • 21
  • 4
0
votes
1 answer

How to run updates on Ubuntu command line without upgrading PHP

I run an Ubuntu server on 16.04 using LAMP stack. I ran into an issue last week when updating using: sudo apt update Basically PHP was automatically upgraded from 7.4 to 8.0 during the upgrade & this broke some functionality on my websites. Is…
Alex Douglas
  • 353
  • 1
  • 5
  • 12
0
votes
0 answers

How to actually set up MariaDB replication/high availability

I'm setting up a high availability LAMP stack - so far, I have two servers with HAProxy running on both their frontends that own a floating IP. HAProxy redirects requests to backend Apache servers running on each of them (same machine, port…
forkwasher
  • 75
  • 1
  • 4
0
votes
1 answer

Lightsail LAMP - Virtual Hosts stopped working after adding SSL

After hours and hours of efforts on research, I'm posting this. I'm trying to add a domain and its sub-domain on a single static IP created in LAMP instance in Amazon Lightsail, and add Let's Encrypt SSL certificate to both. Before adding SSL, I had…
0
votes
0 answers

What is the name of the apache process owner?

After running $ps aux | grep httpd the terminal output is root 26923 0.0 0.0 14428 1044 pts/0 S+ 17:43 0:00 grep --color=auto httpd I'm trying to change the owner of a path on a remote LAMP server. According to this question;…
0
votes
1 answer

XAMPP on Catalina - Can't connect to local MySQL server through socket '/opt/lampp/var/mysql/mysql.sock'

i installed xampp to make a local website. i finished the website and tried to export the db to switch to production and i noticed that the DB in php my admin seemed to be empty ( which couldn't be possible, because i worked with the wordpress…
rita1989
  • 11
  • 2
  • 7
0
votes
1 answer

How do I comletely remove the LAMP -Linux, Apache Mysql and php from ubuntu 18.04 installing in VM

How can I completely uninstall LAMP installed in the Ubuntu 18.04 which is running in the VM, from the code I like to remove and make completely free now.
user563190
  • 1
  • 1
  • 2
0
votes
0 answers

How to get a server ready for hosting a website?

Currently, my companies' website is hosted on a web hosting company which they provide everything (WHM, cPanel, E-mail server, LAMP, security and etc...) We have to move the website to a private company. And we (for the first time) have to set up…
Ijmal
  • 1
  • 1
0
votes
0 answers

I am using 'sudo apt-get clean' too often nowadays, how can I avoid using it again?

I have a LAMP server hosted by Digital Ocean that has been running for more than 3 years. I use the server to run an ERP page where users have to log in to do what they need to do. Up until recently people could enter the ERP without a problem and…
Julio Garcia
  • 103
  • 5
-1
votes
1 answer

LAMP stack with AWS performance

I am planning to move my LAMP stack to AWS as the number of users increases. Current estimations suggest, that the Server has to handle roughly 100.000 users accessing the static landing page, out of which about 5.000 will use the internal pages…
mo_st
  • 39
  • 5
-1
votes
1 answer

Empty LAMP Sessions

I have a LAMP server. Users log in and authenticate against the MySQL database. After successful authentication, session_start() is called. At no point is regenerate_session_id() called. I'm experiencing multiple empty PHP/apache sessions being…
mahbad
  • 1
  • 4
-1
votes
1 answer

SSL stopped working, LAMP on Debian via Turnkey VM

I’ve had our site up and operational for approx. 2 months. The website will no longer load if SSL is enabled. I can edit the /etc/apache2/sites-enabled/wordpress and rem out the SSL configuration and the site will load listening on *:80 The…