{"id":29744171,"url":"https://github.com/rishabhverma17/installing-codenvy-on-bitnami-lamp-stack","last_synced_at":"2026-02-07T12:01:34.429Z","repository":{"id":119524825,"uuid":"116243280","full_name":"rishabhverma17/Installing-Codenvy-on-Bitnami-Lamp-Stack","owner":"rishabhverma17","description":"Installing Codenvy Web IDE on Bitnami Lamp Stack VM","archived":false,"fork":false,"pushed_at":"2018-01-19T18:44:30.000Z","size":6,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-26T09:11:08.536Z","etag":null,"topics":["bitnami","bitnami-ova","cloud-ide","cloud-workspace","codenvy","codenvy-ide","codenvy-installation","codenvy-localhost","codenvy-setup","codenvy-vm","ide","lamp","lamp-server","lamp-setup","lamp-stack","virtualbox","virtualbox-ova","virtualbox-vm","web-ide","web-ide-installation"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rishabhverma17.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2018-01-04T09:51:08.000Z","updated_at":"2023-05-04T12:57:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"7e660f2c-b424-464c-808e-3fc5864a4df7","html_url":"https://github.com/rishabhverma17/Installing-Codenvy-on-Bitnami-Lamp-Stack","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rishabhverma17/Installing-Codenvy-on-Bitnami-Lamp-Stack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabhverma17%2FInstalling-Codenvy-on-Bitnami-Lamp-Stack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabhverma17%2FInstalling-Codenvy-on-Bitnami-Lamp-Stack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabhverma17%2FInstalling-Codenvy-on-Bitnami-Lamp-Stack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabhverma17%2FInstalling-Codenvy-on-Bitnami-Lamp-Stack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rishabhverma17","download_url":"https://codeload.github.com/rishabhverma17/Installing-Codenvy-on-Bitnami-Lamp-Stack/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabhverma17%2FInstalling-Codenvy-on-Bitnami-Lamp-Stack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29194000,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T07:37:03.739Z","status":"ssl_error","status_checked_at":"2026-02-07T07:37:03.029Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bitnami","bitnami-ova","cloud-ide","cloud-workspace","codenvy","codenvy-ide","codenvy-installation","codenvy-localhost","codenvy-setup","codenvy-vm","ide","lamp","lamp-server","lamp-setup","lamp-stack","virtualbox","virtualbox-ova","virtualbox-vm","web-ide","web-ide-installation"],"created_at":"2025-07-26T04:31:13.742Z","updated_at":"2026-02-07T12:01:34.411Z","avatar_url":"https://github.com/rishabhverma17.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Installation Tutorial youtube link below \nLink for Tutorial [YouTube](https://youtu.be/HWLMNZnbOk0)\n\n## Pre-Installation Steps\n* Download Virtual Box from \"https://www.virtualbox.org/\"\n* Download Putty Client from \"http://www.putty.org/\"\n* Download Filezilla from \"https://filezilla-project.org/\"\n* Download \"Bitnami Lamp Stack Virtual Box Image file \"bitnami-lampstack-7.1.12-0-r03-linux-debian-8-x86_64.ova\" from https://bitnami.com/stacks\n* Import Lamp Image in Virtual Box.\n* Start the VM.\n\n### Step1- Enable SSH\n###### Enable SSH Debian Linux\n``` shell\nsudo rm -f /etc/ssh/sshd_not_to_be_run\nsudo systemctl enable ssh\nsudo systemctl start ssh\n```\n###### Configure The SSH Server To Support Key-Based Authentication\n``` shell\nssh-keygen\n```\n**This command should create two files named id_rsa and id_rsa.pub in the /home/bitnami/.ssh directory.**\n**Copy the private key file named id_rsa to a secure location. Do not share this private key file.**\n\n### Step2 - Http-Https Settings\n###### Give Write Permission\n``` shell\nls\ncd stack\nls\n# apache2 directory would be present there.\nchmod -R 777 /apache2\n```\n### HTTP Port\n###### Under the default configuration, Apache will wait for requests on port 80. Change that by editing the httpd.conf file and modifying, the value specified in the Port directive. For example:\n``` php\nListen 8080\n\nServerName localhost:8080\n```\n###### Also change the port in installdir/apache2/conf/bitnami/bitnami.conf in the VirtualHost directive:\n``` php\n\u003cVirtualHost _default_:8080\u003e\n```\n### HTTPS Port\n###### Apache waits for HTTPS requests on port 443. Change that by editing the installdir/apache2/conf/bitnami/bitnami.conf file and modifying the value specified in the Port directive. For example:\n``` php\nListen 8443 \n\n\u003cVirtualHost _default_:8443\u003e\n```\n###### Restart the Apache server for the change to take effect.\n``` shell\nsudo /opt/bitnami/ctlscript.sh restart apache\n```\n### Step3 - Docker Installation Debian 8\n###### Debian 8 Install Docker\n**Remove existing installation.**\n**If you already have a different version of docker installed, you can run this to remove it.**\n``` shell\nsudo apt-get purge lxc-docker*\nsudo apt-get purge docker.io*\n```\n\n###### Update\n``` shell\nsudo apt-get update\nsudo apt-get dist-upgrade -y\n```\n\n###### docker requires apt-transport-https\n``` shell\nsudo apt-get install apt-transport-https -y\n```\n\n###### now setup the apt repository\n``` shell\nsudo apt-key adv --keyserver hkp://pgp.mit.edu:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D\nsudo echo \"deb https://apt.dockerproject.org/repo debian-jessie main\" | sudo tee /etc/apt/sources.list.d/docker.list\n```\n\n###### Finally install the package.\n``` shell\nsudo apt-get update\nsudo apt-get install docker-engine -y\n```\n\n###### Start the docker service\n``` shell\nsudo service docker start\n```\n\n###### Add ourselves to the docker group so that we can use 'docker' commands without sudo.\n``` shell\nsudo adduser $USER docker\n```\n\n### Step4 - Port Settings\n###### Open Port Range from 32768 to 65535\n``` shell\nsudo /sbin/iptables -A INPUT -p tcp --match multiport --dports 32768:65535 -j ACCEPT\n```\n\n###### Open Port 23750\n``` shell\nsudo iptables -A INPUT -p tcp --dport 23750 --jump ACCEPT\n```\n\n###### Save Ip-tables\n``` shell\niptables-save\n```\n\n###### Codevny Docker Start\n``` shell\ndocker run -it --rm -v /var/run/docker.sock:/var/run/docker.sock -v /home/bitnami/htdocs/codenvy:/data codenvy/cli start\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishabhverma17%2Finstalling-codenvy-on-bitnami-lamp-stack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frishabhverma17%2Finstalling-codenvy-on-bitnami-lamp-stack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishabhverma17%2Finstalling-codenvy-on-bitnami-lamp-stack/lists"}