docker-compose // piwik // error during run Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Come Celebrate our 10 Year Anniversary!How to configure iptables when running DockerPiwik Docker compose error with linnking containersDocker Compose specify .docker directory?Docker Swarm Mode network and load balancing doesn't work for my second serviceDocker-compose up not runningDocker Error When Starting Docker-Compose ProjectUsing Docker Swarm to build an reverse proxy networkDocker Compose returns error “networks have overlapping IPv4”Prevent apache rewriting URLsDocker compose db not starting

Multi tool use
Multi tool use

Pointing to problems without suggesting solutions

A journey... into the MIND

When speaking, how do you change your mind mid-sentence?

How to get a single big right brace?

Trying to enter the Fox's den

Like totally amazing interchangeable sister outfit accessory swapping or whatever

Can this water damage be explained by lack of gutters and grading issues?

Unix AIX passing variable and arguments to expect and spawn

How to create a command for the "strange m" symbol in latex?

Converting a text document with special format to Pandas DataFrame

Compiling and throwing simple dynamic exceptions at runtime for JVM

“Since the train was delayed for more than an hour, passengers were given a full refund.” – Why is there no article before “passengers”?

Is there a verb for listening stealthily?

Putting Ant-Man on house arrest

What is the evidence that custom checks in Northern Ireland are going to result in violence?

Lights are flickering on and off after accidentally bumping into light switch

Is the Mordenkainen's Sword spell underpowered?

Can a Wizard take the Magic Initiate feat and select spells from the Wizard list?

Coin Game with infinite paradox

What's the difference between using dependency injection with a container and using a service locator?

lm and glm function in R

Recursive calls to a function - why is the address of the parameter passed to it lowering with each call?

Protagonist's race is hidden - should I reveal it?

Short story about an alien named Ushtu(?) coming from a future Earth, when ours was destroyed by a nuclear explosion



docker-compose // piwik // error during run



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Come Celebrate our 10 Year Anniversary!How to configure iptables when running DockerPiwik Docker compose error with linnking containersDocker Compose specify .docker directory?Docker Swarm Mode network and load balancing doesn't work for my second serviceDocker-compose up not runningDocker Error When Starting Docker-Compose ProjectUsing Docker Swarm to build an reverse proxy networkDocker Compose returns error “networks have overlapping IPv4”Prevent apache rewriting URLsDocker compose db not starting



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I try to switch all my app to docker.



The configuration:



I used nginx as server. With docker i will use it as proxy:



# nginx -v
nginx version: nginx/1.4.6 (Ubuntu)


Docker version:



# docker version
Client:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

Server:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

# docker-compose -version
docker-compose version 1.7.1, build 0a9ab35


The install:



To install piwik, i use the file suggest here:
indiehosters/piwik



But i made some change because i would like:
- i would like to use a custom db so i configure an additional user and a password.
- i would like to use different containers of mysql by app so i change db to piwik_db (i am not sure it's a good practice)
- i would like to get a phpmyadmin access but i don't understand to make it work with the point 2. So i remove the config part.



So my docker compose fil looks like this:



piwik_db:
image: mysql
volumes:
- ./mysql/runtime:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: P@ssR00t
MYSQL_DATABASE: analytics
MYSQL_USER: admin
MYSQL_PASSWORD: P@ssUser
app:
image: piwik
links:
- piwik_db:mysql
volumes:
- ./config:/var/www/html/config
- ./ssmtp.conf:/etc/ssmtp/ssmtp.conf
- ./revaliases:/etc/ssmtp/revaliases
web:
image: nginx
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./etc/letsencrypt:/etc/letsencrypt
links:
- app
volumes_from:
- app
ports:
- "8000:443"
cron:
image: piwik
links:
- piwik_db:mysql
volumes_from:
- app
entrypoint: |
bash -c 'bash -s <<EOF
trap "break;exit" SIGHUP SIGINT SIGTERM
while /bin/true; do
su -s "/bin/bash" -c "/usr/local/bin/php /var/www/html/console core:archive" www-data
sleep 3600
done
EOF'


The result:



When i run docker-compose up, it finish with an error:



ERROR: for web rpc error: code = 2 desc = "oci runtime error: could not synchronise with container process: not a directory"
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "compose/cli/main.py", line 63, in main
AttributeError: 'ProjectError' object has no attribute 'msg'
docker-compose returned -1


When i test which containers was installed, i get



# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
f0388c2a89d3 piwik "bash -c 'bash -s <<E" About a minute ago Up 59 seconds 9000/tcp htdocs_cron_1
ef5d6c8c6e74 mysql "docker-entrypoint.sh" About a minute ago Up About a minute 3306/tcp htdocs_piwik_db_1


Why i get the error?
How to achieve the install?
How to make the app always running?



Thank you in advance for any help.




Ps: I still use my nginx config in site-available:



server 
listen 80;
listen [::]:80;

server_name piwik.domain.com;
# Redirige le HTTP vers le HTTPS #
return 301 https://$server_name$request_uri;

server setup/libs)
deny all;
return 404;


