[研究] Visual Studio 2017 v15.8.1 Enterprise 離線安裝檔案下載參數和大小
2018-08-26
建立 Visual Studio 2017 的網路安裝
https://docs.microsoft.com/zh-tw/visualstudio/install/create-a-network-installation-of-visual-studio
Visual Studio Enterprise 2017 元件目錄
https://docs.microsoft.com/zh-tw/visualstudio/install/workload-component-id-vs-enterprise
https://docs.microsoft.com/zh-tw/visualstudio/install/workload-component-id-vs-community
Visual Studio 核心編輯器 (隨附於 Visual Studio Enterprise 2017)
識別碼: Microsoft.VisualStudio.Component.CoreEditor
ASP.NET 與網頁程式開發
識別碼: Microsoft.VisualStudio.Workload.NetWeb
資料儲存體和流程
識別碼: Microsoft.VisualStudio.Workload.Data
(下圖) vs_enterprise__1405852158.1533506086.exe --layout G:\VS2017v15.8.1 --lang en-US --lang zh-TW 下載得到
(下圖) vs_enterprise__1405852158.1533506086.exe --layout G:\VS2017v15.8.1 --add Microsoft.VisualStudio.Component.CoreEditor --lang zh-TW
(下圖) vs_enterprise__1405852158.1533506086.exe --layout G:\VS2017v15.8.1 --add Microsoft.VisualStudio.Component.CoreEditor --lang en-US
(下圖) vs_enterprise__1405852158.1533506086.exe --layout G:\VS2017v15.8.1 --lang zh-TW --add Microsoft.VisualStudio.Component.CoreEditor --includeRecommended
(下圖) 根據圖形安裝介面,基本安裝是 632 MB,不是上面的 342 MB 或 333 MB
(下圖) 原本以為 vs_enterprise__1405852158.1533506086.exe --layout G:\VS2017v15.8.1 --lang zh-TW --add Microsoft.VisualStudio.Component.CoreEditor --includeRecommended 會下載到 8.85 GB,結果只有 342 MB,也就是工作負載所包含的檔案似乎不包含在內。
(完)
相關
[研究] Visual Studio 2017 v15.4.3 離線安裝檔案下載 (Windows 7 x64)
http://shaurong.blogspot.com/2017/11/visual-studio-2017-v1543-windows-7-x64.html
2018年8月26日 星期日
2018年8月25日 星期六
[研究] WordPress 4.9 部落格伺服器架設 (CentOS 7.5 x64)(繁體中文版)
[研究] WordPress 4.9 部落格伺服器架設 (CentOS 7.5 x64)(繁體中文版)
2018-08-25
WordPress 台灣正體中文網站
http://tw.wordpress.org/
安裝參考
http://tw.wordpress.org/txt-install/
下載
https://tw.wordpress.org/wordpress-4.9-zh_TW.tar.gz
# 建立 WordPress 系統使用的資料庫,稱為 wordpressdb,連線帳號 wordpresser,密碼 123456
(可以依自己喜好修改)
安裝
# 立刻關閉 SELinux
/usr/sbin/setenforce 0
# 設定 reboot 後也關閉 SELinux
sed -i -e "s@SELINUX=enforcing@#SELINUX=enforcing@" /etc/selinux/config
sed -i -e "s@SELINUX=permissive@#SELINUX=permissive@" /etc/selinux/config
sed -i -e "/SELINUX=/aSELINUX=disabled" /etc/selinux/config
yum -y install php php-mysql mysql httpd mariadb-server
#chkconfig httpd on
#service httpd restart
systemctl enable httpd
systemctl start httpd
systemctl status httpd
#chkconfig mysqld on
#service mysqld restart
systemctl enable mariadb
systemctl start mariadb
systemctl status mariadb
# 替 MySQL 的 root 帳號設定密碼
/usr/bin/mysql_secure_installation
[root@localhost ~]# /usr/bin/mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none): 按下Enter
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.
Set root password? [Y/n]
New password: 設定密碼
Re-enter new password: 設定密碼
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] 按下Enter
... Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] 按下Enter
... Success!
By default, MariaDB comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] 按下Enter
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] 按下Enter
... Success!
Cleaning up...
All done! If you've completed all of the above steps, your MariaDB
installation should now be secure.
Thanks for using MariaDB!
[root@localhost ~]#
# 建立 WordPress 系統使用的資料庫,稱為 wordpressdb,連線帳號 wordpresser,密碼 123456
(可以依自己喜好修改)
[root@localhost ~]# mysql -u root -p
Enter password: 輸入密碼
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 12
Server version: 5.5.60-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> create database wordpressdb;
Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]> grant all privileges on wordpressdb.* to wordpresser@localhost identified by '123456';
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> exit
Bye
[root@localhost ~]#
# 假設 MySQL root 的密碼為 ABCDE
mysqladmin --user=root -pABCDE create wordpressdb
# 建立使用者 galerauser,密碼 123456,給 Cluster 使用
mysql -e "GRANT ALL PRIVILEGES ON *.* TO wordpresser@localhost IDENTIFIED BY '123456' ; " -pABCDE
#mysql -e "GRANT ALL PRIVILEGES ON *.* TO wordpresser@% IDENTIFIED BY '123456' ; " -pABCDE
mysql -e " flush privileges; " -pABCDE
mysql -uroot -pABCDE -e "show databases;"
#mysql -e "GRANT ALL PRIVILEGES ON wordpressdb.* TO wordpresser@localhost IDENTIFIED BY 'wordpresser' ; "
#mysql -e " flush privileges; "
#mysql -e "use mysql; select * from user where User='wordpresser'; "
**************************************************
繼續安裝
cd /usr/local/src
wget https://tw.wordpress.org/wordpress-4.9-zh_TW.tar.gz
tar xzvf wordpress-4.9-zh_TW.tar.gz -C /var/www/html
# 為了寫入 wp-config.php
chmod -R a+w /var/www/html/wordpress
#touch /var/www/html/wordpress/wp-config.php
#chmod a+w /var/www/html/wordpress/wp-config.php
# 啟動瀏覽器,連上網站
firefox http://localhost/wordpress
(完)
相關
[研究] WordPress 4.9 部落格伺服器架設 (CentOS 7.5 x64)(繁體中文版)
[研究] WordPress 4.6.1 部落格伺服器架設 (CentOS 7.2 x64)(繁體中文版)
http://shaurong.blogspot.com/2016/09/wordpress-461-centos-72-x64.html
[研究] WordPress 4.2.2 部落格伺服器架設 (CentOS 7.1 x64)(繁體中文版)(失敗)
http://shaurong.blogspot.com/2015/06/wordpress-422-centos-71-x64.html
[研究] WordPress 4.2.2 部落格伺服器架設 (CentOS 6.6 x64)(繁體中文版)
http://shaurong.blogspot.com/2015/06/wordpress-422-centos-66-x64.html
[研究] WordPress 3.8.1 部落格伺服器架設 (CentOS 6.5 x64)(繁體中文版)
http://shaurong.blogspot.com/2014/01/wordpress-381-centos-65-x64.html
[研究] WordPress 3.7 部落格伺服器架設 (CentOS 6.4 x64)(繁體中文版)
http://shaurong.blogspot.tw/2013/10/wordpress-27-centos-64-x64.html
2018-08-25
WordPress 台灣正體中文網站
http://tw.wordpress.org/
安裝參考
http://tw.wordpress.org/txt-install/
下載
https://tw.wordpress.org/wordpress-4.9-zh_TW.tar.gz
# 建立 WordPress 系統使用的資料庫,稱為 wordpressdb,連線帳號 wordpresser,密碼 123456
(可以依自己喜好修改)
安裝
# 立刻關閉 SELinux
/usr/sbin/setenforce 0
# 設定 reboot 後也關閉 SELinux
sed -i -e "s@SELINUX=enforcing@#SELINUX=enforcing@" /etc/selinux/config
sed -i -e "s@SELINUX=permissive@#SELINUX=permissive@" /etc/selinux/config
sed -i -e "/SELINUX=/aSELINUX=disabled" /etc/selinux/config
yum -y install php php-mysql mysql httpd mariadb-server
#chkconfig httpd on
#service httpd restart
systemctl enable httpd
systemctl start httpd
systemctl status httpd
#chkconfig mysqld on
#service mysqld restart
systemctl enable mariadb
systemctl start mariadb
systemctl status mariadb
# 替 MySQL 的 root 帳號設定密碼
/usr/bin/mysql_secure_installation
[root@localhost ~]# /usr/bin/mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none): 按下Enter
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.
Set root password? [Y/n]
New password: 設定密碼
Re-enter new password: 設定密碼
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] 按下Enter
... Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] 按下Enter
... Success!
By default, MariaDB comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] 按下Enter
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] 按下Enter
... Success!
Cleaning up...
All done! If you've completed all of the above steps, your MariaDB
installation should now be secure.
Thanks for using MariaDB!
[root@localhost ~]#
(可以依自己喜好修改)
[root@localhost ~]# mysql -u root -p
Enter password: 輸入密碼
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 12
Server version: 5.5.60-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> create database wordpressdb;
Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]> grant all privileges on wordpressdb.* to wordpresser@localhost identified by '123456';
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> exit
Bye
[root@localhost ~]#
**************************************************
也可以直接下命令# 假設 MySQL root 的密碼為 ABCDE
mysqladmin --user=root -pABCDE create wordpressdb
# 建立使用者 galerauser,密碼 123456,給 Cluster 使用
mysql -e "GRANT ALL PRIVILEGES ON *.* TO wordpresser@localhost IDENTIFIED BY '123456' ; " -pABCDE
#mysql -e "GRANT ALL PRIVILEGES ON *.* TO wordpresser@% IDENTIFIED BY '123456' ; " -pABCDE
mysql -e " flush privileges; " -pABCDE
mysql -uroot -pABCDE -e "show databases;"
#mysql -e -uroot -pABCDE "use wordpressdb; show databases; "
#mysql -e "use wordpressdb; show tables; "#mysql -e "GRANT ALL PRIVILEGES ON wordpressdb.* TO wordpresser@localhost IDENTIFIED BY 'wordpresser' ; "
#mysql -e " flush privileges; "
#mysql -e "use mysql; select * from user where User='wordpresser'; "
**************************************************
繼續安裝
wget https://tw.wordpress.org/wordpress-4.9-zh_TW.tar.gz
tar xzvf wordpress-4.9-zh_TW.tar.gz -C /var/www/html
# 為了寫入 wp-config.php
chmod -R a+w /var/www/html/wordpress
#touch /var/www/html/wordpress/wp-config.php
#chmod a+w /var/www/html/wordpress/wp-config.php
# 啟動瀏覽器,連上網站
firefox http://localhost/wordpress
(完)
相關
[研究] WordPress 4.9 部落格伺服器架設 (CentOS 7.5 x64)(繁體中文版)
[研究] WordPress 4.6.1 部落格伺服器架設 (CentOS 7.2 x64)(繁體中文版)
http://shaurong.blogspot.com/2016/09/wordpress-461-centos-72-x64.html
[研究] WordPress 4.2.2 部落格伺服器架設 (CentOS 7.1 x64)(繁體中文版)(失敗)
http://shaurong.blogspot.com/2015/06/wordpress-422-centos-71-x64.html
[研究] WordPress 4.2.2 部落格伺服器架設 (CentOS 6.6 x64)(繁體中文版)
http://shaurong.blogspot.com/2015/06/wordpress-422-centos-66-x64.html
[研究] WordPress 3.8.1 部落格伺服器架設 (CentOS 6.5 x64)(繁體中文版)
http://shaurong.blogspot.com/2014/01/wordpress-381-centos-65-x64.html
[研究] WordPress 3.7 部落格伺服器架設 (CentOS 6.4 x64)(繁體中文版)
http://shaurong.blogspot.tw/2013/10/wordpress-27-centos-64-x64.html
[研究] Oracle Database 18c Release 3 Client (18.3.0.0.0) 下載、安裝 (Win2016)
[研究] Oracle Database 18c Release 3 Client (18.3.0.0.0) 下載、安裝 (Win2016)
2018-08-25
下載、安裝沒有難度,此篇只是做個紀錄。
官方網站
https://www.oracle.com/
Click 圖片可以看 100% 原始圖片
ODP.NET 相關部分
(完)
2018-08-25
下載、安裝沒有難度,此篇只是做個紀錄。
官方網站
https://www.oracle.com/
Click 圖片可以看 100% 原始圖片
(下圖) 舊版情況
ODP.NET 相關部分
D:. └─app └─client └─Administrator └─product └─18.0.0 └─client_1 ├─ASP.NET │ └──bin │ ├─2.x │ │ Oracle.Web.dll │ │ OraProvCfg.exe │ └─4 │ Oracle.Web.dll │ OraProvCfg.exe ├─network │ └─admin │ │ sqlnet.ora │ └─sample │ sqlnet.ora │ tnsnames.ora ├─ODP.NET │ ├─bin │ │ ├─2.x │ │ │ Oracle.DataAccess.dll │ │ │ OraProvCfg.exe │ │ └─4 │ │ │ Oracle.DataAccess.dll │ │ │ OraProvCfg.exe │ │ └─EF6 │ │ Oracle.DataAccess.EntityFramework.dll │ ├─managed │ │ ├─common │ │ │ │ Oracle.ManagedDataAccess.dll │ │ │ └─EF6 │ │ │ Oracle.ManagedDataAccess.EntityFramework.dll │ │ ├─x64 │ │ │ configure.bat │ │ │ Oracle.ManagedDataAccessDTC.dll │ │ │ Oracle.ManagedDataAccessIOP.dll │ │ │ OraProvCfg.exe │ │ │ unconfigure.bat │ │ └─x86 │ │ configure.bat │ │ Oracle.ManagedDataAccessDTC.dll │ │ Oracle.ManagedDataAccessIOP.dll │ │ OraProvCfg.exe │ │ unconfigure.bat |
(完)
2018年8月24日 星期五
訂閱:
文章 (Atom)