我确实有 Ubuntu,但想知道我是否可以在 Linux 上运行 MS Access?我真的很需要它来上大学。我确实有 Windows 10,但我更喜欢使用 Linux。
它适用于葡萄酒吗?
我确实有 Ubuntu,但想知道我是否可以在 Linux 上运行 MS Access?我真的很需要它来上大学。我确实有 Windows 10,但我更喜欢使用 Linux。
它适用于葡萄酒吗?
在我的 MYSQL 配置文件中,当我将端口 3060(原始)替换为 995 时,这不起作用,当我 时service mysql restart
,我有:
Job for mysql.service failed because the control process exited with error code. See "systemctl status mysql.service" and "journalctl -xe" for details.
但是,例如,当我将 3060 替换为 5671 时,该工作正常,没有错误,并且我与端口 5671 的远程连接工作正常!
所以通过搜索,我发现我们不能把一个端口 < 1024...但是我必须把一个劣质的,我们怎么处理?
我有如下所示的表格
然后我尝试格式化该字段。
为什么没有更改名称的选项?可以更改字段名称吗?
我正在尝试在名为 postgresql pgadmin4 v4.28 的本地服务器上上传数据库文件并面临请求超时问题如何解决这个问题?我还增加了最大上传文件限制,并在 postgresql 中进行了更改,但不能。操作系统名称:ubuntu 20.04 屏幕截图链接如下
显然清除和/或重新安装mysql
并mariadb
可能导致冲突,因此尝试:
root@mordor:~#
root@mordor:~# sudo apt purge mariadb-server mariadb-client mysql-client mysql-server
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package 'mysql-client' is not installed, so not removed
Package 'mysql-server' is not installed, so not removed
The following packages will be REMOVED:
mariadb-client* mariadb-server*
0 upgraded, 0 newly installed, 2 to remove and 1 not upgraded.
After this operation, 20.5 kB disk space will be freed.
Do you want to continue? [Y/n] y
(Reading database ... 181581 files and directories currently installed.)
Removing mariadb-client (1:10.4.17+maria~focal) ...
Removing mariadb-server (1:10.4.17+maria~focal) ...
root@mordor:~#
root@mordor:~#
root@mordor:~# rm -rf /var/lib/mysql
root@mordor:~#
root@mordor:~# sudo apt install mariadb-client mariadb-server
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
mariadb-client mariadb-server
0 upgraded, 2 newly installed, 0 to remove and 1 not upgraded.
Need to get 0 B/6252 B of archives.
After this operation, 20.5 kB of additional disk space will be used.
Selecting previously unselected package mariadb-client.
(Reading database ... 181576 files and directories currently installed.)
Preparing to unpack .../mariadb-client_1%3a10.4.17+maria~focal_all.deb ...
Unpacking mariadb-client (1:10.4.17+maria~focal) ...
Selecting previously unselected package mariadb-server.
Preparing to unpack .../mariadb-server_1%3a10.4.17+maria~focal_all.deb ...
Unpacking mariadb-server (1:10.4.17+maria~focal) ...
Setting up mariadb-client (1:10.4.17+maria~focal) ...
Setting up mariadb-server (1:10.4.17+maria~focal) ...
root@mordor:~#
root@mordor:~# mariadb
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
root@mordor:~#
root@mordor:~# systemctl status mariadb.service
● mariadb.service - MariaDB 10.4.17 database server
Loaded: loaded (/lib/systemd/system/mariadb.service; enabled; vendor preset: enabled)
Drop-In: /etc/systemd/system/mariadb.service.d
└─migrated-from-my.cnf-settings.conf
Active: failed (Result: exit-code) since Sat 2020-11-14 10:43:31 PST; 1h 23min ago
Docs: man:mysqld(8)
https://mariadb.com/kb/en/library/systemd/
Main PID: 90075 (code=exited, status=1/FAILURE)
Status: "MariaDB server is down"
Nov 14 10:43:29 mordor systemd[1]: Starting MariaDB 10.4.17 database server...
Nov 14 10:43:29 mordor mysqld[90075]: 2020-11-14 10:43:29 0 [Note] /usr/sbin/mysqld (mysqld 10.4.17-MariaDB-1:10.4.17+maria~focal-l>
Nov 14 10:43:29 mordor mysqld[90075]: 2020-11-14 10:43:29 0 [Warning] Could not increase number of max_open_files to more than 1638>
Nov 14 10:43:29 mordor mysqld[90075]: 2020-11-14 10:43:29 0 [Warning] Changed limits: max_open_files: 16384 max_connections: 500 (>
Nov 14 10:43:31 mordor systemd[1]: mariadb.service: Main process exited, code=exited, status=1/FAILURE
Nov 14 10:43:31 mordor systemd[1]: mariadb.service: Failed with result 'exit-code'.
Nov 14 10:43:31 mordor systemd[1]: Failed to start MariaDB 10.4.17 database server.
root@mordor:~#
我该如何开始mariadb
?我可以再次清除它,但这只是一个循环。
我了解如何使用 grep;但是,我无法理解在我的命令中使用“>”的功能?
我想在数据库中存储和查询大量(可能数百万行)的股市数据。我将成为唯一的用户。它在我的台式机上。上一次我在数据库上做大量工作是在 90 年代中期,使用 MS Access。我尝试过使用 Libre Office Base,但发现它很麻烦,即必须先使用电子表格导入 csv 文件,然后将其复制并粘贴到表格中。
我查看了几个不同的数据库,如 MySQL、Maria、PostGres 等。它们似乎都被设计为“数据库服务器”,这对我来说意味着面向 Web、可访问 Web、多用户应用程序,这与我的情况正好相反,单个用户。带有 Dbeaver 的 Maria DB 似乎可以满足我的需求。
我对这些数据库的服务器连接感到困惑。我需要以某种方式设置服务器吗?如果是的话,这样做会造成严重破坏并在我当前的简单桌面设置(Ubuntu 20.04)中导致无法预料的复杂情况吗?这些数据库是否存在非服务器模式之类的东西?
我无法emma
为 Ubuntu 20.4 安装数据库 GUI。
$ sudo apt update
$ sudo apt install emma
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package emma
我的 Linux 是一个安装了 ubuntu 桌面的 ubuntu 服务器
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 20.04.1 LTS
Release: 20.04
Codename: focal
上个月使用sudo apt install mongodb-org
我找到的软件包将 mongoDB 下载到我的 Ubuntu 20.04 上,安装它并且 mongodb 工作正常。但是我删除了它,当我尝试重新安装它时,相同的命令输出“无法找到文件 mongodb-org”。
sudo apt install mongodb
有效,但sudo systemctl start mongod.service
输出“无法启动 mongod.service:未找到单元 mongod.service”。我该如何解决这个问题?我曾经将我的 ubuntu 软件设置为从主服务器下载,但它最初是从我当地的本国服务器下载的,我将设置改回。这可能是一个问题吗?