โปรแกรม JHCIS
เว็บโปรแกรม JHCIS https://drive.google.com/drive/folders/1zItObnjepy4OQSR-H5Iemv03yuBUxEBw
โปรแกรม SmartRefer
คำสั่ง update Smartrefer
docker-compose pull && docker-compose down && docker-compose up -d
อัพเดท ระบบ smartrefer จาก v5.1 ไป v5.2 ด้วยทำสั่งนี้ครับ
- cd smartrefer-cliend
- git add .
- git commit -m “update”
- git pull
- docker-compose down && docker-compose pull && docker-compose up -d
อัพเดท ระบบ smartrefer จาก v4.5 ไป v5.2 ด้วยทำสั่งนี้ครับ
- cd smartrefer-client
- docker-compose down
- cd ..
- remane smartrefer-client เป็น smartrefer-client_old
- git clone https://gitlab.com/smartrefer-ubonratchathani/docker-server/smartrefer-client.git
- cd smartrefer-client
- แก้ไข ไฟล์ config.api , config.emr , config.pharmacy การเชื่อมต่อ ฐาน his รพ.
- สั่ง docker system prune -a แล้วตอบ y
- docker-compose up แล้วลองเข้าระบบ เช่น http://192.168.1.2:8080/ , http://192.168.1.2:8080/smartemr/ ,http://192.168.1.2:8080/coc/
9.1 ถ้าสั่ง docker-compose up แล้ว ERROR: Network kong-network declared as external, but could not be found. Please create the network manually using docker network create kong-network and try again. **ให้สั่ง docker network create kong-network ใหม่ครับ - ระบบเข้าได้ปกติ ให้กดคีย์บอร์ด Ctrl + C
- docker-compose up -d
โปรแกรมดู LAB รพ.ศรีเมืองใหม่
LOS_SMM (909 downloads)โปรแกรม VPN
VPN (816 downloads)การติดตั้ง MySQL 5.6
cd C:\Program Files\jhcis\MySQL5.6\bin
mysqld –install MySQL56_JHCIS –defaults-file=”C:\Program Files\jhcis\MySQL5.6\my.ini”
net start MySQL56_JHCIS
mysql –P 3333 –uroot
use mysql;
UPDATE user SET password=PASSWORD(‘123456′) WHERE user=’root’;
GRANT ALL PRIVILEGES ON . TO ‘root’@’localhost’ WITH GRANT OPTION;
CREATE USER ‘root’@’%’ IDENTIFIED BY ‘123456’;
GRANT ALL PRIVILEGES ON . TO ‘root’@’%’ WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON . TO ‘root’@’%’ IDENTIFIED BY ‘123456’ WITH GRANT OPTION;
UPDATE mysql.user set password=PASSWORD(‘123456′) WHERE user=’localhost’;
FLUSH PRIVILEGES;