# Pass the PHP scripts to FastCGI server
location ~* .php$
# Prevent Zero-day exploit
try_files $uri =404;
#
fastcgi_split_path_info ^(.+?.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name)
return 404;

fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;


# Redirect server error pages to the static page
error_page 403 /403.html;
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;

# Exclude from the logs to avoid bloating when it's not available
include drop.conf;











share|improve this question
























  • Just hit this too - the actual exception is a docker-compose bug really, it's excepting when trying to log the 'real' error that would help us. For me this has started happening without updating docker, and without updating the yaml or anything, which is really odd. Did you find a fix/workaround?

    – OJFord
    May 9 '16 at 12:10











  • Not until now. Maybe i will try without docker-compose to test.

    – jbo
    May 11 '16 at 6:03

















1















I try to switch all my app to docker.



The configuration:



I used nginx as server. With docker i will use it as proxy:



# nginx -v
nginx version: nginx/1.4.6 (Ubuntu)


Docker version:



# docker version
Client:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

Server:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

# docker-compose -version
docker-compose version 1.7.1, build 0a9ab35


The install:



To install piwik, i use the file suggest here:
indiehosters/piwik



But i made some change because i would like:
- i would like to use a custom db so i configure an additional user and a password.
- i would like to use different containers of mysql by app so i change db to piwik_db (i am not sure it's a good practice)
- i would like to get a phpmyadmin access but i don't understand to make it work with the point 2. So i remove the config part.



So my docker compose fil looks like this:



piwik_db:
image: mysql
volumes:
- ./mysql/runtime:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: P@ssR00t
MYSQL_DATABASE: analytics
MYSQL_USER: admin
MYSQL_PASSWORD: P@ssUser
app:
image: piwik
links:
- piwik_db:mysql
volumes:
- ./config:/var/www/html/config
- ./ssmtp.conf:/etc/ssmtp/ssmtp.conf
- ./revaliases:/etc/ssmtp/revaliases
web:
image: nginx
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./etc/letsencrypt:/etc/letsencrypt
links:
- app
volumes_from:
- app
ports:
- "8000:443"
cron:
image: piwik
links:
- piwik_db:mysql
volumes_from:
- app
entrypoint: |
bash -c 'bash -s <<EOF
trap "break;exit" SIGHUP SIGINT SIGTERM
while /bin/true; do
su -s "/bin/bash" -c "/usr/local/bin/php /var/www/html/console core:archive" www-data
sleep 3600
done
EOF'


The result:



When i run docker-compose up, it finish with an error:



ERROR: for web rpc error: code = 2 desc = "oci runtime error: could not synchronise with container process: not a directory"
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "compose/cli/main.py", line 63, in main
AttributeError: 'ProjectError' object has no attribute 'msg'
docker-compose returned -1


When i test which containers was installed, i get



# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
f0388c2a89d3 piwik "bash -c 'bash -s <<E" About a minute ago Up 59 seconds 9000/tcp htdocs_cron_1
ef5d6c8c6e74 mysql "docker-entrypoint.sh" About a minute ago Up About a minute 3306/tcp htdocs_piwik_db_1


Why i get the error?
How to achieve the install?
How to make the app always running?



Thank you in advance for any help.




Ps: I still use my nginx config in site-available:



server 
listen 80;
listen [::]:80;

server_name piwik.domain.com;
# Redirige le HTTP vers le HTTPS #
return 301 https://$server_name$request_uri;

server setup/libs)
deny all;
return 404;


# Pass the PHP scripts to FastCGI server
location ~* .php$
# Prevent Zero-day exploit
try_files $uri =404;
#
fastcgi_split_path_info ^(.+?.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name)
return 404;

fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;


# Redirect server error pages to the static page
error_page 403 /403.html;
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;

# Exclude from the logs to avoid bloating when it's not available
include drop.conf;











share|improve this question
























  • Just hit this too - the actual exception is a docker-compose bug really, it's excepting when trying to log the 'real' error that would help us. For me this has started happening without updating docker, and without updating the yaml or anything, which is really odd. Did you find a fix/workaround?

    – OJFord
    May 9 '16 at 12:10











  • Not until now. Maybe i will try without docker-compose to test.

    – jbo
    May 11 '16 at 6:03













1












1








1


1






I try to switch all my app to docker.



The configuration:



I used nginx as server. With docker i will use it as proxy:



