- Can I deploy multiple sites on the Magento (LAMP)?
- What’s different for Extension and Module?
- Can I deploy mys site If there is no domain name?
- How to bind a domain name to my application?
- What is the default character set?
- What the default mysql password of root?
- Is there a web-base GUI database management tools?
- Can I use this LAMP if I don’t understand the Linux command?
- phpMyAdmin page access blank?
- How to modify the website root directory?
- How to delete 9Panel?
- Do I need to change the owner(group) for the files which I upload by SFTP?
- How can I reset my php.ini to return to the initial?
- How to change the permissions of filesytem?
- How to set Rewrite rules for your application?
- How to disable Apache Test Page?
- How to bind a domain name for your application?
Can I deploy multiple sites on the Magento (LAMP)?
You can deploy unlimited number of websites on LAMP, but you should know that every site need corresponding virtual host profile segment in the file vhost.conf
What’s different for Extension and Module?
Extension=Modules+Themes+Metapackage+Languages
Can I deploy mys site If there is no domain name?
Yes, you can deploy your site if no domain and visit by http://Internet/mysite
How to bind a domain name to my application?
Using SFTP to modify the vhost.conf file,
What is the default character set?
UTF-8
What the default mysql password of root?
Using SFTP to connect to Instance,you can get the MySQL password from _/root/password.txt_
Is there a web-base GUI database management tools?
Yes, phpMyAdmin is on this Image, visit by http://Internet/phpmyadmin
Can I use this LAMP if I don’t understand the Linux command?
Yes, you can use GUI tool WinSCP to start LAMP, no commands
phpMyAdmin page access blank?
Please try another browser, such as chrome or firefox. If the phpMyAdmin can be opened normally before, and now appears to be incomplete or blank, it is recommended to clean up the browser cache, cookies and other information.
How to modify the website root directory?
You should know the root directory is_ /data/wwwroot/www.example.com _and was configured in the vhost.conf
file, just need to change the Directory,DocumentRoot parameter to you want
How to delete 9Panel?
If you don’t want to use 9Panel, please delete all files in 9Panel and keep an empty 9Panel folder
Do I need to change the owner(group) for the files which I upload by SFTP?
No, you don’t need to change them because LAMP Image have change it automaticly
How can I reset my php.ini to return to the initial?
Download the php.ini from Websoft9 LAMP project on Github, upload to Server and cover /ect/php.ini
_
How to change the permissions of filesytem?
When install new extension from back-end it will not successful,may be the permissions of file and folder is not appropriate,you should change it
chown -R apache.apache /data/wwwroot
find /data/wwwroot -type d -exec chmod 750 {} \;
find /data/wwwroot -type f -exec chmod 640 {} \;
How to set Rewrite rules for your application?
LAMP Image has installed Apache rewrite module, you just need to create a .htaccess
in your application root directory and configure your rewrite rules in it
How to disable Apache Test Page?
Using the # to disable all the content in the file: /etc/httpd/conf.d/welcome.conf, then restart service
How to bind a domain name for your application?
Modify the ServerName,ServerAlias configuration item of VirtualHost template in the file vhost.conf
Then, restart the httpd service