EExcel 丞燕快速查詢2

EExcel 丞燕快速查詢2
EExcel 丞燕快速查詢2 https://sandk.ffbizs.com/
顯示具有 Magento 標籤的文章。 顯示所有文章
顯示具有 Magento 標籤的文章。 顯示所有文章

[OK] install magento, mariadb use kitematic control docker on windows 10

1、First install kitematic

2、see video



PS:remeber if login failed, just clear cookie.  Then relogin two times.


==========
user docker shell

docker exec -ti  xxxxoooo  bash   //xxxxoooo is docker name

check hosts and use ping  can link success


==========
docker images

Import!! install magento, mariadb use kitematic control docker on windows 10

Can't use kitematic install mariadb, magento, because two container can't connect

get error msg: Failed to connect  to mariadb:3306 after 36 tries


How to do
https://github.com/bitnami/bitnami-docker-joomla/issues/2

1、download

https://raw.githubusercontent.com/bitnami/bitnami-docker-magento/master/docker-compose.yml

2、docker-compose up


then everyting is ok !

Can't Use!

magento install on xampp ubuntu

1、crate virtualbox vm, install ubuntu 16
This step have many tech, just find on google

ps:  start Virtual Box in background
make link, link content is

vboxheadless -startvm  "your vm's name"
check internet is ok~~

2、Use account that when you install ubuntu, create user account. Now example username is "Ubuntu".

Login Ubuntu use "Ubuntu" account.

see   https://www.apachefriends.org/download.html

choese 7.0.13 / PHP 7.0.13

wget https://www.apachefriends.org/xampp-files/7.0.13/xampp-linux-x64-7.0.13-1-installer.run

chmod +x xampp-linux-x64-7.0.13-1-installer.run
install
sudo ./xampp-linux-x64-7.0.13-1-installer.run
then Yes Yes Yes Yes

PS:so now have permit have three :  root 、 daemon、 ubuntu

/opt/lampp and /opt/lampp/*  some directory is root, some is ubuntu or daemon.


2-1、need phpmyadmin, so see this
http://sueboy.blogspot.tw/2016/01/xampp-phpmyadmin-httpd-xamppconf.html

put

<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
#Require local
Require all granted
Order deny,allow
Deny from all
Allow from ::1 127.0.0.0/8 192.168.0.0/8 xxx.ooo.xxx.ooo/24
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>
xxx.ooo.xxx.ooo/24  can remove, by yourself use.

then check  http://192.168.xxx.xxx/phpmyadmin is ok

PS:Usually I move /opt/lampp/htdocs  all files to allbackup directory that be create by myself.


3、install magento

download Magento-CE-2_1_3_tar_gz , just download from magento website, then upload ubuntu, copy file to /opt/lampp/htdocs

tar zxvf Magento-CE-2_1_3_tar_gz
PS: IF you upload use root, maybe use "sudo tar"

3-1、 check /opt/lampp/etc/httpd.conf

http://www.computernetworkingnotes.com/ubuntu-12-04-tips-and-tricks/how-to-fix-permission-of-htdocs-in-ubuntu.html

User
Group

usually  is "daemon"


3-2、Set ownership and permissions for the shared group

http://devdocs.magento.com/guides/v2.1/install-gde/prereq/file-system-perms.html

cd /opt/lampp/htdocs

find var vendor pub/static pub/media app/etc -type f -exec chmod g+w {} \;
find var vendor pub/static pub/media app/etc -type d -exec chmod g+ws {} \;
chown -R :daemon
chmod u+x bin/magento
PS: when you "sudo tar", maybe now this step need use "sudo"

4、now see http://192.168.xxx.xxx  , start install magento......