# nginx -v
nginx version: nginx/1.4.6 (Ubuntu)


Docker version:



# docker version
Client:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

Server:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

# docker-compose -version
docker-compose version 1.7.1, build 0a9ab35


The install:



To install piwik, i use the file suggest here:
indiehosters/piwik



But i made some change because i would like:
- i would like to use a custom db so i configure an additional user and a password.
- i would like to use different containers of mysql by app so i change db to piwik_db (i am not sure it's a good practice)
- i would like to get a phpmyadmin access but i don't understand to make it work with the point 2. So i remove the config part.



So my docker compose fil looks like this:



piwik_db:
image: mysql
volumes:
- ./mysql/runtime:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: P@ssR00t
MYSQL_DATABASE: analytics
MYSQL_USER: admin
MYSQL_PASSWORD: P@ssUser
app:
image: piwik
links:
- piwik_db:mysql
volumes:
- ./config:/var/www/html/config
- ./ssmtp.conf:/etc/ssmtp/ssmtp.conf
- ./revaliases:/etc/ssmtp/revaliases
web:
image: nginx
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./etc/letsencrypt:/etc/letsencrypt
links:
- app
volumes_from:
- app
ports:
- "8000:443"
cron:
image: piwik
links:
- piwik_db:mysql
volumes_from:
- app
entrypoint: |
bash -c 'bash -s <<EOF
trap "break;exit" SIGHUP SIGINT SIGTERM
while /bin/true; do
su -s "/bin/bash" -c "/usr/local/bin/php /var/www/html/console core:archive" www-data
sleep 3600
done
EOF'


The result:



When i run docker-compose up, it finish with an error:



ERROR: for web rpc error: code = 2 desc = "oci runtime error: could not synchronise with container process: not a directory"
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "compose/cli/main.py", line 63, in main
AttributeError: 'ProjectError' object has no attribute 'msg'
docker-compose returned -1


When i test which containers was installed, i get



# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
f0388c2a89d3 piwik "bash -c 'bash -s <<E" About a minute ago Up 59 seconds 9000/tcp htdocs_cron_1
ef5d6c8c6e74 mysql "docker-entrypoint.sh" About a minute ago Up About a minute 3306/tcp htdocs_piwik_db_1


Why i get the error?
How to achieve the install?
How to make the app always running?



Thank you in advance for any help.




Ps: I still use my nginx config in site-available:



server 
listen 80;
listen [::]:80;

server_name piwik.domain.com;
# Redirige le HTTP vers le HTTPS #
return 301 https://$server_name$request_uri;

server setup/libs)
deny all;
return 404;


# Pass the PHP scripts to FastCGI server
location ~* .php$
# Prevent Zero-day exploit
try_files $uri =404;
#
fastcgi_split_path_info ^(.+?.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name)
return 404;

fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;


# Redirect server error pages to the static page
error_page 403 /403.html;
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;

# Exclude from the logs to avoid bloating when it's not available
include drop.conf;











share|improve this question
















I try to switch all my app to docker.



The configuration:



I used nginx as server. With docker i will use it as proxy:



# nginx -v
nginx version: nginx/1.4.6 (Ubuntu)


Docker version:



# docker version
Client:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

Server:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

# docker-compose -version
docker-compose version 1.7.1, build 0a9ab35


The install:



To install piwik, i use the file suggest here:
indiehosters/piwik



But i made some change because i would like:
- i would like to use a custom db so i configure an additional user and a password.
- i would like to use different containers of mysql by app so i change db to piwik_db (i am not sure it's a good practice)
- i would like to get a phpmyadmin access but i don't understand to make it work with the point 2. So i remove the config part.



So my docker compose fil looks like this:



piwik_db:
image: mysql
volumes:
- ./mysql/runtime:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: P@ssR00t
MYSQL_DATABASE: analytics
MYSQL_USER: admin
MYSQL_PASSWORD: P@ssUser
app:
image: piwik
links:
- piwik_db:mysql
volumes:
- ./config:/var/www/html/config
- ./ssmtp.conf:/etc/ssmtp/ssmtp.conf
- ./revaliases:/etc/ssmtp/revaliases
web:
image: nginx
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./etc/letsencrypt:/etc/letsencrypt
links:
- app
volumes_from:
- app
ports:
- "8000:443"
cron:
image: piwik
links:
- piwik_db:mysql
volumes_from:
- app
entrypoint: |
bash -c 'bash -s <<EOF
trap "break;exit" SIGHUP SIGINT SIGTERM
while /bin/true; do
su -s "/bin/bash" -c "/usr/local/bin/php /var/www/html/console core:archive" www-data
sleep 3600
done
EOF'


The result:



When i run docker-compose up, it finish with an error:



ERROR: for web rpc error: code = 2 desc = "oci runtime error: could not synchronise with container process: not a directory"
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "compose/cli/main.py", line 63, in main
AttributeError: 'ProjectError' object has no attribute 'msg'
docker-compose returned -1


When i test which containers was installed, i get



# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
f0388c2a89d3 piwik "bash -c 'bash -s <<E" About a minute ago Up 59 seconds 9000/tcp htdocs_cron_1
ef5d6c8c6e74 mysql "docker-entrypoint.sh" About a minute ago Up About a minute 3306/tcp htdocs_piwik_db_1


Why i get the error?
How to achieve the install?
How to make the app always running?



Thank you in advance for any help.




Ps: I still use my nginx config in site-available:



server 
listen 80;
listen [::]:80;

server_name piwik.domain.com;
# Redirige le HTTP vers le HTTPS #
return 301 https://$server_name$request_uri;

server setup/libs)
deny all;
return 404;


# Pass the PHP scripts to FastCGI server
location ~* .php$
# Prevent Zero-day exploit
try_files $uri =404;
#
fastcgi_split_path_info ^(.+?.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name)
return 404;

fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;


# Redirect server error pages to the static page
error_page 403 /403.html;
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;

# Exclude from the logs to avoid bloating when it's not available
include drop.conf;








docker piwik docker-compose






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 7 '16 at 13:58









PersianGulf

524620




524620










asked May 7 '16 at 9:25









jbojbo

164




164












  • Just hit this too - the actual exception is a docker-compose bug really, it's excepting when trying to log the 'real' error that would help us. For me this has started happening without updating docker, and without updating the yaml or anything, which is really odd. Did you find a fix/workaround?

    – OJFord
    May 9 '16 at 12:10











  • Not until now. Maybe i will try without docker-compose to test.

    – jbo
    May 11 '16 at 6:03

















  • Just hit this too - the actual exception is a docker-compose bug really, it's excepting when trying to log the 'real' error that would help us. For me this has started happening without updating docker, and without updating the yaml or anything, which is really odd. Did you find a fix/workaround?

    – OJFord
    May 9 '16 at 12:10











  • Not until now. Maybe i will try without docker-compose to test.

    – jbo
    May 11 '16 at 6:03
















Just hit this too - the actual exception is a docker-compose bug really, it's excepting when trying to log the 'real' error that would help us. For me this has started happening without updating docker, and without updating the yaml or anything, which is really odd. Did you find a fix/workaround?

– OJFord
May 9 '16 at 12:10





Just hit this too - the actual exception is a docker-compose bug really, it's excepting when trying to log the 'real' error that would help us. For me this has started happening without updating docker, and without updating the yaml or anything, which is really odd. Did you find a fix/workaround?

– OJFord
May 9 '16 at 12:10













Not until now. Maybe i will try without docker-compose to test.

– jbo
May 11 '16 at 6:03





Not until now. Maybe i will try without docker-compose to test.

– jbo
May 11 '16 at 6:03










1 Answer
1






active

oldest

votes


















0














In my case the problem was because in compose file it was trying to mount files and not folders, changing it solved the issue






share|improve this answer























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "2"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f775387%2fdocker-compose-piwik-error-during-run%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    In my case the problem was because in compose file it was trying to mount files and not folders, changing it solved the issue






    share|improve this answer



























      0














      In my case the problem was because in compose file it was trying to mount files and not folders, changing it solved the issue






      share|improve this answer

























        0












        0








        0







        In my case the problem was because in compose file it was trying to mount files and not folders, changing it solved the issue






        share|improve this answer













        In my case the problem was because in compose file it was trying to mount files and not folders, changing it solved the issue







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jul 1 '16 at 14:09









        KatamoniaKatamonia

        1




        1



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Server Fault!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f775387%2fdocker-compose-piwik-error-during-run%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            1xrVd1uOaKk2tchhU,P S tFHbD8dNf8Gaz7xE 8KC9
            Eg89jrJgRKB vexINx5HP3dyNb,3XAOIffliEc7Q,f5q JUm

            Popular posts from this blog

            RemoteApp sporadic failureWindows 2008 RemoteAPP client disconnects within a matter of minutesWhat is the minimum version of RDP supported by Server 2012 RDS?How to configure a Remoteapp server to increase stabilityMicrosoft RemoteApp Active SessionRDWeb TS connection broken for some users post RemoteApp certificate changeRemote Desktop Licensing, RemoteAPPRDS 2012 R2 some users are not able to logon after changed date and time on Connection BrokersWhat happens during Remote Desktop logon, and is there any logging?After installing RDS on WinServer 2016 I still can only connect with two users?RD Connection via RDGW to Session host is not connecting

            Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

            Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020